Categories | Question details Back To List | ||
Display Record in Grid.??? hi... i have 98 lacks(1 Cored) record in my data base. when i create a xml file then the grid will takes a lost of time to load.... i get the data from database and generate xml using for loop and the load a grid.so it takes lost of time so i want to display that in just 2 or 3 second... so please Help me.... AS soon as possible.... Thanks. Answer posted by Support on Feb 02, 2009 03:59 The loading time depends on count of records in result dataset. If count of rows not exceed few thousands - you can use static smart rendering mode http://dhtmlx.com/docs/products/dhtmlxGrid/samples/loading_big_datasets/pro_srnd_static.html?un=1233576742000 For bigger datasets, dynamic smart rendering or dynamic paging need to be used. In such modes grid loaded by parts on demand http://dhtmlx.com/docs/products/dhtmlxGrid/samples/loading_big_datasets/50000.html?un=1233576698000 |