* Multi-field Search does not work in a comboBox inside a ListGrid.
* While trying a different approach using SelectItem, the filterEditor doesn't show/display.
Any urgent response in relation to this issue will be greatly appreciated.
\"SmartClient_v90p_2013-07-14\" Power Edition
Google Chrome: Version 24.0.1312.57 m
Mozilla FireFox: Version 18.0.2
Intellij IDEA 12.1.4: Ultimate Version.
* While trying a different approach using SelectItem, the filterEditor doesn't show/display.
Code:
// Using ComboBoxItem. To filter all three fields (in the pickListGrid) based on the value typed in the comboBox.
isc.ListGrid.create({
ID:"myListgrid",
fields:[
{
name: "c1",
},
{
name:"c2",
pickListProperties: {
wrapCells: false
},
displayField: "cc8",
valueField: "c2",
pickListFields: [
{ name: "c2"},
{ name: "cc8"},
{ name: "cc9"}
],
filterFields:[
{ "c2", "cc8", "cc9"},
]
}
]
});Code:
// Using SelectItem. In the following example, the filterEditor doesn't show/Display.
isc.ListGrid.create({
ID:"myListgrid",
fields:[
{
name: "c1",
},
{
name:"c2",
pickListProperties: {
wrapCells: false,
showFilterEditor: true
},
displayField: "cc8",
valueField: "c2",
pickListFields: [
{ name: "c2"},
{ name: "cc8"},
{ name: "cc9"}
],
}
]
});\"SmartClient_v90p_2013-07-14\" Power Edition
Google Chrome: Version 24.0.1312.57 m
Mozilla FireFox: Version 18.0.2
Intellij IDEA 12.1.4: Ultimate Version.