This is driving me nuts. I have two Selects, both populated on the server side - client side the option is selected programatically via jquery.
However, only one works correctly, same code!
I have verified (on the non-working one) that the value I am trying to select exists and is correct. IT JUST DONT WORK!!!!
- var settlementAgent = GetNodeText(objColumns, "SettleMentAgent");
$('txtEscrow_SettleMentAgent option[value="' + settlementAgent + '"]').attr('selected', 'selected');
$('txtEscrow_SettleMentAgent').selectmenu('refresh'); // Doesnt work
- var temp = GetNodeText(objColumns, "LenderCD");
$('#selectLender option[value="' + temp + '"]').attr('selected', 'selected');
$('#selectLender').selectmenu('refresh'); // Works as expected.
Any ideas? Thanks in advance.