Hello, I need some direction on the following scenario.
User clicks “Add Row”
This code runs:
$("#orderLineGrid").jqxGrid('addrow', null,{ grossWtUOM: defaultVals.weight, netWtUOM : defaultVals.weight, grossVolUOM : defaultVals.volume, netVolUOM : defaultVals.volume });
This adds a row and puts default values in four columns.
The columns are configured as jqxDropDownLists as below:
columntype : 'dropdownlist', initeditor : function(row, cellvalue, editor) { editor.jqxDropDownList({ source : _3GTMS.Data.getWeightUOMAdapter(), displayMember : "label", }); },
The add row looks great and the value is in the cell.
But when the user tabs through the row to the cell, the drop down shows nothing selected. The “Please Choose:” is in the drop down.
Please advise.
Thank you!