SmartClient Version: SNAPSHOT_v11.1d_2017-03-13/Enterprise Development Only (built 2017-03-13)
Chrome on OSX
Hello, is it possible to show only the value icon in the pickList of a grid filterEditor?
This doesn't work:
Chrome on OSX
Hello, is it possible to show only the value icon in the pickList of a grid filterEditor?
This doesn't work:
Code:
isc.ListGrid.create({
ID: "countryList",
width:500, height:300, alternateRecordStyles:true,
dataSource: worldDS,
canEdit:true,
fields:[
{name:"countryCode", title:"Code", width:50},
{name:"countryName", title:"Country"},
{name:"capital", title:"Capital"},
{
name:"continent", title:"Continent",
editorType:"SelectItem",
filterEditorProperties: {
valueIcons: {
'Europe': 'other/help.png',
'Asia': 'other/help.png',
'North America': 'other/help.png',
'Australia/Oceania': 'other/help.png',
'South America': 'other/help.png',
'Africa': 'other/help.png'
},
showValueIconOnly: true,
allowEmptyValue: true
},
showValueIconOnly: true,
valueIcons: {
'Europe': 'other/help.png',
'Asia': 'other/help.png',
'North America': 'other/help.png',
'Australia/Oceania': 'other/help.png',
'South America': 'other/help.png',
'Africa': 'other/help.png'
}
}
],
autoFetchData: true,
showFilterEditor: true
})
Comment