I
IramK
Guest
Hello Shiva Duriseati , Thanks for your reply. It doesn't explicitly specify in the documentation that you cannot apply it on a group of checkboxes. I am getting all the corresponding checkbox ids from their respective codes using rbf_getIdByCode() function and the way I am trying to perform rbf_setChecked on a group of checkboxes is given below. Let me know if there are any questions. Cheers. Iram // I would like to select all the checkboxes var checkboxArray = [1,5,10,25,50]; // 1,5,10,25,50 are the checkbox codes for each checkbox item for(var y = 0; y < checkboxArray.length; y++) { // Getting all the ID's of the checkbox items from their codes rbf_getIdByCode("checkBoxTestObject", "checkboxArr", checkboxArray[y], function task_IdCallback(returnedID){ rbf_setChecked("checkboxArr_" + returnedID, true); }); }
Continue reading...
Continue reading...