GetRadWindow().BrowserWindow.refreshGrid(args);GetRadWindow().close();function refreshGrid(arg) { //var btnName = $get("<%=btn.ClientID%>").name; //__doPostBack(btnName, ""); // Above Two Lines code works fine. But the whole page Postback is called. i need only refresh perticular ListView to Rebind. var ajaxManager = $find("<%= RadAjaxManager1.ClientID %>"); ajaxManager.ajaxRequest('Refresh'); }protected void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e){ if (e.Argument.ToString() == "Refresh") { lstvTask.Rebind(); }}
jQuery('li.rtLI div > span:eq(2)').live('click', function () { //xyz});jQuery('li.rtLI div > span.rtPlus').live('click', function () { //xyz});<script language='JavaScript'> function f(){var oWnd=radalert('The record is successfully saved!',300,100,'RecordSaved',null);oWnd.add_close(function () {returnToParent();});Sys.Application.remove_load(f);}; Sys.Application.add_load(f); </script>if(d&&d.tagName.toLowerCase()!="body")
We are using RadListView (and RadDataPager) to list records of data. Each record that we display has a checkbox for the user to select the record(s) (to perform some action on it, like edit or delete, which we handle.)
My questions is, in the RadListView control (or RadDataPager), is there a way to "persist" the checkboxes' values across pages, as the user goes from one page of records to another?
<
telerik:RadWindow runat="server" Width="300px"
Left="300px" Top="300px" ID="RadWindow_NavigateUrl" NavigateUrl="Sample.aspx"
Modal="true" InitialBehaviors="Maximize" RestrictionZoneID="NavigateUrlZone">
</telerik:RadWindow>
i call this from java script
function
RadCheckinSamp_ClientClicked(sender, eventArgs) {
$find(
'ctl00_ContentPlaceHolder1_RadWindow_NavigateUrl').show();
}
my output screen comes like this
give the solution pls
