GXT 3.x EditorGrid: choose cell editor type on a cell by cell basis -
is there anyway define editor type on cell cell basis in gxt 3.0 ? i need create transposed table; column become row , row column. being case, column (from normal table point of view) have various editor type, whereby row have identical editor type. i trying use following approach - seems working fine, , allow open editors based on data type when click out; doesn't close/hide editor. i appreciate if can please point me in right direction. final gridinlineediting<mymodel> editing = new gridinlineediting<mymodel>(mygrid){ @suppresswarnings("unchecked") @override public <o> field<o> geteditor(columnconfig<mymodel, ?> columnconfig) { if(valuecolumnname.equals(columnconfig.getheader().asstring())) { mymodel mymodel = tree.getselectionmodel().getselecteditem(); if(mymodeltype.string.equals(mymodel.getmymodeltype())) { textfield textfield = new textfield(); ...