Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
110
hierarchicalgrid childgrid datasource set seperately depend upon rowexpand value
posted

How can i Set the rowexpand value to hierarchical child grid data Source..

rowExpanding : function(e, args)
{
 var objparam = new Object();
objparam.strUpdatefor = 'FORM';
objparam.struserID = $("#ddlUser").val();
objparam.ParentID = args.parentrow[0].cells['2'].innerHTML;
 corsAjax.get("PageRights/GetFormList", { "data": JSON.stringify(objparam) }, function (objparamData) {
 if (objparamData !== null && objparamData.length !== undefined && objparamData != []) {
 $("#tblHierarchicalGrid").on("igchildgridcreating", "destroy");
 objData = objparamData; 
 }
 });
},

How to set that objData is my Child Grid Datasource...

Parents
No Data
Reply
  • 15320
    Offline posted

    Hello jeevamani,

    I'm not sure I understand your query. Could you send me a sample so that I can have a chance to take a look at your entire code and could you explain me in more details about your issue?

    Regards,
    Tsanna

Children