function RefreshAfterMatch() { var matchMasterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView(); var pdMasterTable = $find("<%= perDiemBookingsRadGrid.ClientID %>").get_masterTableView(); matchMasterTable.rebind(); pdMasterTable.rebind(); }Hi,
I am upgrading 2008 Q3 version of telerik control to 2011 Q3 version in my project in .NET 4.0. I have an issue with the RadAjaxxLoadingPanel in the latest version where it used to work fine with 2008 version.
I have a RadComboBox outside of the RadAjaxPanel which refreshes the grid based on the dropdown selection. When Items selection is changed in the dropdown it will make a Ajax postback to refresh the grid. while the grid is getting refreshed the AjaxLoading panel shows the back color of gray with some transparency set. The grid will not be accessible during the refresh. The gray color disappeared itself and grid became accessible again, once the Ajax is complete in the 2008 Q3 version. But, with 2011 Q3 version the gray color won’t disappear and the grid is inaccessible even after the post back is complete.
Here is the code: Please let me know what needs to be done to get the same behavior in the latest version? Thanks in Advance!!!
<telerik:RadAjaxPanel ID="ajaxPanel" EnableAJAX ="true" EnableOutsideScripts="false"
EnablePageHeadUpdate="false" runat="server" LoadingPanelID="ajaxLoadingImage" EnableViewState="false"
EnableEmbeddedScripts ="false" EnableHistory="false" EnableTheming="false"
ClientEvents-OnRequestStart="RequestStart" ClientEvents-OnResponseEnd="RequestEnd" >
<telerik:RadAjaxLoadingPanel ID="ajaxLoadingImage" EnableViewState="false" runat="server" BackColor="Gray" Transparency="90"
</telerik:RadAjaxLoadingPanel>
<div id="DataGrid">
<telerik:RadGrid id="grid" runat="server" AutoGenerateColumns="false"
GridLines="None" Skin="" EnableEmbeddedSkins="true" EnableViewState="false"
EnableAJAXLoadingTemplate="true" LoadingTemplateTransparency="100"
EnableAJAX="true" AllowSorting="true" OnItemCreated="grid_ItemCreated"
OnItemDataBound="grid_ItemDataBound"
OnSortCommand="grid_SortCommand"
AllowAutomaticDeletes="false" AllowAutomaticInserts="false"
AllowAutomaticUpdates="true" AllowCustomPaging="false"
AllowFilteringByColumn="false" AllowMultiRowEdit="false"
AllowMultiRowSelection="false" AllowPaging="false">
<ClientSettings EnablePostBackOnRowClick = "false"
AllowColumnHide="false" AllowColumnsReorder="false" AllowDragToGroup="false" AllowExpandCollapse="false"
AllowKeyboardNavigation="false" AllowGroupExpandCollapse="false" AllowRowHide="false"
AllowRowsDragDrop="false">
<Selecting AllowRowSelect="false" EnableDragToSelectRows="false" />
<ClientEvents OnGridCreated="GridCreated"></ClientEvents>
</ClientSettings>
<MasterTableView AllowCustomSorting="true" DataKeyNames="status" AllowNaturalSort="false"
CssClass="ltable" Width="100%" AllowAutomaticDeletes="false" AllowAutomaticInserts="false"
AllowAutomaticUpdates="false" AllowCustomPaging="false" AllowFilteringByColumn="false"
AllowPaging="false">
<Columns>
...
</Columns>
</MasterTableView>
</telerik:RadGrid>
</div>
</telerik:RadAjaxPanel>
<telerik:RadComboBox ID="rcb_Users" Runat="server" AutoPostBack="True"DataSourceID="sds_UserList" DataTextField="UserName"DataValueField="UserName" EmptyMessage="Select User" Height="150px"Skin="WebBlue" EnableAutomaticLoadOnDemand="True" EnableVirtualScrolling="True"ItemsPerRequest="10" ShowMoreResultsBox="True"></telerik:RadComboBox>Hello all
if i put this code into the head section of my master page,
items are 10 pix height as expected, but only on vstudio2008 webdevserver, not on production server (w2k3).
<style type="text/css">
.RadListBox span.rlbText { padding:0; line-height:10px; }
</style>
the only differences in ie8 sourcetext compare are things like this: <link href="/WebResource.axd?d=Xv_vuQIqd...blabla
Maybe there is a better way to set the line height of my listbox items, the default height is much too big for my taste.
i am a bit lost...
Any ideas?