UPDATE: version 7.0rc2 (built 2009-05-30)
Hi,
I'm trying to create a local listgrid (with static data) and add filtering into it.
Here's my code:
Filter is shown but no filtering occurs. Where's my mistake?
Hi,
I'm trying to create a local listgrid (with static data) and add filtering into it.
Here's my code:
Code:
isc.ListGrid.create({
ID: "objectsList",
showHeader: false,
showFilterEditor: true,
filterOnKeypress: true,
dataProperties: {
fetchMode: 'local',
useClientFiltering: true
},
fields: [
{ name: "entityType" }
],
data: [
{ entityType: "Employee" },
{ entityType: "Department" }
]
});
Comment