vote up 0 vote down star

In gridview's column i have a linkbutton and a label under it.

I want to hide/unhide label when linkbutton is clicked. I want to use javascript because i don't want any postbacks.

My java scripts function needs to receive the reference of label which corresponding to the linkbutton that was clicked. (then i will use document.getElementById(inputRef).style.display) to toggle the state.

How do I pass the needed label's reference to the javascript function?

Thanks

flag

1 Answer

vote up 0 vote down check

One way is to manage this in your grid's ItemDataBound event handler and pass the label's ClientID as a string paramater for that JavaScript call.

e.g. myLinkButton.attributes.Add("onclick","javascript:HidColumn('" + myLabel.ClientID + "');");

link|flag
you mean RowDataBound? – lupital Jun 20 at 19:26
Yes, sorry, it's RowDataBound. I was thinking of the DataGrid control when I mentioned ItemDataBound :-). Concept is all the same though... – deadbug Jun 20 at 19:50
I asked a follow up question, if you know the answer you are welcome to help again :) stackoverflow.com/questions/1022570/… – lupital Jun 20 at 21:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.