I
IramK
Guest
Hello, I have some code that checks for a checkbox value on load of the page and if the checkbox is checked, I am disabling a link lookup field. However after I disable the link lookup field, it re-enables back again. I do not have any other code that does the enabling/disabling of this field. Here is the code: $("document").ready(function () { var linklookupdropdown = rbf_getFieldContext("linklookupdropdown").getKendoConfig(); //If checkbox is checked then disable link lookup field if (rbf_isChecked('checkboxfield')) { linklookupdropdown.enable(false); } else { linklookupdropdown.enable(true); } }); Please let me know if there are any issues with this. I think this is a bug. Cheers. Iram
Continue reading...
Continue reading...