0

i'm starter in jqGrid. i have 4 feild , Id,Name,Date and Age. i Want when user click in icon search and appear search box when select Date item for search Now Appear one textBox for user enter your date, but i want Appear two textBox for user enter FromDate and ToDate.like this form enter image description here
please help me. thanks All

Pouya
  • 1,908
  • 17
  • 56
  • 78

1 Answers1

0

User beforeShowForm event and add whatever you want like this..

beforeShowForm: function (form) {

            $("#Location").empty();
            $("#Location").append("<option value='0'>--Select--</option>");
            $("#Area").empty();
            $("#Area").append("<option value='0'>--Select--</option>");
        }
Leo
  • 109
  • 1
  • 8