Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Amal on Aug 20, 2008 06:50
open dhtmlx forum
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
})