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.
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>
Comment