Click here to Skip to main content
15,891,871 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,

I have UltraWebGrid which I create dynamically, using DataBind and a helper class.
In the InitializeRow event, I generate ImageButtons in one of the columns.

Clearly, since it's ImageButton I need it to call a function.
normally, I set the function using Attribute.Add, and call a javascript:

C#
img.Attributes.Add("onclick", "DoSomething();");


But Some of the functions should be server side (since it supposed to call the business logic layer).
I know that if I have a code-behind OnClick function and I would like to add client-side command I could do something like that:

C#
this.btnSomething.Attributes.Add("onclick", "JavascriptFunction();" + this.Page.ClientScript.GetPostBackEventReference(btnSomething, "").ToString());


But it calls the code-behind function which is already attached to the buttons and just adds the Javascript function.

How can I call a code behind function which is not connected in any way to the imagebutton dynamically? (I currently use Attribute.Add, but if there's some other way to do that - I'd love to know)

Thanks.
Posted

1 solution

Try use ".OnClientClick" instead of ".Attributes.Add"
C#
ImageButton1.OnClientClick = "javascript:alert('Some JS Stuffs Here');";
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900