SmartClient Version: v10.0p_2015-09-26/Enterprise Development Only (built 2015-09-26)
Chrome on OSX
Hello, please modify the #filter sample like this:
You'll see that the filter and the fields renders as in the attachment
Chrome on OSX
Hello, please modify the #filter sample like this:
Code:
isc.ListGrid.create({ ID: "countryList", width:500, height:300, alternateRecordStyles:true, dataSource: worldDS, fields:[ {name:"countryCode", title:"Code", width:50}, {name:"countryName", title:"Country"}, {name:"capital", title:"Capital"}, {name:"continent", title:"Continent"} ], autoFetchData: true, showFilterEditor: true, showRowNumbers: true, rowNumberFieldProperties: { canFilter: false, showIf: function (list, field, fieldNum) { var filterEditorCriteria = list.getFilterEditorCriteria(true); return !isc.isA.emptyObject(filterEditorCriteria); } } })
Comment