Hi,
I am having a requirement that i have to call a javascript when an item is re ordered in Ajax re order list.
have tried the below mentioned ways but nothing seems to work out for me any help on this will be appreciated.
on item reorder even i am calling the javascript in the below mentioned ways.
Response.Write("/<script language='javascript'>alert('Hi');</script>"); and
ScriptManager.RegisterStartupScript(this.Page, Page.GetType(), "TestScript","test();",true);
and my test function contains the following script.
<scripttype="text/javascript"language="javascript">
function test() {
alert('HI');
}
</script>