Keep a checkbox checked on large product view with grouping

hi I have this problem with my checked checkbox on my large product view. I've used JS and all is working fine but when I group products and I select anything in the drop down other than the default the product view breaks and the checkbox becomes unchecked.
here is the site iv'e currently been working on for a long time!!
Beyonce - Midnight Blue
any help would be greatly appreciated
thanks luke

Hi Dave,
The catalogue page is actually the Overall Layout inside Online Shop layouts. When you access the catalogue directly that's the layotu that get's rendered. That layout has {tag_cataloguelist...} and {tag_productlist...} which render sub-catalogues and products within that catalogue respectively.
As for 2, I had a look at the site and it's behaving normally. Let me know if you need a detailed explanation of what it happening there.
Cheers,
-mario

Similar Messages

  • Center Large product view?

    I got a problem with my "large product view"
    1: the product thumbnail is placed to the left, I would like it to be centered.
    2: the thumbnail is kind of small, how do I make it larger?
    where in the CSS do I change those things?

    Ops,, forgot to post the link
    Breitlings Navitimer
    I managed to get this particular product larger but still it does not look right, I want it to be 100% hight from the bottom of the page to the gray area.
    Is it possible to force the product images to be a specific size (if it's to small, it stretches or to bid it shrinks)?
    I also notised a separate problem in the meny bar,, in "MÄRKEN" the dropdown meny shows up on the side to the right instead of underneath "MÄRKEN"
    Thankful for help

  • Hiding Sub-Catalogs on Large Product View

    Hi BC Community,
    Wondering if anyone has any tips or tricks for hiding (or removing) the Sub-Catalog list from the Large Product.html page (e-commerce).  When looking at a detail view of a product, and that particular catalog has say 20 sub-catalogs, the detail view of the individual product is at the bottom of the sub-catalog list (which it should be), but it sucks that you have to scroll to the bottom of the page just to see the individual product.
    Any way around this?
    Thanks,
    Aaron

    Hey Aaron,
    You will have to look for an identifier element from the large product layout. If that exists on the page then with javascript you can manipulate the html to as you need with that and some css.

  • Keeping the checkbox , checked, even when page refreshes.

    Hi,
    How do I get the value of thea checkbox, and what is the value of a checkbox?
    One thing when my BSP page refreshes, the 'tick' in the checkbox, vanishes, and the application pops up a message, that a particular category has not been checked.
    and how do I make my checkboxes  stateful, i.e it doesn't lose their 'tick' even when the page refreshes.
    Regards,
    Gautam

    Hi,
    What do you mean by refreshing? Using the reload button of the browser or submitting the form and showing the form again? If it's the latter, you only need to check the value of the field of your checkbox and add <b>checked</b> in the <input...> tag.
    Eddy
    <a href="/people/eddy.declercq/blog/2007/02/28/pimp-up-the-jam-choose-your-favourite for your favourite pimped out S(D)N site!

  • Problem with creating view with group by

    I created a veiw like this
    CREATE OR REPLACE FORCE VIEW "Emp" ("team", "Num") AS
    select team, count(*) AS Num
    from employee
    group by team
    The data in the view like this:
    team Num
    1 29
    2 10
    5 1
    I have team 1, 2, 3, 4, 5 in table employee. I wanta the view to have data like this;
    team Num
    1 29
    2 10
    3 0
    4 0
    5 1
    is there some way to achieve this?
    Thanks for your help.

    SQL> select * from emp;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7566 JONES      MANAGER         7839 02-APR-81       2975       1000         20
          7902 FORD       ANALYST         7566 03-DEC-81       3000                    20
          7839 KING       PRESIDENT            17-NOV-81       5000                    10
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-81       2450                    10
          7369 SMITH      CLERK           7902 17-DEC-80        800                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300         30
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
          7788 SCOTT      ANALYST         7566 09-DEC-82       3000                    20
          7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30
          7876 ADAMS      CLERK           7788 12-JAN-83       1100                    20
          7900 JAMES      CLERK           7698 03-DEC-81        950                    30
          7934 MILLER     CLERK           7782 23-JAN-82       1300                    10
    14 rows selected.
    SQL> select deptno, count(*)
      2    from emp
      3  group by deptno;
        DEPTNO   COUNT(*)
            10          3
            20          5
            30          6
    SQL> can you post the result of this query:
      select distinct team from employee;note: just want to check what team values do you have from your table employee

  • Create Materialized View with GROUP BY

    I have a table
    treecluster NUMBER(3)
    treenumber NUMBER(3)
    treedate DATE
    nestnumber NUMBER(3)
    eggs NUMBER(3)
    nestlings NUMBER(3)
    fledglings NUMBER(3)
    nestfate VARCHAR2(10)
    nestfailurecode NUMBER(2)
    I want to group the data by treecluster, treenumber, year, and nest number and get a max eggs, nestlings, fledglings. I am doing this with the following:
    SELECT treecluster, treenumber, to_char(nestchecksdate, 'YYYY'), nestnumber,
    max(eggs), max(nestlings), max(fledglings)
    FROM nestchecks
    GROUP BY treecluster, treenumber, to_char(nestchecksdate, 'YYYY'), nestnumber;
    This works fine.
    The last record for a year has a nestfate and nestfailurecode value.
    I need to group all information and then also get the nestfate and nestfailurecode for the year. How do I go about getting this information?
    I am really trying to create a summary materialized view based on a data table so the select I am trying to craft would be a part of a create materialized view as SELECT...
    so I want to be able to group the info and add in the nestfate and failurecode in one step.
    Thanks!

    try this:
    SQL> select * from table_tree;
    TREECLUSTER TREENUMBER NESTCHECK NESTNUMBER       EGGS  NESTLINGS FLEDGLINGS NESTFATE   NESTFAILURECODE
              4        167 17-MAY-00          2          0          0
              4        167 24-MAY-00          2          3          0
              4        167 30-MAY-00          2          3          0
              4        167 12-JUN-00          2          0          1            FAILURE                  2
    select a.treecluster, a.treenumber, to_char(a.nestyear,'YYYY') nestyear,
           a.nestnumber, a.eggs, a.nestlings, a.fledglings, a.nestfate, a.nestfailurecode
    from   (select max(treecluster) treecluster, max(treenumber) treenumber,
                   max(nestchecksdate) nestyear,
                   max(nestnumber) nestnumber, max(eggs) eggs, max(nestlings) nestlings,
                   nvl(max(FLEDGLINGS),0) FLEDGLINGS, max(NESTFATE) NESTFATE,
                   max(nestfailurecode) nestfailurecode
            from table_tree) a
    TREECLUSTER TREENUMBER NEST NESTNUMBER       EGGS  NESTLINGS FLEDGLINGS NESTFATE   NESTFAILURECODE
              4        167 2000          2          3          1          0 FAILURE                  2hope this helps

  • Materialized views with GROUP by ROLLUP

    I am trying to created Materialized view (snapshot) using group by rollup functionality.
    The idea is to use snapshot with all subtotals already calculated in place.
    For example average group by rollup (columns of the time dimension).
    The idea is to use "query rewrite" Oracle functionality and snapshot with calculated subtotals.
    Does anybody have experiance with this method ?
    Thank you
    Michael

    The query rewrite is an internal function of Oracle. Normally, you have nothing to do than verify that the query that perform OBIEE is rewrited.
    In any other way, you can in OBIEE define that you have create an aggregate and OBIEE will (re-)write the query.
    http://www.rittmanmead.com/2007/10/26/using-the-obiee-aggregate-persistence-wizard/
    Regards
    Nico

  • SharePoint 2010 List View with Group By is Not Sorting Correctly

    My organization has a list in SharePoint 2010 that is being used as a FAQ. The list contains the following columns:
    Question-  Single line of text 
    Answer-  Multiple lines of text 
    Priority-  Number 
    Priority is the importance of the question and is a unique integer number. Higher Priority questions are to be displayed at the top of the list.
    A view has been created to display the Question and Answer columns, grouped by Question, and sorted by Prioity. The problem is that the SharePoint is not sorting by priority. I have added display of Priority and embedded a screen capture showing the order
    going non sequentially from 1,005 to 1,024 to 1,015.
    Is this a known defect? Is there a workaround? Are there other options?
    Regards,
    Darian.

    Hi,
    Based on your description, I have done a test. I can reproduce your issue.
    Per my test, I come up with a conclusion.
    When we group by Question, the list view is be grouped. Then we sort by Priority, actually it is only sort the item within a group rather than the entire list.
    So the items inside of different groups out of order is normal.
    Best Regards,
    Lisa ChenForum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]
    Lisa Chen
    TechNet Community Support

  • Problems with Sharepoint 2010 view if group by and collapsed is activated - all items show up within each group!

    Hi there,
    we have a Sharepoint 2010 Enterprise environment where we use some lists for new feature ideas.
    These lists should be grouped by a certain coloums. If we keep the default view with expanded groups, only the items which should be inside a certain group will be displayed (the count is for example 7 and inside the group there are only 7 items).
    As there are a lot of groups inside the list we would like to create a new standard view with all groups collapsed. But as soon as we change the view, all groups contain ALL items from the list (what makes it really strange is that the count is still 7 but
    a couple of hundred items are inside the group even the ones which should have been filtered by the "group by" settings.
    I enclosed two pictures where you can see the difference between "collapsed" and "expanded" view (Group by settings!)
    Is this a bug or is there something wrong with our views/installation?
    Thanks for any help (by the way: i just installed the CU from April 2012 which didn't make any difference!)
    Greetings
    Jens
    "Collapsed View":
    "Expanded View":

    Hi ,
    I  understand that when you create a new standard view with group by BDE ,and all items show up when collapse is activated .I cannot reproduce your issue .This is not a bug .You should try to edit the view in browser multiple times to have a test whether
    it is showing correctly now .If this view is still not working ,you can try the workaround below :
    Open the Site in SharePoint Designer .
    Open the list and create a new view .Make the view as the default view .
    Edit the view in Advanced Mode . Click in the xsltlistview web part and Click Sort&Group in the ribbon .
    You can add Group by here .After making all the changes ,save and preview the view in browser .
    Thanks
    Entan Ming
    TechNet Community Support

  • Adding facebook comments to large product page

    hi guys I just wanted to go over the facebook intergration process *** ive read this http://kb.worldsecuresystems.com/kb/add-social-media.html
    but couldnt find the container.html page in admin, only dreamweaver.
    plus when ive checked out the forums on intergrating facebook comments there seems a work around because the current module doesnt work the way people want it. to.
    Is this still the case or should I go about intergrating facebook as described http://kb.worldsecuresystems.com/kb/add-social-media.html
    What I want to do is use it on this site on the large product section instead of the comments module ive inserted
    http://www.ceramicplanet.co.uk/bathroom-tiles/relief-white-5445-25x33cm
    would adding the script to the large product template manually work better than adding it to the facebook container.html page in the social modules folder?
    plus I got the impression peeps had trouble having the comments for that one item showing just on its own page. I want just comments for the product on show appearing on that product page not just any old list of random comments. Is this easy to do now or is there extra url tags needed?
    any advice or help will be greatly appreciated
    Dave
    oh just to say this is the code facebook gave out when I pressed get code but Ive noticed different versions on forum pages, is it right to use this
    <div id="fb-root"></div>
    <script>(function(d, s, id) {
      var js, fjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s); js.id = id;
      js.src = "//connect.facebook.net/en_GB/all.js#xfbml=1";
      fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));</script>
    <div class="fb-comments" data-href="http://example.com/comments"
    data-colorscheme="The color scheme used in the plugin" data-numposts="5"
    data-width="420"></div>

    If you just want to keep it simple, Facebook has a social widget system that works from the URL, as long as the URL stays the same the comments will he there for that product or whatever you need.
    It is very easy to implment and even has a wizard to help you config the size and look.
    https://developers.facebook.com/docs/plugins/

  • Check Points for production server

    Hi
    We are planning to update patch level of production server and Our SRM server is looking into this server. In this regards, I would like to know what are the check points in Production server after Patching up?
    I want to know the main areas which may get affected due to Patch-up.
    Regards

    Hi,
    Pls keep go thru the new features that were introduced thru this patch level. Make note of the Bugs SAP has fixed with this service pack.
    Keeping in view of the features and bug fixed keep track of the areas that you need to keep track of.
    Its is also important to check for below things.
    1. Master Data - Materials, Vendors and Users.
    2. Transactional Data - SC's, PR's,PO's Confirmations, Invoices.
    3. Workflow.
    Regards,
    Satya

  • Can not see all the clips in large Icon view in my bin

    I arranged my clips in a bin in large Icon view but i can not see all the clips in the bin while in that mode. I see the clips when in list mode or when i drag them out of the bin into the main bin. As soon I drag them back in large icon view bin they do not show up, when going back in list view they are there.
    Any idea
    Also my daughter accidently pulled the electrical plug, which turned my external hard drive off. So the media was off line. I hit reconnect the clip but the clip does not show as connected in the bin it keeps the Media offline icon but putting the clip in the viewer or time line it plays it. So the clip is reconnected
    hope anybody can help with those two issues thanks

    Nick
    thanks for your message it helped to show the clips. Here how I solved it. I put the clips i could not see in large Icon view, to the Project folder. Even in the project folder I was only seeing the clips with Thumbnail in list view. When i hit large Icon view the clips disappeared, and they could not have been lower down as i only have about 5 folders in the project. I then clicked arrange the clip by name and they showed up again. Like that i dragged the clip back in to its bin and it showed up. The reason for going back and forth I arranged the clips manually in the bin before and when hitting arrange by name it spread them to far apart and put the clips not in a sequence I liked.
    for the second part I followed Neil's suggestion it worked.

  • Distr. Key GLEI in Prod. order not getting reflected in SCM product view

    Hi,
    We have the CIF integration model active to transfer production orders from R/3 to SCM-APO.
    When we create a production order in R/3 it is getting transferred over to SCM and can be seen in Product view for the material-plant combination.
    If we have the distribution key as GLEI on the production order in R/3, and we looked at stock requirements list-MD04 the receipts were split across evenly from the start date to the end date of the production order.
    However, in the product view of SCM, the material was shown as available only at the end date of the production order with the full quantity.
    Please provide any pointers as to something we might have missed out that made the CIF'ing not work properly...
    Thanks & Regards,
    Renjith John Andrews

    Hi Renjith
    Yes I do mean the Production Process Model. To check setting you need to do the following:
    Transaction /sapapo/scc03
    Click on choose plan via PPM and enter your material and location and press change.
    Double click your operation
    Double-click your activity
    On the components tab you should see your "Output" material (Type O in I/O Indicator field), next to this should be the consumption indicator field. This is the one that has to be set to 'C'.
    Hope this helps.
    Regards
    Ian

  • Forecast Consumption in APO- No Data Available in Product View

    Hi Experts
    I facing some problem in Forecast Consumption in APO. The APO system is connected to a R/3 system. So data relevant for Forecast consumption comes from R/3.
    The allocation indicator in the requirement class assigned to the strategy maintained in the product master is set as " no consumption with customer requirement". and the same is transfered to APO.
    I have the changed the settings in APO and here are the setting maintained in APO to enable Forecast Consumption.
    Product Master Setting:
    a) Consumption Mode: 2 ( forward and backward)
    b) Consumption Period: ( 30 days both backward and forward)
    c) Strategy Group : 20 and assignment mode is set to "Assign customer requirement to planning with final assembly" and category group has sales order - BM
    d) The check mode setting in the ATP tab is set to "Assign customer requirement to planning with final assembly"
    I have a forecast for today's date and a sales order transferred from R/3 for the same date. But I do not see any data in the Forecast tab in the product view ( /sapapo/rrp3 Tcode)
    Please let me know if I am missing any setting in APO. Or the SAles order carries the strategy information from R/3 and influencing the consumption any way.

    Hi,
    What is your Forecast & Sales order quantity? If these are same then sales order consumed forecast, so you can not able to see in the rrp3.
      Second thing try to increse the forecast quantity than sales order quantity & then check it.
    Regards
    Sujay

  • Error while creating planned order in product view

    I am getting following error when I try to create planned order for a product in a Location  manually in product view using /SAPAPO/RRP5.
    Error occurred while creating order
    Message no. /SAPAPO/RRP251
    I checked the product and resource. Everything looks good.
    Block is available in the resource WMP1_2041_001 for characteristics specified in planned order.
    Product master and PDS look good.
    In the planning log, I see the following error message.
    Plan explosion failed for product LBRA1050-661 in location 2041
    Message no. /SAPAPO/RRP718
    I have not found SAP notes for above error.
    Can you pl let me know what this is due to?
    Thanks,
    Srini

    Srini,
    The message was created as a result of several notes, such as 1582997.  There are others.
    The implication is that you have an invalid source somewhere in your BOM.  Maybe a bad component part, maybe a bad transportation lane, maybe an invalid BOM, or maybe a bad PPM/PDS.
    If you can't find the problem using logical troubleshooting steps, have one of your programmers debug.  Have him put breakpoints in FM  /SAPAPO/RRP_PLORD_CREATE .  If you are particularly lucky, you will find a developer that understands German, because all the internal comments in this FM are in German.
    Best regards,
    DB49

Maybe you are looking for

  • ORA-01843: not a valid month, external table select fails on date column

    Hi, I created an external table as follows: CREATE OR REPLACE DIRECTORY sales_feeds AS '/backup/oracle/feeds'; Directory created. CREATE TABLE salesfeed_external_table           PROD_ID               NUMBER         , CUST_ID               NUMBER     

  • CRM BADI URGENT?

    Hi I am using BADI BUPA_FURTHER_CHECKS...when creating a business partner (sold-to-party) in SAP CRM? I need to check the industry code with the attribute...and give an error message... But the problem is that this BADI is not getting triggered? Do u

  • Link Target, Code Snips and Nag-Screens?

    I shelled out the cash to buy a copy of iLife '06 so I could get iWeb. I quickly found that it was missing the ability to specify targets in links, this is an incredibly basic feature that iWeb is strangely missing. Without it iWeb sites aren't frame

  • Adobe Audition Help | Saving and exporting files (CS6)

    This question was posted in response to the following article: http://helpx.adobe.com/audition/using/saving-exporting-files1.html

  • HT4623 apps will not update

    under the app store it shows I have updates to do.  When I hit install all and then my password the apps will not update.