Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
146 views
Hi Telerik,

First and foremost, I'm using the Q1 2009 version.

There is a bug with the RadEditor's full screen mode. If there happens to be a div with the CSS "float" attribute above the Editor, then the div's content will appear on top of the editor when full screen mode is enabled. This happens on Chrome, Safari, Opera, Firefox and IE8 (standards mode - everything looks fine in backward compatibility mode).

You can reproduce the bug with the following code:
<!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"
    <asp:ScriptManager runat="server"></asp:ScriptManager> 
    <div style="float:right;"
        This is some dummy text<br /> 
        This is some dummy text<br /> 
        This is some dummy text<br /> 
        This is some dummy text<br /> 
        This is some dummy text<br /> 
    </div> 
    <telerik:RadEditor runat="server"></telerik:RadEditor> 
    </form> 
</body> 
 

Thanks.
Rumen
Telerik team
 answered on 08 May 2009
1 answer
97 views
I've installed the RadEditor Lite for MOSS and want to use it as the editor for Wiki sites. I think I'm missing the dropdown box for Styles as I've read about it and how to populate it with custom styles but for some reason I just don't see Styles as an option in the editor.

Can anyone suggest what I may have done wrong please?

Thanks
Steve

Stanimir
Telerik team
 answered on 08 May 2009
0 answers
123 views
Dear Telerik,

we are using a Telerik RadCombobox to pull in a data-bound list of documents to choose from as follows. However, the list is getting really huge at the moment (>700) and we don't really want to go down the route of load-on-demand, because of performance.

<radC:RadComboBox ID="cbDocuments" runat="server" ExpandEffect="GradientWipe" style="display:block" HighlightTemplatedItems="true" HideCombo="false" ShowMoreResultsBox="false" ShowWhileLoading="false" Skin="Default2006" ItemRequestTimeout="300" AllowCustomText="false" DataTextField="Filename" DataValueField="DocumentResourceID"
<ItemTemplate> 
    <b><%# DataBinder.Eval(Container.DataItem, "Filename") %></b
    <br /><%# DataBinder.Eval(Container.DataItem, "Description")%> 
</ItemTemplate> 
</radC:RadComboBox> 

The Combobox sits in a pop-up control as well and due to the height of the Combobox (with name and description), the list gets cut off after a few hundred elements in FireFox (latest) although the markup is fine.

I've tried to programatically set the height of the drop down using the cbDocument.Height = Unit.Pixel(cbDocument.Items.Count * 50) method, but it overflows.

This only seems to happen in firefox and not in IE7, Chrome, etc...

Typically when this happens, a black border appears around the corners. Please contact me if you need anymore information
Yang
Top achievements
Rank 1
 asked on 08 May 2009
1 answer
90 views
I have a grid with a 3 table hierarchy.  I have command toolbars on the first 2 tables so I can add records.  (CommandItemDisplay="Top")

For the 3rd table I dont want users to be able to add rows manually as its done automatically through another process.  How can I remove the command toolbar from the final table in the hierarchy ?
Shinu
Top achievements
Rank 2
 answered on 08 May 2009
1 answer
103 views

 

<MasterTableView Caption="Budget for Manager Below & Sub-Managers" Font-Bold="True" Font-Size="12px" >

the above line caption not showing bold in firefox browser, but it is working IE browser ,whether it is browser issue?

 

Shinu
Top achievements
Rank 2
 answered on 08 May 2009
1 answer
106 views
Is there any way to adjust the spacing between the icons (calendar and clock) on the date time picker? The control is taking up more room on my page than I would like, and I need to move the two icons a little closer together.
Dimo
Telerik team
 answered on 08 May 2009
2 answers
134 views
i have followed the installation istructions and configured the RadEditor for MOSS control.
On the SharePoint designer when I replace my regular HTMLText Placeholder with the RadEditor control I get a message

Error Creating Control - Content1
Value cannot be null 

I have nevertheless saved the layout and created a page. When i view the page I get an error 

File Not Found

I had to include the control as a safe control in the web.config in addition to what was in the installation instructions below...
http://www.telerik.com/help/aspnet-ajax/installing-radeditor-in-moss-2007-farm.html
http://www.telerik.com/help/aspnet-ajax/using-radeditor-in-web-content-management-scenario.html 

any insight / direction to move forward appreciated...

Stanimir
Telerik team
 answered on 08 May 2009
3 answers
265 views
hello to expert in telerik
 
                      i apologize if i go this room, i just to want ask for a help for you guys who knows very well on asp.net, my question is how am i going to create a folder on the server base on the person who login("the name of the folder create will be on the name who login on the page".) on the system and then when that user again login on the system and access his attachment file he get it.. like for example

i login on the system name: Jolan, now i click the button attached file which actully the browse files, now i will click the save  button to save the browse files to folder created as my attached file to database,. those login name will be created as a folder name on the server..  how am i going to do that..

sample/codes is highly appreciated
ManniAT
Top achievements
Rank 2
 answered on 08 May 2009
2 answers
129 views
Hi,
I am new to Telerik suite and i started working on a project where they already been using telerik for a few months, i've read the documentation for the AjaxManager and when i started working on the project, i discovered a strange way of using AjaxManager. and to me it doesnt make sense, could anyone explain what happens when ajax manager is used in the following way? and is it correct way or a horrible error?
the thing to notice here is that the AjaxManager is the triggering control !
could someone please shed some light on what is the consequences of using this? ( and the page is working fine )
<telerik:AjaxManager ID="ioIxRadAjaxManager" runat="server" EnableAJAX="true" OnAjaxRequest="ioIxRadAjaxManager_AjaxRequest"
        <AjaxSettings> 
            <telerik:AjaxSetting AjaxControlID="ioIxRadAjaxManager"
                <UpdatedControls> 
                    <telerik:AjaxUpdatedControl ControlID="ioIxRadGridSGR" /> 
                    <telerik:AjaxUpdatedControl ControlID="ioIxRadGridSGB" /> 
                    <telerik:AjaxUpdatedControl ControlID="ioIxRadGridSGM" /> 
                </UpdatedControls> 
            </telerik:AjaxSetting> 
        </AjaxSettings> 
</telerik:AjaxManager> 

Thank you
Omar
Top achievements
Rank 1
 answered on 08 May 2009
1 answer
96 views
Hi,
 I would like to know if we can create cusom or composite control using datepicker?? If so how can we do it? 

Thanks 
Shinu
Top achievements
Rank 2
 answered on 08 May 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?