
<telerik:RadGrid ID="UserGrid" runat="server" AllowSorting="true" AllowPaging="true" AllowCustomPaging="true" AllowMultiRowSelection="true" OnItemDataBound="Grid_ItemDataBound" OnSortCommand="Grid_Sorting" OnPageIndexChanged="Grid_Paging" OnDeleteCommand="Grid_Deleting" OnItemCommand="Grid_ItemCommand" Skin="Windows7" meta:resourcekey="UserGrid"> <MasterTableView AutoGenerateColumns="False" EnableNoRecordsTemplate="true" ShowHeadersWhenNoRecords="false" DataKeyNames="UserID,EmailAddress" NoMasterRecordsText="No records match the search criteria."> <Columns> <telerik:GridClientSelectColumn UniqueName="ClientSelectColumn" ItemStyle-Width="20px"/> </Columns> </MasterTableView> <ClientSettings EnableRowHoverStyle="false"> <Selecting AllowRowSelect="True" EnableDragToSelectRows="true"></Selecting> </ClientSettings> <PagerStyle Mode="NumericPages" /> </telerik:RadGrid>
<
script type="text/javascript">
function
myOnClientFileSelect(radUpload, eventArgs)
{
var img = document.getElementById('<%= Image1.ClientID %>');
img.src=eventArgs.FileInputField.value;}
</
script>
<
asp:Image ID="Image1" runat="server" Height="112px" Style="z-index: 103; left: 472px;
position: absolute; top: 208px"
Width="136px" />
<
telerik:RadUpload ID="RadUpload1" runat="server" Style="z-index: 100; left: 112px;
position: absolute; top: 136px"
OnClientFileSelected="myOnClientFileSelect" AllowedFileExtensions=".bmp,.jpeg,.jpg,.gif" ControlObjectsVisibility="All" InitialFileInputsCount="2" MaxFileInputsCount="1000" MaxFileSize="100000000" TargetFolder="~/File" OnFileExists="RadUpload1_FileExists" />
<telerik:RadProgressArea ID="RadProgressArea1" runat="server" Style="z-index: 101;
left: 120px; position: absolute; top: 232px">
</telerik:RadProgressArea>
<telerik:RadProgressManager ID="RadProgressManager1" runat="server" Style="z-index: 102;
left: 104px; position: absolute; top: 184px"
/>
Thank you



notification.update();
notification.show();
when I want to show the Notification.
I want to clear the Notificaiton content each time the user clicks on the Notification Close button.
I've had a hard time getting it to clear on both the client and the server without side effects. I have it sort of working now, but the notification flashes on loading the page.
I'm sure there is a simple, clean way to do this, but I haven't been able to figure it out -- after spending a lot of time and searching both the Telerik website and using Google.
Thanks,
Donald
function Chart_Line_Count_SeriesClicked(sender,args)
{
if (args.get_seriesName() != "DaysL") $find("<%= RadAjaxManager1.ClientID %>").ajaxRequest(args.get_category());
}
Then through the RadAjaxManager1 configuration I associated the RadAjaxManager1 with the Chart_Line_Count Object.
Then in the code behind file:
Protected Sub RadAjaxManager1_AjaxRequest(sender As Object, e As AjaxRequestEventArgs) Handles RadAjaxManager1.AjaxRequest
'test to clear datasource and blank out the chart
Chart_Line_Count.DataSource = ""
Chart_Line_Count.DataSourceID = ""
End Sub
But it doesn't work. Can anyone tell me why? I see the AJAX circular spinning refresh thing fire, but nothing happens. Please let me know if you need any more information.