Question

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

Était-ce utile?

La solution

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>");
        }
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top