tags:

views:

43

answers:

1

I don't understand how to change width of edit form in JqGrid. I found option 'width' but I don't know how to use it (there isn't example).

A: 

You probably know the method navGrid. It has parameters in the form

$("#list").jqGrid('navGrid','#pager',{parameters},
                  prmEdit, prmAdd, prmDel, prmSearch, prmView);

where the parameter prmEdit can contain any options of editGridRow method inclusive the width option which you need. So if you need for example to have edit form with 500px width instead of default 300px you can use

$("#list").jqGrid('navGrid','#pager',{},{width:500});

To simplify you the implementation I modified an example from my another answer so that the edit dialog has 200px: see it live here.

Oleg
Thank you very much. It is clear now.
peter
@peter: You welcome! Because you are relatively new at the stackoverflow.com consider to use voting up the answers or questions (see http://stackoverflow.com/faq#howtoask) and accepting one from the answers (see http://meta.stackoverflow.com/questions/5234) or both (voting up and accepting). This will the standard way to say "tanks" and it helps another people quickly to find the most helpful answer.
Oleg