jQWidgets Forums
jQuery UI Widgets › Forums › Grid › How to get the value (instead of the label) of a jqxDropDownList in a jqxGrid
Tagged: jqxDropDownList, jqxgrid
This topic contains 5 replies, has 3 voices, and was last updated by zokanzi 9 years, 5 months ago.
-
Author
-
July 21, 2014 at 9:25 am How to get the value (instead of the label) of a jqxDropDownList in a jqxGrid #57469
I want the ‘value’ instead of the ‘label’. Just like a plain <select name=”status”><option value=”T”>Temp</option></select> I want the “T” and not the “Temp”.
jqxGrid columns snippet:
{ theme: 'arctic', source: assortimentAdapter, autoheight: true, editable: true, sortable: true, width: 1100, columns: [ ... { text: 'Status', dataField: 'status', columntype: 'dropdownlist', editable: true, createeditor: function (row, value, editor) { editor.jqxDropDownList({ source: artikelStatusAdapter, displayMember: 'label', valueMember: 'value' }); } } ] }
assortimentAdapter snippet:
var source = { datatype: 'json', datafields: [ {name: 'id', map: 'id'}, {name: 'status', map: 'status'} ], url: url, updaterow: function (rowid, rowdata, commit) { console.log(rowdata.status); // Displays "Temp" instead of "T"!! $.ajax(url, {method: 'POST', data: rowdata, dataType: 'json'}).then(function(response) { commit(true); }); }
statusAdapter snippet:
var adapter = new $.jqx.dataAdapter({ datatype: 'array', datafields: [ {name: 'value'}, {name: 'label'} ], localdata: [ {value: 'P', label: 'Permanent'}, {value: 'T', label: 'Temp'} ] });
Thanks,
Richard JansenJuly 21, 2014 at 12:12 pm How to get the value (instead of the label) of a jqxDropDownList in a jqxGrid #57478Hi Richard Jansen,
As far as I see, your Grid column is not set up as a column which has Label and Value. Here’s an example: http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/gridkeyvaluescolumnwitharray.htm?arctic which demonstrates how this should be implemented.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comJuly 21, 2014 at 12:28 pm How to get the value (instead of the label) of a jqxDropDownList in a jqxGrid #57479Hi Peter
Thanks for your response. I based my code on that example you send. I don’t understand where and how to set the ‘value’ and ‘label’. I tried everthing. The example is too complex for helping me with my simple problem. Can you give me more hints or solution?
Thanks,
Richard JansenJuly 21, 2014 at 12:31 pm How to get the value (instead of the label) of a jqxDropDownList in a jqxGrid #57481Hi Richard Jansen,
Sorry, we do not have a simpler example for creating a column with label/value pair. The column with DropDownList editor in the sample has displayfield and datafield which indicate the label and value in the data source.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comJuly 23, 2014 at 11:21 am How to get the value (instead of the label) of a jqxDropDownList in a jqxGrid #57616I see now how it’s working and I’ve implemented that in my code. The weird thing is that I needed to add an extra dataField in the dataSource, according to the example. Now I have 2 fields: one for the code and 1 for the string from the seleceted dropdown option. Is this normal? Actually I only want the code.
Thanks,
RichardOctober 23, 2015 at 5:06 am How to get the value (instead of the label) of a jqxDropDownList in a jqxGrid #77242 -
AuthorPosts
You must be logged in to reply to this topic.