now I get what you are talking about. It sounded like "if I move the outer horizontal scrollbar, the inner one also moves".
You want to have the inner grid always in view, even if you scroll the outer grid to see more columns of the data.
E.g. this modified sample:
Code:
isc.ListGrid.create({ ID: "categoryList", width:650, height:300, alternateRecordStyles:true, dataSource: supplyCategory, autoFetchData: true, fields: [ { name: "categoryName", width: 500 }, { name: "parentID", width: 500 } ], canExpandRecords: true, expansionMode: "related", detailDS:"supplyItem" });
If that is not possible, this master/detail sample might also be an option for you
Best regards
Blama
Leave a comment: