ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: elearnster on September 25, 2014, 09:32:10 pm
-
When we initialize the Grid, we locate it inside a bootstrap nav-tab. Everything works great. If we want to relocate the grid when the grid is being edited, is there a way to have the grid appear inside of a new dialogue box?
eLearnster
-
It can be moved to a new container/location with jQuery append followed by refresh of the grid.
$("#container_new").append( $grid );
$grid.pqGrid( 'refresh' );
-
Thank you!!!