Pregunta

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

¿Fue útil?

Solución

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>");
        }
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top