I defined the editor of a field within a datagrid as type of numberbox.
If I don't define the decimalSeparator I am not able to set one at the field.
If I define others than a comma (,) I am not able to set one eather.
Only I define the comma (,) I can set a comma by the "normal" keyboard but not by the numblock.
How to deal with that? Any examples?
,{field:'ZSP_TRAB',title:'Trab',width:100,sortable:'true',align:'left'
,editor:{ type:'numberbox'
,options:{ required:true
,missingMessage:'Geben Sie die Note für den Trab ein.'
,prompt:'Trab-Note...'
,precision:2
,decimalSeparator:'.'
,max:10
}
}//editor
}//field
How do I have to set the formatter so that the number apears with a comma and not with a dot (.)?