hi,
I have asp.net LinkButton, where it has been configured with RadAjaxManager to update asp.net panel.
now I wanna after the update done (the content of that panel changed) I need to call a javascript function, because in this new content, there is div which making a type of sliding effect, but it will not start the effect unless the javascript function is called, so I need to call that javascript function once the update of asp.net panel is done.
I tried to add "OnClientClick" property to LinkButton, but that does not working, and even it did not triggered!
and I have tried to create another panel and in ajax calling, I tried to fill it with a Literal control, where this literal:
Literal l = new Literal();
l.Text = "<script type='text/javascript'>coda_side_it();</script>";
but this is not working, and moreover, I tried to Response.Write("<script type='text/javascript'>coda_side_it();</script>"); but that makes a big problem with ajax!!
so please any help?
I have asp.net LinkButton, where it has been configured with RadAjaxManager to update asp.net panel.
now I wanna after the update done (the content of that panel changed) I need to call a javascript function, because in this new content, there is div which making a type of sliding effect, but it will not start the effect unless the javascript function is called, so I need to call that javascript function once the update of asp.net panel is done.
I tried to add "OnClientClick" property to LinkButton, but that does not working, and even it did not triggered!
and I have tried to create another panel and in ajax calling, I tried to fill it with a Literal control, where this literal:
Literal l = new Literal();
l.Text = "<script type='text/javascript'>cod
but this is not working, and moreover, I tried to Response.Write("<script type='text/javascript'>cod
so please any help?