Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
127 views
I have a grid on my page and I want to handle both the OnRowClick and OnRowDblClick events on this grid.  When I try to implement both it only catches the OnRowClick event and not the OnRowDblClick event.  How do I make it so the OnRowClick event does not fire when I double click on a row?
Daniel
Telerik team
 answered on 09 Mar 2010
9 answers
146 views
dear Sir,

I build a comment module using telerik grid, and as you can find below i am using usercontrol inside web page which also inside mastter page, and everything goes fine, but the problem is that i can show the waiting panel onley once if i move from page 1 to page 2 and when i elect again page 1 the loading panel didnt appear !!!!

please i need you advice in this.

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="PostComments.ascx.cs" Inherits="AmazingWork.WebUserControls.PostComments" %> 
<%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %> 
 
 <div > 
  <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">  
        <AjaxSettings> 
            <telerik:AjaxSetting AjaxControlID="RadGrid_Comments">  
                <UpdatedControls> 
                    <telerik:AjaxUpdatedControl ControlID="RadGrid_Comments" LoadingPanelID="LoadingPanel_GetComments"/>  
                </UpdatedControls> 
            </telerik:AjaxSetting> 
        </AjaxSettings> 
    </telerik:RadAjaxManager> 
  <telerik:RadAjaxLoadingPanel runat="server" ID="LoadingPanel_GetComments">  
        <table  cellpadding="0" cellspacing="0" width="100%" height="100%">  
        <tr><td style="width:100%;height:100%" valign="middle" align="center">  
        <table height="100%"><tr> 
        <td align="center" valign="middle" style=" height:100%">  
        <asp:Image runat="server" ID="LoadingImage1" ImageUrl="~/Images/Loading/Loading.gif" AlternateText="Loading..." /> 
        </td><td style="width:4px"></td><td align="center" style="color:Gray" valign="middle">loading</td> 
        </tr></table>  
        </td> 
        </tr> 
        </table> 
</telerik:RadAjaxLoadingPanel> 
<telerik:RadGrid ID="RadGrid_Comments" runat="server" Skin="WebBlue" Width="100%"    
         GridLines="None" AllowPaging="True"   
        PageSize="5" DataSourceID="SqlDataSource_GetMusicComments" ShowHeader="False"   
         CellPadding="0"  BorderStyle="None" 
         
        > 
    <AlternatingItemStyle BackColor="White" /> 
    <ItemStyle BackColor="White" /> 
<PagerStyle Mode="NextPrevAndNumeric" /> 
 
            <MasterTableView TableLayout="Fixed" AllowNaturalSort="False"   
        AutoGenerateColumns="False" EnableTheming="True" > 
                <ItemTemplate> 
                <table width="100%" border="0" cellpadding="0" cellspacing="0"><tr ><td>  
                    <asp:Image ID="Image1" Style="float: left;" Width="50px" Height="50px" ImageUrl="~/Images/Company/Company-Logo.png" 
                        runat="server" AlternateText="Stock Image" /> 
                        </td> 
                    <td style="width:100%;vertical-align:top">  
                    <table border="0"  cellpadding="0" cellspacing="0"><tr><td valign=top style="vertical-align:top">  
                    <table   border="0" cellpadding="0" cellspacing="0" ><tr><td style="font-weight: bold; font-family: Arial Black;">Abed Allateef qaisi</td><td>( <%# Eval( "CreationDate" )%>  )</td></tr></table> 
                     
                        
                      </td></tr><tr><td>   <br /> <%# Eval("CommentBody") %>  </td></tr></table> 
                         
                          
                         
                        
                         
                         
                    </td> 
                     
                    </tr></table>  
                </ItemTemplate> 
             
 
 
             
<RowIndicatorColumn Visible="False">  
<HeaderStyle Width="20px"></HeaderStyle> 
</RowIndicatorColumn> 
 
<ExpandCollapseColumn Visible="False" Resizable="False">  
<HeaderStyle Width="20px"></HeaderStyle> 
</ExpandCollapseColumn> 
 
                <Columns> 
                    <telerik:GridBoundColumn DataField="CommentBody" HeaderText="CommentBody"   
                        SortExpression="CommentBody" UniqueName="CommentBody">  
                    </telerik:GridBoundColumn> 
                    <telerik:GridBoundColumn DataField="CreationDate" DataType="System.DateTime"   
                        HeaderText="CreationDate" SortExpression="CreationDate"   
                        UniqueName="CreationDate">  
                    </telerik:GridBoundColumn> 
                    <telerik:GridBoundColumn DataField="CommentRank" DataType="System.Int32"   
                        HeaderText="CommentRank" SortExpression="CommentRank" UniqueName="CommentRank">  
                    </telerik:GridBoundColumn> 
                </Columns> 
 
<EditFormSettings> 
<PopUpSettings ScrollBars="None"></PopUpSettings> 
</EditFormSettings> 
             
 
 
             
            </MasterTableView> 
 
 
 
 
 
 
    <ActiveItemStyle BackColor="White" /> 
 
 
 
 
 
 
    </telerik:RadGrid> 
   
 
      
    <asp:SqlDataSource ID="SqlDataSource_GetMusicComments" runat="server">   
     
</asp:SqlDataSource> 
   
 
      
     
    </div> 


thanks for your help.

 

 

 

Abed allateef Qaisi
Top achievements
Rank 1
 answered on 09 Mar 2010
2 answers
92 views
I have a RadGrid which uses a RadWindow to add/edit records exactly as the "Edit Dialog for RadGrid" demo does it on the Telerik site except that my RadWindow contains another RadGrid which uses the same principle for add/edit using a second RadWindow. Both RadWindows are modal - if that's relevant. The first grid rebinds when I add or edit records and hit "Insert" or "Update", but the second grid (the one that opens in a RadWindow), will not rebind using the same programming technique. Has anyone else tried to do this? Any help will be much appreciated as I've hit a brick wall with this.

Thanks.
Craig
Top achievements
Rank 1
Iron
 answered on 09 Mar 2010
3 answers
660 views
Hello,

I'm using the Default skin on the RadComboBox, but can't seem to set the borderstyle to none.
My goal is just to have the input area and the dropdown arrow without the border.

Please advise..

Thanks,
Quan
Simon
Telerik team
 answered on 09 Mar 2010
3 answers
267 views
I make a multi column combo box. if we type in that combobox then only matched values will return. So far so good but when i want to select some specific element on button click event by setting selectedvalue property then it does not show that value in the combo box. my html and c# code is given below:

<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
    </telerik:RadScriptManager>
    <telerik:RadComboBox ID="RadComboBox1" runat="server" Skin="Vista" Height="190px"  
        Width="420px" MarkFirstMatch="true" EnableLoadOnDemand="true"
        HighlightTemplatedItems="true" OnClientItemsRequested="UpdateItemCountField"
        OnDataBound="RadComboBox1_DataBound" OnItemDataBound="RadComboBox1_ItemDataBound"
        OnItemsRequested="RadComboBox1_ItemsRequested"
        ontextchanged="RadComboBox1_TextChanged" OnClientKeyPressing="HandkeKeyPress" >
         <HeaderTemplate>
            <ul>
                <li class="col1">Name</li>
                <li class="col2">Number</li>
                <%--<li class="col3">Title</li>--%>
            </ul>
        </HeaderTemplate>
        <ItemTemplate>
            <ul>
                <li class="col1">
                    <%# DataBinder.Eval(Container.DataItem, "Name") %></li>
                <li class="col2">
                    <%# DataBinder.Eval(Container.DataItem, "Number") %></li>
                <%--<li class="col3">
                    <%# DataBinder.Eval(Container.DataItem, "ContactTitle") %></li>--%>
            </ul>
        </ItemTemplate>
        <FooterTemplate>
            A total of
            <asp:Literal runat="server" ID="RadComboItemsCount" />
            items
        </FooterTemplate>
    </telerik:RadComboBox>

and c# code is:

 private DataTable table;
    protected void Page_Load(object sender, EventArgs e)
    {
       
        DoDataBind();
    }   

    public void DoDataBind()
    {
        DataTable dt = CreateData();       
        RadComboBox1.DataSource = dt.DefaultView;
        RadComboBox1.DataBind();

    }
    protected void RadComboBox1_DataBound(object sender, EventArgs e)
    {
    
        ((Literal)RadComboBox1.Footer.FindControl("RadComboItemsCount")).Text = Convert.ToString(RadComboBox1.Items.Count);
    }
    private DataTable CreateData()
    {
        table = new DataTable();
        table.Columns.Add("Name", typeof(string));
        table.Columns.Add("Number", typeof(int));
        table.Rows.Add(new object[] { "one", "1" });
        table.Rows.Add(new object[] { "two", "2" });
        table.Rows.Add(new object[] { "three", "3" });
        table.Rows.Add(new object[] { "four", "4" });
        table.Rows.Add(new object[] { "five", "5" });
        table.Rows.Add(new object[] { "six", "6" });
        return table;
    }
    protected void RadComboBox1_ItemsRequested(object sender, RadComboBoxItemsRequestedEventArgs e)
    {

        DataTable dt = new DataTable();
        dt.Columns.Add("Name", typeof(string));
        dt.Columns.Add("Number", typeof(int));
        DataRow[] foundRows;
        foundRows = table.Select("Name LIKE '" + e.Text + "%'");
        foreach (DataRow dr in foundRows)
        {

            dt.ImportRow(dr);
        }
        RadComboBox1.DataSource = dt;
        RadComboBox1.DataBind();
    }

    protected void RadComboBox1_ItemDataBound(object sender, RadComboBoxItemEventArgs e)
    {
        e.Item.Text = ((DataRowView)e.Item.DataItem)["Name"].ToString() + " (" +((DataRowView)e.Item.DataItem)["Number"].ToString() +")";
        e.Item.Value = ((DataRowView)e.Item.DataItem)["Number"].ToString();
    }
    protected void RadComboBox1_TextChanged(object sender, EventArgs e)
    {
       
    }
    protected void Button1_Click(object sender, EventArgs e)
    {
        RadComboBox1.SelectedValue = 2.ToString();
    }
Simon
Telerik team
 answered on 09 Mar 2010
5 answers
173 views
Hi
         I am using rad upload control. The upload control for using upload the excel file to database. It is working in Local visusal sudio application. when i configure the II7 ( Vista or Windows server 2008) . It is now working. i try to fixed this problem as below even though it is not working.

Anything differ configuratio for Vista and Windows Server 2008. for II7

Leave
I am using Visual Studio .Net 3.5 and Sql server 2008. Telerik Q3 2009 Telerik.

When i try to confgure below section RadUpoad.Net . how can i handl the .Net 3.5 Version.
and I tried Section B Eeven though  it is not working. let me knowow can i fixed this poblem


Section A:
<httpModules>
<add name="RadUploadModule" type="Telerik.WebControls.RadUploadHttpModule,RadUpload.Net2 />
</httpModules>
<httpHandlers>
<add verb="*" path="Telerik.RadUploadProgressHandler.aspx" type="Telerik.WebControls.RadUploadProgressHandler, RadUpload.Net2"></add>
</httpHandlers>

Section B:
Add the following to the Sytem.WebServer element

<modules>
<add name="RadUploadModule" type="Telerik.WebControls.RadUploadHttpModule, RadUpload.Net2" />
</modules>
<handlers>
<add name="TelerikRadProgress" preCondition="integratedMode" path="Telerik.RadUploadProgressHandler.aspx" verb="*" type="Telerik.WebControls.RadUploadProgressHandler, RadUpload.Net2" />
</handlers>

<validation validateIntegratedModeConfiguration="false" />
Let me anythig missing for this problem.

Thanks
G.Manikandan

Genady Sergeev
Telerik team
 answered on 09 Mar 2010
20 answers
228 views
Just go the the radcombobox demos with IE8, switch to compatibility view and you will see a line under the text area(most skins) and the drop down arrow (some skins). Seems not to happen at all for some skins. Use Vista skin and you'll see it.

Doesn't happen on IE6, IE7 or FF.

Mihir Pathak
Top achievements
Rank 1
 answered on 09 Mar 2010
4 answers
371 views
I have seen a similar issue and client side solution for clearing the Telerik date picker on this forum, but for a dynamically added date picker I can't see the solution. The scenario is the following:
I have a grid where in each row a date picker sits with a clear button to remove the selected date. The grid is built from scratch in code behind and thus the client side clear action script must know which date picker to clear for each grid row.
I ttried to build the script as a string and adding to each grid row as a literal:

dpExpiryDatePicker = new Telerik.WebControls.RadDatePicker();
dpExpiryDatePicker.ID = "dpExpiryDatePicker_" + nCount;
dpExpiryDatePicker.ToolTip = "Select the date";
dpExpiryDatePicker.Width = Unit.Pixel(90);
dpExpiryDatePicker.MinDate = DateTime.Now.Date.AddDays(1);


"<script>" +
"function ClearExpiryDate()" +
"{" +
"   var dpDatePicker = <%=" + dpExpiryDatePicker.ClientID+ "%>;" +
//    "var dpDatePicker = $find(\"<%=" + dpExpiryDatePicker.ClientID+ "%>\");" +
"alert(dpDatePicker);" +
"if(dpDatePicker != null)" +
"{" +
"   dpDatePicker.DateInput.Clear();" +
"}" +
"}" +
"</script>";

Can someone point out how to handle the clearing of each date picker added dynamically? Unfortunately the script above doesn't work, neither work the other commented out line. So how to achieve this?

Benjamin
Top achievements
Rank 1
 answered on 09 Mar 2010
4 answers
190 views
I have a menu which has parent, children and grandchildren levels.  If a child has children, then when that child is hovered, a right arrow image should appear on the right side of the child.  This works great in all browsers except IE6.  In IE6, the image doesn't appear at all.  I've enclosed my code below.  Any help would be greatly appreciated.  Thank you.

Here's the code in question:
.RadMenu_NavBlue .rmGroup .rmItem:hover .rmExpandRight 
    background:url(menu/bluearrow.gif) no-repeat rightright

And here's the entire stylesheet:
/* <RadMenu / Black> */ 
 
.RadMenu_NavBlue .rmRootGroup 
    height30px
 
.RadMenu_NavBlue .rmRootGroup .rmItem 
    height: 100%; 
    text-aligncenter
    width151px
 
.RadMenu_NavBlue .rmRootGroup .rmFirst 
    border-leftnone
 
.RadMenu_NavBlue .rmRootGroup .rmLast 
    border-rightnone
 
.RadMenu_NavBlue .rmRootGroup .rmLink 
    height30px
    -moz-box-sizing: content-box; 
    backgroundurl(Menu/grad_darkblue.PNG) repeat-x; 
    fontbold 12px Trade Gothic Condensed; 
    text-decorationnone
    color: White; 
    text-aligncenter
    text-transformuppercase
 
.RadMenu_NavBlue .rmRootGroup .rmLink:hover 
    background#00447D
    cursorpointer
 
.RadMenu_NavBlue .rmExpanded 
    background#00447D
 
.RadMenu_NavBlue .rmVertical 
    background-position: 0 -408px
 
/* <Root items> */ 
 
.RadMenu_NavBlue .rmItem 
    padding: 0; 
 
.RadMenu_NavBlue .rmLink:hover 
    cursorpointer
 
.RadMenu_NavBlue .rmLink, 
.RadMenu_NavBlue .rmText 
    background-repeatno-repeat
    background-position: 0 500px
    floatnone
    text-aligncenter
 
.RadMenu_NavBlue .rmLink:hover, 
.RadMenu_NavBlue .rmFocused, 
.RadMenu_NavBlue .rmSelected 
    background-position: 0 -72px
 
.RadMenu_NavBlue .rmExpanded, 
.RadMenu_NavBlue .rmExpanded:hover 
    background-position: 0 -72px
 
.RadMenu_NavBlue .rmExpanded .rmText, 
.RadMenu_NavBlue .rmExpanded:hover .rmText 
    background-position: 100% -96px
 
.RadMenu_NavBlue .rmLast .rmExpanded .rmText 
    background-position: 0 500px
    background-repeatno-repeat
 
.RadMenu_NavBlue .rmDisabled, 
.RadMenu_NavBlue .rmDisabled:hover 
    color#7d7d7d
    background-position: 0 500px
 
/* </Root items> */ 
 
 
/* <Submenu items> */ 
.RadMenu_NavBlue .rmGroup, 
.RadMenu_NavBlue .rmGroup .rmVertical 
    border1px solid white
    background#E8E8E8
    fontnormal Arial 10px !important; 
 
.RadMenu_NavBlue .rmVertical .rmItem 
    border-leftnone
    border-bottomsolid 1px white
    border-rightnone
    heightauto
    width: 100%; 
 
.RadMenu_NavBlue .rmGroup .rmFirst 
    border-topnone
 
.RadMenu_NavBlue .rmGroup .rmLast 
    border-bottomnone
 
.RadMenu_NavBlue .rmSlide .rmLink 
    padding2px 7px 2px 2px !important; 
    color#013368
    height: 100%; 
    width142px
    font-weightnormal
    font-familyArial
    font-size10px
    text-transformnone
 
.RadMenu_NavBlue .rmGroup .rmVertical .rmLink .rmText 
     
 
.RadMenu_NavBlue .rmGroup .rmLink:hover 
    backgroundwhite
 
.RadMenu_NavBlue .rmSlide .rmGroup .rmText 
    text-alignleft
 
.RadMenu_NavBlue .rmSlide .rmScrollWrap 
    background-imagenone
 
.RadMenu_NavBlue_rtl .rmGroup, 
.RadMenu_NavBlue_rtl .rmGroup .rmVertical 
    background-position: 100% 0; 
 
.RadMenu_NavBlue .rmRootGroup .rmHorizontal 
    background-imagenone
 
.RadMenu_NavBlue .rmScrollWrap .rmVertical 
    border: 0; 
 
.RadMenu_NavBlue .rmGroup .rmLink, 
.RadMenu_NavBlue .rmGroup .rmText, 
.RadMenu_NavBlue .rmGroup .rmItem .rmDisabled, 
.RadMenu_NavBlue .rmGroup .rmItem .rmDisabled:hover, 
.RadMenu_NavBlue .rmGroup .rmItem .rmDisabled .rmText, 
.RadMenu_NavBlue .rmGroup .rmItem .rmDisabled:hover .rmText 
    background-position: 0 500px
    background-repeatno-repeat
    background-colortransparent
 
.RadMenu_NavBlue .rmGroup .rmLink:hover, 
.RadMenu_NavBlue .rmGroup .rmFocused, 
.RadMenu_NavBlue .rmGroup .rmSelected, 
.RadMenu_NavBlue .rmGroup .rmExpanded 
    background-position: 0 -168px
 
 
 
.RadMenu_NavBlue .rmGroup .rmLink:hover .rmText, 
.RadMenu_NavBlue .rmGroup .rmFocused .rmText, 
.RadMenu_NavBlue .rmGroup .rmSelected .rmText, 
.RadMenu_NavBlue .rmGroup .rmExpanded .rmText 
    background-position: 100% -192px
 
/* <expand arrows> */ 
 
.RadMenu_NavBlue .rmGroup .rmExpandRight, 
.RadMenu_NavBlue .rmGroup .rmExpandDown, 
.RadMenu_NavBlue .rmGroup .rmItem .rmDisabled .rmExpandRight, 
.RadMenu_NavBlue .rmGroup .rmItem .rmDisabled .rmExpandDown, 
.RadMenu_NavBlue .rmGroup .rmItem .rmDisabled:hover .rmExpandRight, 
.RadMenu_NavBlue .rmGroup .rmItem .rmDisabled:hover .rmExpandDown 
    background-position: 100% -216px
 
.RadMenu_NavBlue .rmGroup .rmItem:hover .rmExpandRight 
    background:url(menu/bluearrow.gif) no-repeat rightright
 
.RadMenu_NavBlue .rmGroup .rmFocused .rmExpandRight, 
.RadMenu_NavBlue .rmGroup .rmSelected .rmExpandRight, 
.RadMenu_NavBlue .rmGroup .rmExpanded .rmExpandRight, 
.RadMenu_NavBlue .rmGroup .rmLink:hover .rmExpandDown, 
.RadMenu_NavBlue .rmGroup .rmFocused .rmExpandDown, 
.RadMenu_NavBlue .rmGroup .rmSelected .rmExpandDown, 
.RadMenu_NavBlue .rmGroup .rmExpanded .rmExpandDown 
    background-position: 100% -240px
 
.RadMenu_NavBlue .rmGroup .rmDisabled:hover .rmExpandRight, 
.RadMenu_NavBlue .rmGroup .rmDisabled:hover .rmExpandDown 
    background-imageurl('Menu/rmSprite.png'); 
    background-position: 100% -216px
 
/* </expand arrows> */ 
 
/* <rtl> */ 
 
.RadMenu_NavBlue_rtl .rmVertical .rmExpanded .rmText, 
.RadMenu_NavBlue_rtl .rmVertical .rmExpanded:hover .rmText 
    background-position: 0 500px
    background-repeatno-repeat
 
.RadMenu_NavBlue_rtl .rmGroup .rmLink:hover, 
.RadMenu_NavBlue_rtl .rmGroup .rmFocused, 
.RadMenu_NavBlue_rtl .rmGroup .rmSelected, 
.RadMenu_NavBlue_rtl .rmGroup .rmExpanded 
    background-position: 100% -264px
 
.RadMenu_NavBlue_rtl .rmGroup .rmLink:hover .rmText, 
.RadMenu_NavBlue_rtl .rmGroup .rmFocused .rmText, 
.RadMenu_NavBlue_rtl .rmGroup .rmSelected .rmText, 
.RadMenu_NavBlue_rtl .rmGroup .rmExpanded .rmText 
    background-position: 0 -288px
 
.RadMenu_NavBlue_rtl .rmGroup .rmExpandLeft 
    background-position: 0 -312px
 
.RadMenu_NavBlue_rtl .rmGroup .rmLink:hover .rmExpandLeft, 
.RadMenu_NavBlue_rtl .rmGroup .rmFocused .rmExpandLeft, 
.RadMenu_NavBlue_rtl .rmGroup .rmSelected .rmExpandLeft, 
.RadMenu_NavBlue_rtl .rmGroup .rmExpanded .rmExpandLeft 
    background-position: 0 -336px
 
/* </rtl> */ 
 
/* </Submenu items> */ 
 
/* <Submenu offsets (Black - specific, overlapping submenus)> */ 
 
.RadMenu_NavBlue .rmSlide 
    margin: 0 0 0 -1px
 
.RadMenu_NavBlue .rmVertical .rmSlide, 
.RadMenu_NavBlue .rmSlide .rmSlide, 
.RadMenu_NavBlue_Context .rmGroup .rmSlide 
    margin: 0 0 0 -5px
 
.RadMenu_NavBlue_rtl .rmSlide 
    margin: 0 0 0 0; 
 
.RadMenu_NavBlue_rtl .rmVertical .rmSlide, 
.RadMenu_NavBlue_rtl .rmSlide .rmSlide, 
.RadMenu_NavBlue_Context_rtl .rmGroup .rmSlide 
    margin: 0 0 0 5px
 
/* </Submenu offsets> */ 
 
/* <Scrolling arrows> */ 
 
.RadMenu_NavBlue .rmLeftArrow, 
.RadMenu_NavBlue .rmRightArrow 
    background-color#4f4f4f
 
.RadMenu_NavBlue .rmLeftArrow { background-position: -8px -312pxborder-right1px solid #828282; } 
.RadMenu_NavBlue .rmRightArrow { background-position: -482px -216pxborder-left1px solid #828282; } 
 
.RadMenu_NavBlue .rmTopArrow, 
.RadMenu_NavBlue .rmBottomArrow, 
.RadMenu_NavBlue .rmGroup .rmLeftArrow, 
.RadMenu_NavBlue .rmGroup .rmRightArrow 
    background-color#4f4f4f
 
.RadMenu_NavBlue .rmTopArrow { background-position: 50% -367pxborder-bottom1px solid #828282; } 
.RadMenu_NavBlue .rmBottomArrow { background-position: 50% -391pxborder-top1px solid #828282; } 
 
/* </Scrolling arrows> */ 
 
/* <Separators> */ 
 
.RadMenu_NavBlue .rmHorizontal .rmSeparator .rmText, 
.RadMenu_NavBlue .rmVertical .rmHorizontal .rmSeparator .rmText 
    height22px
    margin1px 0 0; 
    width1px
    background-color#000
 
.RadMenu_NavBlue_Context .rmSeparator .rmText, 
.RadMenu_NavBlue .rmHorizontal .rmGroup .rmSeparator .rmText, 
.RadMenu_NavBlue .rmVertical .rmHorizontal .rmGroup .rmSeparator .rmText 
    background-colortransparent
    background-position: 0 -406px
 
/* </Separators> */ 
 
/* </RadMenu / Black> */ 

Brad H
Top achievements
Rank 2
 answered on 09 Mar 2010
2 answers
79 views
Dear,

We want to insert a greece charakter Sigma (Σ) into the editor, we've used hexdecimal value of HTML 4.0: #x931; This displays the charakter we wants but when switching between HTML and DESIGN modes, the HTML code will be stripped and replaced with a normal charakter (Σ) in both modes. This will be stripped to a normal S or ? while saving the content to database. When i save the content from HTML mode, this will save the correct hexdemical HTML code.

We've tried to change the meta tag for Contenttype to ISO-8859-7 for greece charakters but this don't works. And also we've tried other hexdecimal HTML codes and other charsets. And also we've turned off the ConvertToXhtml filter.

It looks this will happens when switching from HTML mode to DESIGN mode.

Is this a bug or i'm doing something wrong?
We're using Telerik ASP.NET Q3 2009, this issue will also happen in older version Q3 2008.

Very much thanks,

Jelle de Boer
Software Development
Erick
Top achievements
Rank 2
 answered on 09 Mar 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?