Hi,
I have some issues with a listgrid when I freeze a column:
>> horizontal scrollbar overlays bottom row
When I freeze a column and the remaining columns are too wide for the grid a horizontal scroll bar is introduced. This horizontal scrollbar overlays the bottom row of the grid (see screenshot). This also happens with the smartclient demo.
Is there a way to show the scrollbar below the grid somehow?
>> empty message is shown in frozen part and repeated in the non-frozen part
(see attached screenshot)
>> Combination with auto fit extends the expanded field to a large width
I am using the nightly build of 8th of december, it works fine with 7.0rc2 though!
I can reproduce the issue with the smartclient simplefreeze example, this example shows that the SKU field is extended to a large width:
gr. Martin
I have some issues with a listgrid when I freeze a column:
>> horizontal scrollbar overlays bottom row
When I freeze a column and the remaining columns are too wide for the grid a horizontal scroll bar is introduced. This horizontal scrollbar overlays the bottom row of the grid (see screenshot). This also happens with the smartclient demo.
Is there a way to show the scrollbar below the grid somehow?
>> empty message is shown in frozen part and repeated in the non-frozen part
(see attached screenshot)
>> Combination with auto fit extends the expanded field to a large width
I am using the nightly build of 8th of december, it works fine with 7.0rc2 though!
I can reproduce the issue with the smartclient simplefreeze example, this example shows that the SKU field is extended to a large width:
Code:
isc.ListGrid.create({ ID: "supplyList", width:'100%', height:224, dataSource: supplyItem, autoFetchData: true, autoFitFieldWidths: true, xautoFitWidthApproach: 'title', autoFitExpandField: 'SKU', fields:[ {name:"itemName", frozen:true, width:150}, {name:"category", width:100}, {name:"SKU", width:100}, {name:"units", width:80}, {name:"description", width:250} ] })
Comment