Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
83 views

Hello,

If there is css class applied to link from Hyperlink Manager and try to remove link from text, link is not removed. When you remove css class from link and then try to remove link from text, it will remove link properly.

Steps to reproduce issue:

1. Give link to any text using Hyperlink Manager and also apply any css class.
2. Try to remove link from text using Unlink command. Link will ot be removed.
3. Now first remove class from text to which link is given and then remove link from text, it will be removed properly.

Can you please provide a solution to this issue ?

Thanks,
Khushboo

Ianko
Telerik team
 answered on 26 Aug 2015
6 answers
676 views
Hi,

I'm trying to remove styles on RadButton as said in this topic: http://www.telerik.com/forums/remove-styles-radlinkbutton
However, this doesn't work at all, I keep getting default style on IE 8 or Firefox (by removing class with firebug or IE dev toolbar, I get the good result).

Here is my code:
<telerik:RadButton ID="RadButtonValidate" runat="server" Text="Valider" ButtonType="StandardButton" EnableEmbeddedSkins="false" EnableEmbeddedBaseStylesheet="false" EnableBrowserButtonStyle="false" EnableTheming="false" EnableAjaxSkinRendering="false" />


I use Telerik ASP.NET version 2014.1.225.45.
Can you help me ?
Danail Vasilev
Telerik team
 answered on 26 Aug 2015
4 answers
90 views
Is it possible to combine filtering and web service binding within the same Rad Drop Down Tree control?

Thanks in advance for your answer,

Giorgos
Peter Filipov
Telerik team
 answered on 26 Aug 2015
3 answers
223 views

Hello,

        One of our large customers is currently using MS office word to document information. As they plan to migrate to MOSS 2007, the customers expect to have some functionality available in MS Word. One such requirement is that of hierarchical numbering e.g.


1.
       Demo text

1.1.    Demo text

1.1.1. Demo text

2.       Demo text

3.       Demo text

3.1.    Demo text

3.2.    Demo text

Rich textbox editor available OOB with MOSS 2007 doesn’t support hierarchical numbering or bullets. I evaluated telerik editor but was unable to achieve this requirement. Can you please tell me if telerik plans to implement this functionality? or if it is already implemented, then how to use it.

Thanks,
Swaminathan B

Ianko
Telerik team
 answered on 26 Aug 2015
1 answer
60 views
Hello,  I was looking your scheduler sample for wok with resources and my question is fi I can place the resourses on the left of the and place the dates in vertical view.
Hristo Valyavicharski
Telerik team
 answered on 26 Aug 2015
1 answer
80 views

I have a grid which contains a column with DataFormatString="{0:0.00%}"...

 All looks great in the grid, but when I export to Excel I see the 1.00 instead of 100% and 0.25 instead of 25%.

Is there a way to transfer the formatting to the Excel file?

Kostadin
Telerik team
 answered on 26 Aug 2015
2 answers
43 views

Hello,

P tag is created with style applied to P tag above it on each enter.

I have attached image for better understanding of the issue.

Can you please provide a solution to this issue ?

Thanks,
Khushboo

Khushboo
Top achievements
Rank 1
 answered on 26 Aug 2015
0 answers
53 views
Where can I download  version 2014.1.403.40 of UI for ASP.NET AJAX?
Paul
Top achievements
Rank 1
 asked on 25 Aug 2015
8 answers
172 views

This is a simple issue but not sure what I am doing wrong , this piece of code opens a radwindow but doesnt hit the details.aspx

 <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="RadGrid1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadGrid1"></telerik:AjaxUpdatedControl>
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>           
    </telerik:RadAjaxManager>

       <telerik:RadGrid ID="RadGrid1" runat="server" Skin="Office2010Silver" AllowPaging="True" AllowSorting="True" AllowFilteringByColumn="True" PageSize="25" OnItemCommand="RadGrid1_ItemCommand">
         <PagerStyle Mode="NumericPages" AlwaysVisible="true"></PagerStyle>
         <MasterTableView >

      <Columns>
        <telerik:GridTemplateColumn UniqueName="TemplateColumn">
            <ItemTemplate>                
                <span> <asp:ImageButton ID="NotifyAgain" ImageUrl="~/Images/details.png"  CommandName="details" runat = "server" /> </span>              
                            
            </ItemTemplate>
        </telerik:GridTemplateColumn>
      </Columns>
    </MasterTableView>
         <HeaderStyle Width="10px" />
         <ClientSettings EnableRowHoverStyle="true">
              <Resizing AllowColumnResize="true" ResizeGridOnColumnResize="true" AllowResizeToFit="true" />
            </ClientSettings>
     </telerik:RadGrid>

        
        <telerik:RadWindow ID="RadWindow1" Modal="true"  Skin="MetroTouch" runat="server" Width="800px" Height="800px" Title="Details" CssClass="override" >
  
</telerik:RadWindow>

  protected void Page_Load(object sender, EventArgs e)
              
        {       
            if (!Page.IsPostBack)
            {
                RadGrid1.DataSource = GetDataTable();
                RadGrid1.DataBind();

            }
        }


  protected void RadGrid1_ItemCommand(object source, GridCommandEventArgs e)
        {
            GridDataItem item = (GridDataItem)e.Item;
            string value = item["FileName"].Text;

            switch (e.CommandName)
            {
                case "details": Details(value);
                    break;
            }
        }

        private void Details(string fileName)
        {

            string fullPath = ConfigurationManager.AppSettings["path"] + fileName;     

             RadWindow1.NavigateUrl = "details.aspx?name=" + fileName; 

             string script = "function f(){$find(\"" + RadWindow1.ClientID + "\").show(); Sys.Application.remove_load(f);}Sys.Application.add_load(f);";
            ScriptManager.RegisterStartupScript(Page, Page.GetType(), "key", script, true);
          
        }
             â€‹

binny
Top achievements
Rank 1
 answered on 25 Aug 2015
4 answers
280 views
I've boiled this down to a very simple scenario, so it's probably me misunderstanding the intended usage. I see the problem on the following setup:
Dev environment: VS2008 on Vista Business / running application locally on "Cassini"
RadControls: ASP.NET Ajax v. 2.2.7
Browsers: IE8 and Fx 3.0.5

I have a RadDatePicker inside an UpdatePanel. After a partial postback, the calendar popup no longer works. This is part of a large application, but the problem occurs with just the following ASPX code (no modifications to the code file):

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Cal-Text.aspx.cs" Inherits="Cal_Text" %> 
<%@ Register TagPrefix="Rad" Namespace="Telerik.WebControls" Assembly="RadInput.Net2" %> 
<%@ Register TagPrefix="Rad" Namespace="Telerik.WebControls" Assembly="RadCalendar.Net2" %> 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
 
<html xmlns="http://www.w3.org/1999/xhtml"
<head runat="server"
    <title>Untitled Page</title> 
</head> 
<body> 
    <form id="form1" runat="server"
    <div> 
    <asp:ScriptManager ID="uxScriptMan" runat="server" /> 
    <asp:UpdatePanel ID="uxAdditionalChildPanel" UpdateMode="Conditional" runat="server"
        <ContentTemplate> 
            <Rad:RadDatePicker ID="uxDate" runat="server" /> 
            <asp:Button ID="uxSubmit" runat='server' UseSubmitBehavior="true" Text="Submit" /> 
        </ContentTemplate> 
    </asp:UpdatePanel> 
    </div> 
    </form> 
</body> 
</html> 
 

That's really all there is to it. Any pointers would be appreciated.

Thanks,
WarrenM
Pavlina
Telerik team
 answered on 25 Aug 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?