Hi,
Have a look at this showcase sample: https://www.smartclient.com/smartcli...=customEditors
It is working fine showing TextAreaItem as government field editor:

But if you modify sample by showing filter editor:
then TextItem is used instead of TextAreaItem as government field grid's editor:

Any chance to fix/workaround this?
Thanks,
MichalG
Have a look at this showcase sample: https://www.smartclient.com/smartcli...=customEditors
It is working fine showing TextAreaItem as government field editor:
But if you modify sample by showing filter editor:
Code:
isc.ListGrid.create({
ID: "countryList",
width:620, height:224, alternateRecordStyles:true,
cellHeight:42, wrapCells:true,
showFilterEditor:true,//<--
dataSource: countryDS,
fields:[
{name:"countryName", width:100},
{name:"government", width:175,
editorType:"TextAreaItem",
editorProperties:{height:40}
},
{name:"population", width:100,
editorType:"SpinnerItem"
},
{name:"independence", width:225,
editorProperties:{useTextField:false}
}
],
autoFetchData: true,
canEdit: true,
editEvent: "click"
})
Any chance to fix/workaround this?
Thanks,
MichalG
Comment