Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    listgrid grouing problem

    Step to reproduce:
    1. Expand the second group.

    2. Try to mouseover records in the second group. We will see we cannot correctly mouse over the second and the third record.



    Code:
    
    
    <HTML><HEAD><TITLE>Test Show All</TITLE>
        <SCRIPT>var isomorphicDir = "isomorphic/"</SCRIPT>
        <SCRIPT SRC=isomorphic/system/modules/ISC_Core.js></SCRIPT>
        <SCRIPT SRC=isomorphic/system/modules/ISC_Foundation.js></SCRIPT>
        <SCRIPT SRC=isomorphic/system/modules/ISC_Containers.js></SCRIPT>
        <SCRIPT SRC=isomorphic/system/modules/ISC_Grids.js></SCRIPT>
        <SCRIPT SRC=isomorphic/system/modules/ISC_Forms.js></SCRIPT>
        <SCRIPT SRC=isomorphic/system/modules/ISC_DataBinding.js></SCRIPT>
    	<SCRIPT SRC=isomorphic/skins/Enterprise/load_skin.js></SCRIPT>
    	<SCRIPT SRC=isomorphic/locales/frameworkMessages_de.properties></SCRIPT>
    	<link rel="stylesheet" type="text/css" href="verizon.css">
    </HEAD><BODY CLASS="pageBackground">
    
    
    <SCRIPT>
    
    isc.screenReader = true;
    
    var testData2=[
    {pk:0, orderID:8620, itemDescription:"18 inch flat panel monitor",
        category:"Hardware", shipDate:new Date(2009,11,11), quantity:2 , unitPrice:375 },
    {pk:1, orderID:629, itemDescription:"Office Productivity Suite", 
        category:"Software", shipDate:new Date(2009,12,10), quantity:15 , unitPrice:64.99 },
    {pk:2, orderID:1264, itemDescription:"Office Productivity Suite",
        category:"Software", shipDate:new Date(2009,12,20), quantity:2 , unitPrice:64.99 },
    {pk:3, orderID:7100, itemDescription:"USB Ergonomic Keyboard",
        category:"Hardware", shipDate:new Date(2009,10,20), quantity:6 , unitPrice:99.99 },
    {pk:4, orderID:9647, itemDescription:"Consulting Services",
        category:"Services", shipDate:new Date(2009,12,21), quantity:10 , unitPrice:100 },
    {pk:5, orderID:8468, itemDescription:"USB Optical Mouse",
        category:"Hardware", shipDate:new Date(2009,10,10), quantity:5 , unitPrice:29.99 },
    {pk:6, orderID:9496, itemDescription:"Off-site Training",
        category:"Services", shipDate:new Date(2010,1,1), quantity:35 , unitPrice:80 },
    {pk:7, orderID:5124, itemDescription:"USB Stereo Headset",
        category:"Hardware", shipDate:new Date(2009,10,20), quantity:1 , unitPrice:69.99 },
    {pk:8, orderID:1799, itemDescription:"Office Application Suite",
        category:"Software", shipDate:new Date(2009,11,2), quantity:22 , unitPrice:30 },
    {pk:9, orderID:7020, itemDescription:"Consulting Services",
        category:"Services", shipDate:new Date(2009,12,20), quantity:100 , unitPrice:80 }];
    
    isc.DataSource.create({
        ID:"orderItemLocal2",
        clientOnly:true,
        testData:testData2,
        fields:[
            {name:"pk", type:"sequence", primaryKey:"true", hidden:"true"},
            {name:"orderID", type:"integer", canEdit:false, title:"Order ID", pluralTitle:"Orders"},
            {name:"itemDescription", type:"text", title:"Description"},
            {name:"category", type:"text", title:"Category"},
            {name:"shipDate", type:"date", title:"Ship Date"},
            {name:"quantity", type:"integer", title:"Quantity"},
            {name:"unitPrice", type:"float", title:"Price"}
        ]
    });
            
    isc.ListGrid.create({
        ID: "companyList",
        top: 50,
        left:100,
        width:600, height: 300,
        alternateRecordStyles:true,
        autoFetchData:true,
        dataSource:orderItemLocal2,
        groupByField: "category",
        fields:[
            {name:"orderID"},
            {name:"itemDescription"},
            {name:"category"},
            {name:"shipDate"},       
            {name:"quantity"},
            {name:"unitPrice"}
        ]
    });
    
    </script>
    </body>
    </html>

    #2
    Not reproducible, and probably due to the CSS file you included but did not show.

    Comment


      #3
      Strange - I also do not have the css file and I can still reproduce it - IE 8, Win7, build 2012-01-24

      Note also that once you click into the grouped body, then the highlight starts to work.

      Comment


        #4
        Here's a screenshot of it http://screencast.com/t/wBKxOQ5rz

        as you can see, after I expand the second ground, my cursor goes up and down the reords in this grouping but it does not highlight the second or third record like it does the first grouping

        Comment


          #5
          We see it. Sorry for the confusion.
          This should be fixed in the next nightly build.

          Thanks
          Isomorphic Software

          Comment


            #6
            Thanks - I assume you mean builds later than 2011-01-26?

            Comment


              #7
              Fixed in build 2012-01-27

              Comment

              Working...
              X