1

I have two grids on the page, one is normal page and another is a modal dialogue. The modal dialogue grid has search feature. When i display search dialogue it is sometimes displaying below the modal dialogue. How can i display search dialog always on top? Thanks for any help.

Kavitha
  • 21
  • 2
  • I answered on the same question some time before [here](http://stackoverflow.com/a/5689137/315935) and [here](http://stackoverflow.com/a/6155351/315935) for the old searching dialog of jqGrid and then I posted [the answer](http://stackoverflow.com/a/8833721/315935) which demonstrates the solution which you can use now. – Oleg Oct 04 '12 at 18:31
  • I used overlay:false. It solved the problem. Thanks – Kavitha Oct 04 '12 at 19:40

1 Answers1

0

You can call this function with your Form id.

function DragFormCenter(id) {
$(id).css('top', 0);
$(id).css('right', 0);}
Hong Van Vit
  • 2,884
  • 3
  • 18
  • 43