Hi,
since we have updated our workspace to RBD 9.5 (Dojo Widgets 2.3) we have performance problems with the Datagrid Editor Behaviors.
In the Editor Behaviors of the Datagrid we put DojoComboBoxs in one column.
Like this:
function EditorBehaviors(grid DataGrid in, cell Widget in, rowData any in, rowIndex int in, column DataGridColumn in, value any in) returns(Widget) if(column.name == "column") DojoComboBox DojoComboBox{value = value, editable = false, onChange ::= TEST_onChange, width = 160, values = values, disabled = true}; cell.children =[DojoComboBox]; end end
Marcel-D