Hello,
I have live grid with about 50 columns.
But when I scroll horizontal to right end, Grid does not display column filter editor with column header.
I have set showAllcolumns : true, still column filter editor is distorted.
Am I still missing any property to set??
Please find below listGrid creation.
isc.ListGrid.create({
width: "100%",
height: "100%",
autoFetchData: true,
canEdit: false,
canDragSelectText: true,
canGroup: true,
canMultiGroup: true,
canMultiSort: true,
fixedRecordHeights: true,
showFilterEditor: true,
canHover: true,
gridComponents: ['header', 'filterEditor', 'body'],
alternateRecordStyles: true,
showAllColumns: true,
sortField: 'createdate',
sortDirection: 'createdate',
showRollOver: false,
showAllColumns: true,
dataSource: mydata
});
Structure I load
HLayout ---->>> TabSet ----->>> ListGrid.
I use smartclient Version v10.0p_2015-01-14/PowerEdition Development Only (2015-01-14).
Thanking you.
I have live grid with about 50 columns.
But when I scroll horizontal to right end, Grid does not display column filter editor with column header.
I have set showAllcolumns : true, still column filter editor is distorted.
Am I still missing any property to set??
Please find below listGrid creation.
isc.ListGrid.create({
width: "100%",
height: "100%",
autoFetchData: true,
canEdit: false,
canDragSelectText: true,
canGroup: true,
canMultiGroup: true,
canMultiSort: true,
fixedRecordHeights: true,
showFilterEditor: true,
canHover: true,
gridComponents: ['header', 'filterEditor', 'body'],
alternateRecordStyles: true,
showAllColumns: true,
sortField: 'createdate',
sortDirection: 'createdate',
showRollOver: false,
showAllColumns: true,
dataSource: mydata
});
Structure I load
HLayout ---->>> TabSet ----->>> ListGrid.
I use smartclient Version v10.0p_2015-01-14/PowerEdition Development Only (2015-01-14).
Thanking you.
Comment