Hi,
Is there a way to show a progress on cell/content/not including header of grid ?
Thank you
Hi,
Is there a way to show a progress on cell/content/not including header of grid ?
Thank you
Unfortunately such feature is not supported.
You may try to create your own custom exCell type allowing to place any needed html-content to your cell.
Here you can find a tutorial:
docs.dhtmlx.com/grid__columns_ty … olumntypes
I apologize for misunderstanding you.
Unfortunately such a feature is also not supported.
You may try to use the solution from the following sample:
dhtmlx.com/docs/products/dhtmlxG … ation.html
or use the notification of the layout cell:
dhtmlx.com/docs/products/dhtmlxL … gress.html
It’s OK Sematik,
one more question :
How can i get the grid’s container (such a div element), if the grid is attached to a cell of dhtmlxwindows object.
AK.filterName = {
dhxWins : null
}
AK.filterName.dhxWins = new dhtmlXWindows();
AK.filterName.dhxWins.createWindow("w1", 30, 30, 1000, 500);
AK.filterName.dhxWins.window("w1").attachGrid();
Thank You
You may try to call:
myGrid.entBox
Thank You Sematik
Actually:
myGrid.entBox //the container of the grid including the header
myGrid.objBox //the container of the grid excluding the header
mygrid.hdrBox //the container of the header
Ok, thank’s