ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: elearnster on September 25, 2014, 09:32:10 pm

Title: Relocating the grid
Post 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
Title: Re: Relocating the grid
Post by: paramvir on September 26, 2014, 02:13:25 pm
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' );
Title: Re: Relocating the grid
Post by: elearnster on September 26, 2014, 11:37:19 pm
Thank you!!!