Hi,
I'm using an ImageButton to traverse to other pages using a RadGrid. Here is the aspx code.
Anyone help me please.
Thank You,
Pradeep
I'm using an ImageButton to traverse to other pages using a RadGrid. Here is the aspx code.
<
asp:ImageButton ID="Button1" runat="server" ImageUrl="~/images/first.gif" OnClientClick="changePage('first'); return false;" CommandName="Page" CommandArgument="First" />
And the associated code in JavaScript is as follows:
function
changePage(argument)
{
tableView.page(argument);
}
But it the error "Microsoft JScript runtime error: Object doesn't support this property or method" at the JavaScript code.
Anyone help me please.
Thank You,
Pradeep