Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
159 views
I am wondering if there is any way to go to a specific frame by index on client side?
One example is at http://www.forbes.com/ where you can mouse hover the number 1,2,3,4,5 to see the specific frame.

Thanks

Jonathan Hunter
Top achievements
Rank 2
 answered on 21 Nov 2008
2 answers
77 views
I'm accessing this RadGrid forum using an Internet Explorer browser from a workstation at my location in California.

Page-load times on this forum have become so painfully slow that the forum is almost impossible to use.

It's NOT my browser, nor my internect connection, because I can access other forums at other company web sites just fine without any problem.

So please Telerik people, do what you can to fix up your site because it does not inspire confidence.....
Carl
Top achievements
Rank 1
 answered on 21 Nov 2008
3 answers
83 views
Hello,

For some reason, I have an appointment showing up in the advanced editor as 9AM to 11AM, but in the Scheduler itself it's showing up as 8:30 AM to 10:30 AM.  Why would  that be?  I don't understand why the times would be off by a 1/2 hour?  I don't have a lot of attributes set for it; just the core ones.

Thanks.
Peter
Telerik team
 answered on 21 Nov 2008
0 answers
138 views
I have a parent window and a child window open on the click on a button in the parent window. The click of the button opens the child window with a radgrid inside. The user selects a row, and then returns to the parent window. I have an onclientclosed javascript function in the parent window process the data (in args) sent back to the window). I am using one of the args (Name) to fill up the radtextbox. On the return to the parent window, the child window closes, and I set the radtextbox to the value, but the value does not appear in the radtextbox. If I then click in the textbox, the name appears.

If I change the radtextbox to an asp textbox, it works fine.

Here is my code:

function OnClientPublisherClose(oWnd) { 
 
        if (oWnd.returnCode == 0)  // if returnCode is 0, user cancelled - don't change anything 
            return
 
        if (oWnd.returnCode == -1) // user pressed clear - clear out values 
        { 
            var txtbxPublisherName = document.getElementById('publisherName'); 
            txtbxPublisherName.value = ""
            var txtbxPublisherID = document.getElementById('txtPublisher_id'); 
            txtbxPublisherID.value = -1;  // know that it is not valid so when writing out, write out null 
            return
        }    
 
        //get the transferred arguments 
        var publisher_name = oWnd.argument.publisherName; 
        var publisher_id = oWnd.argument.publisherID; 
 
        var txtbxPublisherName = document.getElementById('publisherName'); 
        txtbxPublisherName.value = publisher_name; 
 
        var txtbxPublisherID = document.getElementById('txtPublisher_id'); 
        txtbxPublisherID.value = publisher_id; 
    } 

 <telerik:RadTextBox ID="publisherName" runat="server" ReadOnly="true"  > 
                    </Telerik:RadTextBox> 


Laura
Top achievements
Rank 1
 asked on 21 Nov 2008
1 answer
88 views
Hi.

I have a strange issue. When using the edit column as an image button, on click it doesn't go into edit mode. If i remove the code: ButtonType="ImageButton" then it works fine.

Any Idea why?

Regards,

Jean-Philippe Chenot
Dimo
Telerik team
 answered on 21 Nov 2008
6 answers
146 views
i'm using the makeurlsabsolute content filter to convert urls and it is working fine. however, i have found that the content filter is converting anchor links which, it seems to me, it should not. any hyperlink which begins with a # should not have the URL modified in any way since the # specifically points to the current document.

whilst it would probably be ok for anchor tags within normal web pages, it is an insurmountable issue for editing the content of emails - which frequently include the use of anchors to skip up and down the email content.

can you advise how i can overcome this?

sincerely,
rob
Lini
Telerik team
 answered on 21 Nov 2008
2 answers
117 views
Hi. I'm trying to create a grid dynamically. I'm able to create the grid in Page_Init() and then place it using:

VB: PlaceHolder1.Controls.Add(EmployeesGrid)
and ASCX: <asp:PlaceHolder id="PlaceHolder1" runat="server"></asp:PlaceHolder>

But I was wodering how I can make this work inside of an Ajax update panel?
William
Top achievements
Rank 1
 answered on 21 Nov 2008
1 answer
110 views

Currently, our data center only has the 2.X / 3.X / 3.5 frameworks installed on the web server.

Telerik.Web.UI.DLL contains a project reference to the System.Web.Extensions Version 1.0.61025 (i.e. .NET Framework 1.X). This means that in order for you to use the Telerik RadControls for ASP.NET, you need to have the Microsoft 1.X framework installed on your web server.  For example, if you open the Telerik.Web.UI.dll in the Lutz Roeder's .NET Reflector tool, you will see that the System.Web.Extensions DLL reference is pointing to the Microsoft 1.X Framework.

Is there aother version of the Telerik.Web.UI.dll assembly that uses the .Net 3.5 version for the System.Web.Extensions?

Phil C
Top achievements
Rank 2
 answered on 21 Nov 2008
3 answers
93 views
Ok, this isnt so much of a problem as more of a query as to what i've been missing with regards to the RadEditor tools...

What I want to happen is that when users focus's on the RadEditor control it will set the FontType and Font Size to defaults. it works for the fontType.. but the fontSize's text remains at "FontSize" i've seen in your example project (http://demos.telerik.com/helpdeskbeta/) when you click new it opens a RadEditor and when the focus is set it displays this behaviour...

i cannot see a way of doing this.

Here is the contents of my Tools.xml

<root>

    <tools name="Main" >

        <tool name="Cut" shortcut="CTRL+X"/>
        <tool name="Copy"  shortcut="CTRL+C"/>
        <tool name="Paste" shortcut="CTRL+V"/>
        <tool name="PasteFromWord" />
        <tool name="PasteFromWordNoFontsNoSizes" />
        <tool name="SelectAll" shortcut="CTRL+A"/>
        <tool name="Undo" shortcut="CTRL+Z" />
        <tool name="Redo" shortcut="CTRL+Y" />
        <tool separator="true"/>
        <tool name="AjaxSpellCheck" shortcut="F7" />
        <tool name="FindAndReplace" shortcut="CTRL+F"/>
        <tool separator="true"/>
        <tool name="ImageManager" shortcut="CTRL+M"/>
        <tool name="AbsolutePosition" />
        <tool name="ImageMapDialog"/>
        <tool separator="true"/>
        <tool name="LinkManager" />
        <tool name="Unlink" />
        <tool separator="true"/>
        <tool name="InsertDate" />
        <tool name="InsertTime" />
        <tool name="InsertSymbol" />

    </tools>

    <tools name="Format" >
        <tool name="Bold" shortcut="CTRL+B"/>
        <tool name="Italic" shortcut="CTRL+I"/>
        <tool name="Underline" shortcut="CTRL+U"/>
        <tool name="StrikeThrough" />
        <tool separator="true"/>
        <tool name="Superscript" shortcut ="CTRL+SHIFT+F4" />
        <tool name="Subscript" shortcut="SHIFT+F4"/>
        <tool separator="true"/>
        <tool name="FormatBlock"/>
        <tool name="FontName" shortcut ="CTRL+SHIFT+F"/>
        <tool name="FontSize" shortcut ="CTRL+SHIFT+P"/>
        <tool name="ForeColor"/>
        <tool name= "BackColor"/>
        <tool name= "Zoom"/>

    </tools>

    <tools name="ParagraphAndLines" >
        <tool name="InsertParagraph" />
        <tool name="InsertHorizontalRule" />
        <tool separator="true"/>
        <tool name="Outdent" />
        <tool name="Indent" />
        <tool separator="true"/>
        <tool name="JustifyLeft" shortcut="CTRL+L"/>
        <tool name="JustifyCenter" shortcut="CTRL+E"/>
        <tool name="JustifyRight" shortcut="CTRL+R"/>
        <tool name="JustifyFull" shortcut="CTRL+J"/>
        <tool name="JustifyNone" />
        <tool separator="true"/>
        <tool name="InsertUnorderedList" />
        <tool name="InsertOrderedList" />
        <tool separator="true"/>
        <tool name="ConvertToUpper" shortcut ="SHIFT+F3" />
        <tool name="ConvertToLower" shortcut ="CTRL+SHIFT+F3"/>
        <tool separator="true"/>
        <tool name="InsertTable" />
        <tool name="ToggleTableBorder" />
        <tool separator="true"/>
        <tool name="FormatCodeBlock" />
        <tool name="InsertFormElement"/>
        <tool name="InsertSnippet"/>
    </tools>
</root>
Rumen
Telerik team
 answered on 21 Nov 2008
1 answer
170 views
hi

how to get cursor position in rad editor?

I am inserting  data in Rad Editor . if i move the cursor to some other location that text  should  add  from that position onwards.

please let me know as early as possible .

Regards




Rumen
Telerik team
 answered on 21 Nov 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?