Hi:
I have a grid that appears to work properly in ASP.net 3.5 and IE8. That means the grid will fill up the page and the pager control will appear at the bottom and there is a vertical scroll bar that will scroll the number of rows per page.
But when I upgraded to framework 4 and IE 9, the grid extends past the bottom of the browser and I have to enlarge the browser window to see the page control. In some cases only half the page control will appear without some type of manual refresh.
Are there issues with the Grid control and ASP.Net 4 and or IE9? Incidentally, I don't believe it is an IE9 problem because I get the same behaviour in FireFox and Opera.
Thanks
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RadAjaxManager1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="radGridSupportCategories" />
<telerik:AjaxUpdatedControl ControlID="radbtnSearch" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadGrid ID="radGridSupportCategories" runat="server" OnNeedDataSource="radGridSupportCategories_NeedDataSource"
AllowSorting="True" AllowPaging="True" AutoGenerateColumns="False" CellSpacing="0"
GridLines="None" OnDetailTableDataBind="radGridSupportCategories_DetailTableDataBind"
OnItemDataBound="radGridSupportCategories_ItemDataBound">
pls anyone has solution than tell me i am waiting
if (e.Item is GridDataItem) { GridDataItem gridItem = e.Item as GridDataItem; if (!rdgrdGeneralInfo.MasterTableView.GetColumn("ProductId").Display) { foreach (GridColumn column in rdgrdGeneralInfo.MasterTableView.RenderColumns) { if (column is GridBoundColumn) { if (column.UniqueName == "CatalogId") { gridItem[column.UniqueName].ToolTip = "ProductID: " + "XYZ"; } } } } } When I hide the 'ProductId' column through HeaderContextMenu of RadGrid the below client side event gets triggered:
function rdgrdGeneralInfo_OnColumnHiding(sender, args) { } protected void radListBoxStopes_ItemCreated(object source, RadListBoxItemEventArgs e)<br> {<br> string updatePanelID = this.Parent.Parent.FindControl("UpdatePanel1").UniqueID;<br> string parameters = e.Item.Index.ToString();<br> e.Item.Attributes.Add("ondblclick", "__doPostBack('" + updatePanelID + "', " + Tools.EncloseInSingleQuotes(parameters) + ");");<br> }<br>