There is a serious bug in the AJAX radgrid, when using a bound GridNumericColumn, where NumericType = "currency" to set the display format.
When the datasource has negative amounts, this will be displayed in the format "($1.22)", which is what is expected with a currency format. But, as soon as you try to edit this column, it opens the editor, and misinterprets this negative, and transforms the amount to positive. The currency format should be shown in non edit mode, but it should interpret this properly and display a number with a negative sign in edit mode. When edit has closed, the display should revert back to currency format.
This is a very serious issue with financial applications, such as those that deal with hundreds of million sof dollars in a corporate Profit And Loss, or Forecasting system.

Hi
I have a RadButton with ButtonType="LinkButton".
I want remove the link from Head Office by following code.
ASPX
<telerik:GridTemplateColumn HeaderText="Branch" HeaderStyle-Width="10%" DataType="System.String" UniqueName="Branch" DataField="Branch">
<ItemTemplate>
<telerik:RadButton ID="btnBranch" Width="100%" runat="server" Text='<%#Eval("Branch") %>' ButtonType="LinkButton" ToggleType="CustomToggle"
Font-Underline="true" BorderStyle="None" CommandName="ViewBranchDtls" CommandArgument='<%#Eval("Branch") %>'>
</telerik:RadButton>
<asp:HiddenField ID="hdBranch" runat="server" Value='<%#Eval("Branch") %>' />
</ItemTemplate>
</telerik:GridTemplateColumn>CS
protected void gvReport_ItemDataBound(object sender, GridItemEventArgs e) { try { if (e.Item is GridDataItem) { GridDataItem item = e.Item as GridDataItem; if ((item.FindControl("btnBranch") as RadButton).Text == "HEAD OFFICE" ) { (e.Item.FindControl("btnBranch") as RadButton).Style.Add("pointer-events", "none"); // here need to remove the underline } } } catch (Exception ex) { } finally { } }
sample Extracted HTML
<td>
<a id="ctl00_ContentPlaceHolder1_gvReport_ctl00_ctl12_btnBranch" class="RadButton RadButton_Default rbLinkButton" href="javascript:void(0)" style="display:inline-block;border-style:None;text-decoration:underline;width:100%;pointer-events:none;text-decoration:none;"><span class="rbText" style="text-decoration:underline;width:100%;padding-left:0;padding-right:0;text-align:center;">HEAD OFFICE</span><input id="ctl00_ContentPlaceHolder1_gvReport_ctl00_ctl12_btnBranch_ClientState" name="ctl00_ContentPlaceHolder1_gvReport_ctl00_ctl12_btnBranch_ClientState" type="hidden" autocomplete="off"></a>
<input type="hidden" name="ctl00$ContentPlaceHolder1$gvReport$ctl00$ctl12$hdBranch" id="ctl00_ContentPlaceHolder1_gvReport_ctl00_ctl12_hdBranch" value="HEAD OFFICE">
</td>I notice Telerik will auto generate SPAN with underline.
How to remove the underline?
Thanks.
fsloke
Is it possible to remove the the togglehandle text "Toggle" because it is indexed by GoogleBot, as in attached screenshot.
Thanks, Marc
I noticed in the RadMultiColumnComboBox that the cursor appears to be a text-insertion/editing cursor instead of an arrow. I'm using this to allow the user to select an item so the text cursor is unintuitive. Is there a way to set the style of the mouse cursor on this control?
<telerik:RadMultiColumnComboBox runat="server" ID="radMultiComboPhrases" DropDownWidth="200px" Height="400px" AutoPostBack="true" Placeholder="Select a phrase..." DataTextField="sBrief" DataValueField="sPhrase" RenderMode="Mobile">
<ColumnsCollection>
<telerik:MultiColumnComboBoxColumn Field="sBrief" Title="Brief Desc." Width="200px"></telerik:MultiColumnComboBoxColumn>
<telerik:MultiColumnComboBoxColumn Field="sPhrase" Title="Phrase" Width="200px"></telerik:MultiColumnComboBoxColumn>
</ColumnsCollection>
</telerik:RadMultiColumnComboBox>

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. |
|
Hi,
I just wanted to give you guys a BIG thumbs up for your work on the Gantt chart.
That one saves me really a lot of time to create a customer project system.
THANK YOU!
Marc
Hello,
I've got a RadHtmlChart where I am creating my ScatterSeries in the code and setting the colors for every series ( scatterSeries.MarkersAppearance.BorderColor) depending on values coming from the database. This is working fine and my scatter point colors are as I want them (red and green in my case), but my legend just always shows red and blue, no matter what. I expected to legend to just automatically pick up the colors I set for my chart. What can I do to fix this please?
Thanks
Hello,
I have a problem with RadScriptManager
I have an exisiting ASP.Net Web Forms web application.
There is Default.aspx and used Main.Master master page
I did the necessary to integrate Telerik UI Web correctly.
In the master page there is <asp:ScriptManager ID="ScriptManager...
and in the Default.aspx I added <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
and <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
and <telerik:RadWindowManager RenderMode="Lightweight"....
and <button onclick="openReqForm(); return false;">hello</button>
in code behind:
string fctOpenReqForm = "<script type=\"text/javascript\">function openWin {var oWnd = radopen(\"Request.aspx\", \"RadWindow1\"); } </script>";
Page.ClientScript.RegisterStartupScript(this.GetType(), "openReqForm", fctOpenReqForm);
When I execute I have an error message: "Only one instance of script manager can be added to the page...
I need to add a Telerik button and other telerik things to the page and use javascript methods...
Any help? thanks

Out of the box, "ApplyClass" applies a class and "FormatBlock" applies an element type. I want to do both at once.
For example: I want to be able to to make a red h2 by
I might even want to have an additional class for padding or something so I'd want to
I can set up my UI and get to the point where I have my element and list of classes, but can't get anything to work past that. Do I need to write it all by myself? I expected some build-in functionality to help with fundamental stuff like this

Hi,
Since the latest update I get error message [illegal characters in path] where I try to rename a file to a name which contains a space.
I am sure this was always allowed till now. Of course our CMS customers have thousands of assets containing spaces which cannot be renamed right now, so this is a very serious issue. Please see attached screenshots.
Marc