Click here to Skip to main content
15,892,005 members

Comments by Member 10728605 (Top 5 by date)

Member 10728605 7-Apr-14 0:52am View    
Sorry, I don't know what I'm missing in my code. I do have hide and visible function to set the text boxes. But not working.
Member 10728605 7-Apr-14 0:31am View    
I do have it in my code, but text boxes are not visible when I click the Edit button.
function ShowEdit(par) {
$("#divBDate-" + par).attr("class", "hide");
}
function SaveEdit(par) {
$("#divBDate-" + par).attr("class", "visible");
}
Member 10728605 6-Apr-14 23:44pm View    
Yes, the problem is I don't know how to use DOM object wrapper from a selector. Just started to use JQuery.
Nga
Member 10728605 6-Apr-14 23:24pm View    
Sergey, Thanks for the Reply.
I couldn't get from the reference :-(
If you can, please help me with my code.
Thanks.
Member 10728605 6-Apr-14 23:20pm View    
RyanDev, Thanks for the reply.
your code works. But the purpose is when I click the Edit button, button save needs to be displayed and also the text boxes also needs to be visible.
Also if you see my code I do have btnEdit and btnSave which works fine. It means when I click the button edit, button save is visible. All I need is when click the Edit button, text boxes needs to visible along with Save button.
Please help me if you can. Thanks again.