I have an issue where I have a popup window (windowmanager has height/width that are explicit, is a modal).
This popup contains a html table. One tr is 20% wide, other is 80%.
I have a grid in the 20% wide side (left side) and in IE and Chrome it is fine, but in firefox, the .rgDataDiv class is injecting a height of 10px. In IE and Chrome, the value gets calculated fine.
No ajax. Any ideas?
Changing AllowScroll="true" to "false" fixes the issue but I want the autoscroll to be true.
<table style="width: 100%; height: 88vh; border-spacing: 0; border-collapse: collapse; border: 0"> <tr> <td width="20%"> <RadGrid ID="PayrollProcessSummaryGrid" runat="server" GridLines="None" Height="100%" AutoAssignModifyProperties="true"> <ClientSettings AllowColumnsReorder="false" ReorderColumnsOnClient="false"> <Scrolling AllowScroll="true" UseStaticHeaders="true" /> <Selecting AllowRowSelect="true" /> <ClientEvents OnRowClick="onRowClick" OnGridCreated="onGridCreated" OnCommand="onCommand" /> </ClientSettings> <MasterTableView AutoGenerateColumns="false" CommandItemDisplay="Top" AllowSorting="false"> <CommandItemTemplate></CommandItemTemplate> <Columns> <wasp:GridDateTimeControl DataField="field1" LabelText="*field1*" SortExpression="field1" niqueName="field1" /> <wasp:GridDateTimeControl DataField="field2" LabelText="*field2*" SortExpression="field2" niqueName="field2" /> </Columns> </MasterTableView> </RadGrid> </td> <td width="80%"> <telerik:RadSplitter ID="RadSplitter" runat="server" Orientation="Horizontal" Height="100%" Width="100%" VisibleDuringInit="false" OnClientLoad="onClientLoad" BorderSize="0"> <telerik:RadPane ID="RadPane" runat="server" Width="100%" /> </telerik:RadSplitter> </td> </tr></table><telerik:RadComboBox AutoPostBack="true" ID="txtGelPackProdCode" runat="server" EnableLoadOnDemand="true" ShowMoreResultsBox="true" EnableVirtualScrolling="true" EmptyMessage="Enter here..." onselectedindexchanged="txtGelPackProdCode_SelectedIndexChanged"><WebServiceSettings Path="MasterFormulaWebService.svc" Method="LoadProductData" /></telerik:RadComboBox>public RadComboBoxData LoadProductData(RadComboBoxContext context) { string text = context.Text.Trim() + '%'; DataTable data = ProductDAO.ViewData2(text, "RadCombo"); List<RadComboBoxItemData> result = new List<RadComboBoxItemData>(context.NumberOfItems); RadComboBoxData comboData = new RadComboBoxData(); try { int itemsPerRequest = 10; int itemOffset = context.NumberOfItems; int endOffset = itemOffset + itemsPerRequest; if (endOffset > data.Rows.Count) { endOffset = data.Rows.Count; } if (endOffset == data.Rows.Count) { comboData.EndOfItems = true; } else { comboData.EndOfItems = false; } result = new List<RadComboBoxItemData>(endOffset - itemOffset); for (int i = itemOffset; i < endOffset; i++) { RadComboBoxItemData itemData = new RadComboBoxItemData(); itemData.Text = data.Rows[i]["prod_code"].ToString().Trim(); itemData.Value = data.Rows[i]["name"].ToString().Trim(); result.Add(itemData); } if (data.Rows.Count > 0) { comboData.Message = String.Format("Items <b>1</b>-<b>{0}</b> out of <b>{1}</b>", endOffset.ToString(), data.Rows.Count.ToString()); } else { comboData.Message = "No matches"; } } catch (Exception e) { comboData.Message = e.Message; } comboData.Items = result.ToArray(); return comboData; }<system.serviceModel> <behaviors> <endpointBehaviors> <behavior name="Reena.Master.MasterFormulaWebServiceAspNetAjaxBehavior"> <enableWebScript /> </behavior> </endpointBehaviors> </behaviors> <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" /> <services> <service name="Reena.Master.MasterFormulaWebService"> <endpoint address="" behaviorConfiguration="Reena.Master.MasterFormulaWebServiceAspNetAjaxBehavior" binding="webHttpBinding" contract="Reena.Master.MasterFormulaWebService" /> </service> </services> <bindings> <webHttpBinding> <binding name="webBinding"> <security mode="None"> </security> </binding> </webHttpBinding> </bindings> </system.serviceModel>I am showing a RadTreeView on my page and it has a context menu associated with each node. When you right click on any node, an option is displayed called "Export". This export will run a stored procedure and bring data from the database. I want to export this date to a .txt file. This is enforced by my business requirements so exporting it to Excel or PDF is not an option!! I also need to be able to prompt the user for location of where they want to save this file and what they want to name it. Does telerik have any controls that will help me accomplish these tasks? I have looked into the ClientExportManager and the export functionalities of the RadGrid and TreeList, but nothing exports data to text file that I can see.
thanks
doug

Hello.
We have a Radmenu that uses a Sitemap data source, and we have the menu set up with a OnClientMouseOut function that shows a overlay to mask a section of the page. However, when the mouse goes over separators, the overlay is hidden, and then pops up again once it goes over a menu item, it's like it does not count separators as being part of the menu. Is there a way to prevent this from happening?
Thanks,
Marco
