Hi, I Would like to create dynamic rows with jqxNumberInput and jqxDropDownList based on row flags, for ex T –> Textbox, D–> Dropdownlist
executing without any issue but unable to edit, So JqxWidget Team can you share any idea to handle dynamic row create in JQX Widget Grid
Issue –> Text-box & Dropdownlist created based on flag but unable to Edit
code samples:-
createeditor: function (row, cellvalue, editor) {
var ctl = $(‘#jqx_List_Grid’).jqxGrid(‘getcellvalue’, row, ‘ObjField’);
if (ctl == ‘T’) {
editor.jqxNumberInput({ decimalDigits: 0, digits: 6, min: 0, inputMode: ‘simple’, });
}
else if (ctl == ‘D’) {
var source = [{ value: 1, label: ‘Yes’ }, { value: 0, label: ‘No’ }];
editor.jqxDropDownList({ source: source, displayMember: ‘label’, valueMember: ‘value’, dropDownHeight: 50 });
}
},