Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
61 views
Only with Internet Explorer 7, when I put my property RadEditor « ContentAreaMode =" Div " » as in the code below, the browser refuses to expand on my table from the cursor and / or my image. The only way I found to do is to resize from the corners of the top. From the bottom middle is my symbol prohibited.

<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server">
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" OnAjaxRequest="RadAjaxManagerEditor_AjaxRequest">
    </telerik:RadAjaxManager>
    <fieldset>
        <legend style="font-family: Arial; font-size: 12px">
            <asp:Label ID="Label6" runat="server" Text="Contenu"></asp:Label></legend>
        <div style="font-family: Arial; font-size: 12px; padding: 5px;">
            <asp:Label ID="Label7" runat="server" Text="Activer le lightbox"></asp:Label>
            <asp:CheckBox ID="EnableLightboxCheckBox" runat="server" /></div>
        <br />
        <telerik:RadEditor ID="ContentRadEditor" runat="server" Width="100%" ToolsFile="~/CMSControls/Xml/ToolsFile.xml"
            Language="fr-FR" ContentAreaMode="Div">
            <CssFiles>
                <telerik:EditorCssFile Value="~/CMSControls/Skins/editor.css" />
            </CssFiles>
            <Content>
            </Content>
            <ImageManager DeletePaths="~/Document/Images" MaxUploadFileSize="52428800" UploadPaths="~/Document/Images"
                ViewPaths="~/Document/Images" />
            <DocumentManager DeletePaths="~/Document" MaxUploadFileSize="52428800" UploadPaths="~/Document"
                ViewPaths="~/Document" SearchPatterns="*.*" />
            <FlashManager DeletePaths="~/Document/Flash" MaxUploadFileSize="52428800" UploadPaths="~/Document/Flash"
                ViewPaths="~/Document/Flash" />
            <MediaManager DeletePaths="~/Document/Media" MaxUploadFileSize="52428800" UploadPaths="~/Document/Media"
                ViewPaths="~/Document/Media" />
        </telerik:RadEditor>
    </fieldset>
</telerik:RadAjaxPanel>

Is this a bug in control? Is this a feature not accessible through the browser? Y is there a way to fix this?
Rumen
Telerik team
 answered on 20 Jan 2011
5 answers
142 views
Hi. I've got some simple code but it isn't working and at the moment I am not seeing why :)

I have a listbox and a panelbar. The listbox just contains a set of entries with simple text for each. In my code behind I have the following (pnlMenu is my panelbar):

pnlMenu.Items.Clear();
RadPanelItem rootItem = new RadPanelItem();
rootItem.Text = "Heading";
rootItem.Expanded = true;
if (RadListBox2.Items.Count() > 0)
{
foreach (RadListBoxItem i in RadListBox2.Items)
{
RadPanelItem childItem = new RadPanelItem() { Text = i.Text };
// childItem.Value = i.Value;
rootItem.Items.Add(childItem);
}
}
else
{
RadPanelItem childItem = new RadPanelItem();
childItem.Text = "No items";
rootItem.Items.Add(childItem);
}
pnlMenu.Items.Add(rootItem);

When this executes I get the panelbar dynamically created but each childItem has two lines and moving the cursor over items it is the first line which is highlighted and this line is blank. The second line contains the text from the listbox. Does this explanation make sense? Thanks
Cori
Top achievements
Rank 2
 answered on 20 Jan 2011
0 answers
42 views
Hi,
I am using your rad control in our site. Its really have very good look and feel.
But I have some issue with that (rad captcha and file upload.)
1. When user type wrong captcha test and click the button the page will post back
2. After post back the file upload does not show the posted file.
I know very well that it is the limitation of rad upload control/Asp file upload control .
But i required this functionality as client requirement.
Plz develop any  possible solution for me so i can fulfill the user requirement asap.
It would be great if you made any solution so that file upload maintain their state.
Thanks
Deepak
Top achievements
Rank 2
 asked on 20 Jan 2011
3 answers
250 views
Yes, simple question :-)

How do I define the color of the currently selected tab, so as to make it blend seamlessly with the associated radPageView?

Thanks,
J. Jespersen
Denmark

Shinu
Top achievements
Rank 2
 answered on 20 Jan 2011
1 answer
69 views
Hi,

When we use rad editor, the text copied from word is not getting striped. when we submit this we get a sql error "incorrect syntax near 's'".

how do we strip the tags before storing in the db.
Rumen
Telerik team
 answered on 20 Jan 2011
2 answers
323 views
I have a treeview where the text on some nodes are relatively long. As it is now all text is shown on one line, which expands the whole page horizontally making scrollbars appear. Is there any way to make the node text automatically break into multiple lines?

So instead of:

blah blah blah blah blah blah

The node text will be:

blah blah blah blah
blah blah

(if the text is too long)
Magnus Ostberg
Top achievements
Rank 1
 answered on 20 Jan 2011
2 answers
55 views
I want to use the spanish ñ and Ñ in my RadEditor for MOSS 2007.

<symbols>
<!--...-->
<!--spanish-->
    <symbol value="¥" />
    <symbol value="¤" />
<!--...-->
</symbols>

As you see in the code: It doesn't work although the ASCII table told me the numbers 164 and 165. Does anybody got a solution?
Rumen
Telerik team
 answered on 20 Jan 2011
6 answers
213 views
Dear support,

When i use Bars everything is OK (attach image).
When i use Pie, the item labels are not visible (attach image).

Can you please help me to fix this?
Below you will find my design code of the chart.

Thank you in advance for your time.

Best Regards,
George
Navarino Technology Dept.

<telerik:RadChart ID="chCardTypes" runat="server" DefaultType="Pie"
                    Width="200px" AutoLayout="True" Skin="Inox">
                    <Series>
                        <telerik:ChartSeries Name="Series 1" Type="Pie">
                            <Appearance>
                                <FillStyle FillType="ComplexGradient" MainColor="211, 185, 123">
                                    <FillSettings>
                                        <ComplexGradient>
                                            <telerik:GradientElement Color="222, 202, 152" />
                                            <telerik:GradientElement Color="211, 185, 123" Position="0.5" />
                                            <telerik:GradientElement Color="183, 154, 84" Position="1" />
                                        </ComplexGradient>
                                    </FillSettings>
                                </FillStyle>
                                <LabelAppearance LabelLocation="Inside">
                                </LabelAppearance>
                                <TextAppearance TextProperties-Color="160, 160, 160">
                                </TextAppearance>
                                <Border Color="187, 149, 58" />
                            </Appearance>
                        </telerik:ChartSeries>
                    </Series>
                    <PlotArea>
                        <XAxis>
                            <Appearance Color="Transparent">
                                <MajorGridLines Color="213, 213, 213" />
                                <TextAppearance TextProperties-Color="17, 17, 17">
                                </TextAppearance>
                            </Appearance>
                            <AxisLabel>
                                <TextBlock>
                                    <Appearance TextProperties-Color="17, 17, 17">
                                    </Appearance>
                                </TextBlock>
                            </AxisLabel>
                        </XAxis>
                        <YAxis>
                            <Appearance Color="Transparent" MinorTick-Width="0">
                                <MajorGridLines Color="213, 213, 213" PenStyle="Dash" />
                                <MinorGridLines Color="213, 213, 213" Width="0" />
                                <TextAppearance TextProperties-Color="17, 17, 17">
                                </TextAppearance>
                            </Appearance>
                            <AxisLabel>
                                <TextBlock>
                                    <Appearance TextProperties-Color="17, 17, 17">
                                    </Appearance>
                                </TextBlock>
                            </AxisLabel>
                        </YAxis>
                        <Appearance>
                            <FillStyle FillType="Solid" MainColor="White">
                            </FillStyle>
                            <Border Color="142, 142, 142" />
                        </Appearance>
                    </PlotArea>
                    <Appearance Corners="Round, Round, Round, Round, 10">
                        <FillStyle FillType="Image">
                            <FillSettings BackgroundImage="{chart}" ImageDrawMode="Flip">
                            </FillSettings>
                        </FillStyle>
                        <Border Color="111, 111, 111" />
                    </Appearance>
                    <ChartTitle>
                        <Appearance>
                            <FillStyle MainColor="Transparent">
                            </FillStyle>
                        </Appearance>
                        <TextBlock Text="Card Types">
                            <Appearance TextProperties-Color="17, 17, 17" TextProperties-Font="Arial, 16pt">
                            </Appearance>
                        </TextBlock>
                    </ChartTitle>
                    <Legend Visible="False">
                        <Appearance Position-AlignedPosition="Bottom"
                            Dimensions-Margins="16%, 3%, 1px, 1px" Visible="False">
                            <ItemTextAppearance TextProperties-Color="Black">
                            </ItemTextAppearance>
                            <FillStyle MainColor="Transparent">
                            </FillStyle>
                            <Border Width="0" />
                        </Appearance>
                    </Legend>
                </telerik:RadChart>
Technology
Top achievements
Rank 1
 answered on 20 Jan 2011
5 answers
115 views
I am upgrading Telerik controls Q3 2008 to Q2 2010. I am using RadEditor in one of my page which has HyperLink Manager tool. This tool has some weird design. I have attached the screen shot and highlighted that design. I want to get rid of that design. I have tried all ways but I am not able to remove it. So far I have found this. I have attached the Style screen shot for this. If I play around .RadWindow table .rwTitlebar with background-position property, it does something. And if I also change this <ul class="rwControlButtons".. to <ul class="rwControlButtons1"....  , then it is working exactly what I want except the 'Close' title at the top right corner of the window.

The last screen shot is what exactly I want it to look like. I have been playing with this since 3 days but I am not able to do it. Please help!

Thanks!

Rumen
Telerik team
 answered on 20 Jan 2011
1 answer
42 views
I was wondering if you can set a Appointment in the Scheduler to open a different web page for the edit versus using a raddock. Also if this is possible can you have different appointment types that open different pages.
Nikolay Tsenkov
Telerik team
 answered on 20 Jan 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?