I am working with the RadButton inside the User Control...
<telerik:RadButton ID="tbnCancel"
runat="server"
Text="Cancel"
OnClientClicked="CloseEditFormTodoList" >
</telerik:RadButton>
And I am Calling javascript Function for Closing User Control
function CloseEditFormTodoList(sender, eventArgs) {
var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
masterTable.cancelAll();
return false;
}
My User Control was Closed But the Page is postback.
How to avoid Postback?