Not able to show the canlendar pop up on second row in my grid
I am having 5 rows in my gird with EffectiveDate texbox but on click开发者_开发百科 on textbox showing popup calendar working for first row.
Not for remaing rows when I click on my any other row except first row its not showing me up the popup calendar window. is that something I am doing wrong here?
Thanks
From api.jquery.com:
Each id value must be used only once within a document. If more than one element has been assigned the same ID, queries that use that ID will only select the first matched element in the DOM.
You're using the same ID for the text box in each row. Try generating a unique ID for each row. You may also want to assign a class to the text box and use a class selector to select them all.
Do you have multiple rows with the same ID? This will cause problems like what you have described. You need to have unique id's.
精彩评论