Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
150
calling javascript function not working
posted

Hi

I've a project which is using infragistics 10.3 and the aspx page has a grid. on cell value change I would like to call javascript function which is in sepreate file.

see the code below.

// script manager

<ig:WebScriptManager ID="WebScriptManager1" runat="server">
</ig:WebScriptManager>

// Update cell event.

protected void grdMainSummary_RowUpdating(object sender, Infragistics.Web.UI.GridControls.RowUpdatingEventArgs e){}

I am using below code to call javascript function from code behind , it work fine when I called it from onload event but not working on "grdMainSummary_RowUpdating" event.

 ScriptManager.RegisterStartupScript(this, this.GetType(), "ShowStatus", "MyFunction();", true);

Regards

Parents Reply Children