BoldDeskWe are launching BoldDesk on Product Hunt soon. Learn more & follow us.
Hi Nick,
Thanks for contacting Syncfusion support.
We have updated with response for the query reported in this forum in the incident 111978 which was created by you. Kindly we request you to follow that incident for further assistance.
Thanks,
Gurunathan
Hi,
I have a similar problem in that I cannot see the items that are checked after the form is submitted. Can you please tell me how to do it ?
thanks
John
Create a hidden input field on the form and then string the checked id's into it. Pick it up in your controller...
<input type="hidden" id="hidCodings" name="hidCodings" />
....
....
...then use the following script...
var checked = $find("MyTreeView").GetAllCheckedNodes();
$("#hidCodings").val("");
$.each(checked, function (i, nodeitem) {
var nodeid = $("#hidCodings").val() != "" ? $("#hidCodings").val() + "," + $(nodeitem)[0].id : $(nodeitem)[0].id;
$("#hidCodings").val(nodeid);
});
John