Hi everybody,
I want to find a specific input in a grid array, how to solve it?
In my grid, I have some ids (which are inputs) like week_day, date_plan, product_name and …
My grid has an array which is called production_planning.
I use some code like this:
$("#production_planning").find(“input”).datepicker({
observe: true,
format: ‘YYYY/MM/DD’
});
But, the mentioned code affects on all of inputs in grid. I want to affect on just on of them.
I tried with the following code, but it did not work:
$("#production_planning").find(“input.date_plan”).datepicker({
observe: true,
format: ‘YYYY/MM/DD’
});
How to solve it?
Thanks in advance for your support.