I have a combobox configured and it appears to be working correctly but when I try to set the value with $(“#company_id”).val( 46 ); it does not set. My source has a record with the id of ’46’.
Other inputs, checkboxes, radio buttons are not a problem with .val(). Using (‘val’, ‘New Value’) does not work either. What could be stopping this from working.
{“46″:”Ankunding-Reinger”,”19″:”Balistreri LLC”,”7″:”Bergnaum, Towne and Ryan”,”47″:”Bernhard PLC”,”22″:”Bode Group”}
http://jsfiddle.net/jqwidgets/efNXk/
/* Company Select Box */
var companylist =
{
datatype: "json",
datafields: [
{ name: 'id' },
{ name: 'name' }
],
url: "../../company/companylist",
};
var data_companylist = new $.jqx.dataAdapter(companylist);
$("#company_id").jqxComboBox(
{
source: data_companylist,
placeHolder: "Select a Company . . . ",
displayMember: "name",
valueMember: "id",
height: inputHeight
});