Hi,
I want to change the width of pivot grid column programmatically. Please check the ached file for more details.
Thanks,
Sagar Jaunjalkar


Dear Gurus,
Your urgent support is required my IIS application is caching on production server.
Please reply urgently.
Please do let me know which logs you need to analysis.
I got report from Fiddler but i am unable to read it as i am totally new to Fiddler.
Thanks
Malik Adeel Imtiaz
Hey..
We are using you Radeditor in our application with localization. But we see that the tab headings of style builder are not localized. I am attaching the screen shot.We need these things to be localized. Please help me how to proceed.
Thanks
Hello Telerik,
I have been trying to add mobile support for your RadNumericTextBox Control. What I mean by that is when a user using a smartphone focuses on the control, a keyboard with only numbers will appear. This is easily achieved by changing the type of input from "text" to "tel". I also have js code to validate that the control has a valid value. I decided that I would use a WebControlAdapter to change the type.
Here is that code:
01.using System;02.using System.IO;03.using System.Web.UI.Adapters;04.using System.Web.UI.WebControls;05.using System.Web.UI;06.using System.Web.UI.WebControls.Adapters;07.using System.Reflection;08.using Telerik.Web.UI;09. 10.namespace LogicData.ControlAdapters11.{12. public class RadNumericTextBoxAdapter : WebControlAdapter13. {14. protected override void RenderContents(HtmlTextWriter writer)15. {16. HtmlTextWriter w = new HtmlTextWriter(new StringWriter());17. 18. base.RenderContents(w);19. 20. writer.Write(w.InnerWriter.ToString()21. .Replace("type=\"text\"", "type=\"tel\""));22. }23. }24.}And here is the browser file:
1.<browsers>2. <browser refID="Default">3. <controlAdapters>4. <adapter controlType="Telerik.Web.UI.RadNumericTextBox"5. adapterType="LogicData.ControlAdapters.RadNumericTextBoxAdapter" />6. </controlAdapters>7. </browser>8.</browsers>
Super simple nothing complicated about it and works perfectly:
HTML Output:
1.<input id="long_id" name="long_name" class="riTextBox riEnabled" onblur="big_function" type="tel">(I simplified the some of it to make it easier to read)
However, my validation no longer worked. I inspected this and I found that the Telerik JS function $find() is no longer finding the control. (See js_output.png) When I compare the DOM Element of the changed control to the original I notice there are a few attributes missing. (See control_original.png and control_modified.png) From what I can tell the browser (Chrome in this case) isn't recognizing it as a "RadNumericTextBox" control anymore. I tried having the WebControlAdapter with nothing in it except an empty constructor and it still removed these attributes.
So after all of this explanation and assuming, what I would like to know is:
1. Why is the WebControlAdapter causing this?
2. Is the missing attributes the reason the $find() function is returning null for my control?
Thank you,
-Chris
Hello there,
I'm having some issues to get my RadAjaxManager AjaxRequest work in my project. Below is my source code.
01.<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" OnAjaxRequest="RadAjaxManager1_AjaxRequest">02. <AjaxSettings>03. <telerik:AjaxSetting AjaxControlID="RadComboBox1">04. <UpdatedControls>05. <telerik:AjaxUpdatedControl ControlID="RadComboBox2" LoadingPanelID="RadAjaxLoadingPanel1" />06. <telerik:AjaxUpdatedControl ControlID="RadComboBox3" LoadingPanelID="RadAjaxLoadingPanel1" />07. <telerik:AjaxUpdatedControl ControlID="RadComboBox4" LoadingPanelID="RadAjaxLoadingPanel1" />08. </UpdatedControls>09. </telerik:AjaxSetting>10. <telerik:AjaxSetting AjaxControlID="RadComboBox2">11. <UpdatedControls>12. <telerik:AjaxUpdatedControl ControlID="RadComboBox4" LoadingPanelID="RadAjaxLoadingPanel1" />13. </UpdatedControls>14. </telerik:AjaxSetting>15. </AjaxSettings>16.</telerik:RadAjaxManager>17.<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Height="75px"18. Width="75px" >19. <img alt="Loading..." src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading.gif") %>'20. style="border: 0;" />21.</telerik:RadAjaxLoadingPanel>
1.<telerik:RadComboBox RenderMode="Classic" ID="RadComboBox1" runat="server" CheckBoxes="true"2. EnableCheckAllItemsCheckBox="true" DataTextField="name" DataValueField="id" AutoPostBack="true"3. OnClientDropDownClosed="ClientCollapsedComboBox">4.</telerik:RadComboBox>
1.<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">2. <script type="text/javascript">3. function ClientCollapsedComboBox(sender, eventArgs) {4. var ajaxManager = $find("<%= RadAjaxManager1.ClientID %>");5. ajaxManager.ajaxRequest();6. }7. </script>8.</telerik:RadCodeBlock>
1.protected void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e)2.{3. RadComboBox4.Items.Clear();4. RadComboBox4.DataBind();5. // doing some work here6.}
On closing dropdown the event is correctly fired. So, here come my questions :
If there is anything unclear with my questions or anything else, please tell me and I'll try to develop.
Regards,
Hi,
I am using RadNotifications to display success/fail messages for user induced database updates. Is it possible to use RadNotifications when an event occurs in the server due to some timer actions. For e.g., I am checking for inserts and updates in a database table for every 5 minutes and displaying the count in a label. I want to push notify the user on any DB updates in this timer event. Is that possible ?