jQWidgets Forums
Forum Replies Created
-
Author
-
August 30, 2014 at 8:11 am in reply to: selecting from source data selecting from source data #58963
{text: “ChargeName”,datafield:”ChargeName”, columntype: ‘custom’,
createeditor: function (row, column, editor) {var comboBox = $(“<div class=’dtcombobox’><div/>”).appendTo(editor);
comboBox.jqxComboBox({ source: data.lstExtraCharges,displayMember: “ChargeName”, valueMember: “ExtraChargeUno”});
},
initEditor: function (row, cellValue, editor) {
editor.find(‘input’).val(cellValue);
},
getEditorValue: function (index, value, editor) {
return editor.find(‘input’).val();
}
}this is how i got a combobox inside a datatable. I am getting “ChargeName” displayed as it is set as displaymember. I need to get ExtraChargeUno which is valuemember.
August 28, 2014 at 10:23 am in reply to: selecting from source data selecting from source data #58892Can someone help me about how to get value member of a combobox inside a jqxdatatable editor? By using .val() i can get the display value and when i do ‘getRows’ and iterate through rows i get display name again. Can u pls help me getting the valuemember.
hi ,
I have a grid containing dropdownlist and datetimeinput controls in their columns along with input text columns. While adding new row my controls are getting loaded but am not able to set default value of the dropdownlist as —-select—– in new blank row inserted
Thanks in advance
August 11, 2014 at 6:32 am in reply to: calendar in jqxdatetimeinput is not getting localized calendar in jqxdatetimeinput is not getting localized #58206Hi Peter,
Thanks a lot I didn’t read that text file.I got the Globalization file for arabic. Thanks for the swift reply.
Regards,
NickyAugust 11, 2014 at 5:25 am in reply to: calendar in jqxdatetimeinput is not getting localized calendar in jqxdatetimeinput is not getting localized #58197I downloaded globalization folder but there is no js file customized for arabic language.
August 10, 2014 at 7:29 am in reply to: calendar in jqxdatetimeinput is not getting localized calendar in jqxdatetimeinput is not getting localized #58183hi,
I am not able to add arabic language into the control. Can u help me regarding that? -
AuthorPosts