Categories | Question details Back To List | ||
dhtmlxGrid how to load data into subgrid .Actually I want to load data into subgrid when expanding parent grid cell (click occur on + symbol). Answer posted by Support on Aug 20, 2008 07:19 If you not want to load data in predifened way ( from url stored as cell value ) you can use onSubGridCreated event mygrid.attachEvent("onSubGridCreated",function(subgrid){ // any code to load data in subgrid here return false; //block default logic }) |