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

I am using the latest version of File Explorer.
I want to rename a file or folder by double clicking the item on the grid of File Explorer.

Can you please help?

Thanks & Regards,
Naveen.
Dobromir
Telerik team
 answered on 15 Apr 2011
1 answer
236 views
Hi,

I have radcombobox in my radgrid. i want to hide the radnumerictextbox in default. clicking checkbox want to display in client side. client side when i am using same code set_visible(false) and set_visible(true). but i want to set  set_visible(false) for radnemerictext box.

Please give me a tips.

Thanks in advance,
Dhamu.
Veli
Telerik team
 answered on 15 Apr 2011
3 answers
103 views
Hi,

I want to display Edit column of Rad grid as the first column. Now it shows as the last column of the grid.

Could some one help me how can I move this column to very first column.

Thanks
monika
Top achievements
Rank 1
 answered on 15 Apr 2011
3 answers
99 views
Hello,

We use radwindows in several places in our application.  Errors cause a redirect either to our login page or to an error page.  Most common is due to session timeout. 

It is a problem when this happens while the user is in a radwindow and the radwindow itself displays the login page.   We have fixed this for IE by placing this javascript on our login page:

 

<script type="text/javascript">
        if (window != window.top) window.top.navigate(window.location.href);
</script>

This doesn't work on Mozilla.  This may be because mozilla creates each window on a seperate thread and thinks that the radwindow IS the top window?

Can you please advise how we can handle this issue.

Thanks
Marin Bratanov
Telerik team
 answered on 15 Apr 2011
1 answer
169 views
Page_ClientValidate doesn't seem to work with RadCaptcha, anyone had the same problem?

 

if (typeof (Page_ClientValidate) == 'function') {

 

 

 

// if we are doing a validation, return if it's false

 

 

if (Page_ClientValidate() == false) { return false; }

 

 

}

Thanks.

Pero
Telerik team
 answered on 15 Apr 2011
1 answer
109 views
A little confused about the way Ajax is working.  Based on the markup below, I was under the impression that if RadTextBox1 gets changed, this will cause a autopostback via AJAX, to execute RadTextBox2 server code.  Whats happening is that all three textbox server code is running on Load event.  It seems like the whole page is being refreshed.  Can someone explain why?

    <telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="RadTextBox1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadTextBox2" />
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="RadTextBox2">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadTextBox3" />
                </UpdatedControls>
            </telerik:AjaxSetting>
                  </AjaxSettings>

    </telerik:RadAjaxManagerProxy>

    <telerik:RadTextBox ID="RadTextBox1" AutoPostBack="true" runat="server">
    </telerik:RadTextBox>
    <telerik:RadTextBox ID="RadTextBox2" AutoPostBack="true"   runat="server">
    </telerik:RadTextBox>
    <telerik:RadTextBox ID="RadTextBox3" AutoPostBack="true"  runat="server">
    </telerik:RadTextBox>

Tsvetoslav
Telerik team
 answered on 15 Apr 2011
3 answers
100 views
We purchased the Telerik controls through a software development company but did not get documentation.  So sorry if this question is a little basic.

The RadEditor is on a page as follows below.  What is the syntax to add the bulleted list toolbar button?

<

 

telerik:RadEditor ID="txtText" runat="server" Height="200px" Width="400px" ToolTip="Post Body" EnableEmbeddedSkins="false">

 

 

    <Tools>

 

 

        <telerik:EditorToolGroup>

 

 

            <telerik:EditorTool Name="Bold" />

 

 

            <telerik:EditorTool Name="Italic" />

 

 

            <telerik:EditorTool Name="Underline" />

 

 

            <telerik:EditorTool Name="Cut" />

 

 

            <telerik:EditorTool Name="Copy" />

 

 

            <telerik:EditorTool Name="Paste" />

 

 

            <telerik:EditorTool Name="FontName" />

 

 

            <telerik:EditorTool Name="FontSize" />

 

 

            <telerik:EditorTool Name="ForeColor" />
        
</telerik:EditorToolGroup>
    
</Tools>

 

 

    <Content>

 

 

    </Content>

 

 

</telerik:RadEditor>

 

Rumen
Telerik team
 answered on 15 Apr 2011
2 answers
67 views
Hi,

AdvancedInsertTemplate

 

 

doesn't work. save cancel options display and it open after i click options button. I want to open directly this form. How i configure the scheduler components. Thanks you for your helps.

Veronica
Telerik team
 answered on 15 Apr 2011
3 answers
126 views
Hi,

As you can see from the code, the text box is required to have a value. The text box has no value. I click on the button first time everything is working correctly and I have the "Error!" message inside the textbox. When I click on the button second time without changing anything, the text box still has the error style but the message disappears. And if I have EmptyMessage set up, it would appear instead of the error message. How can I make the error message stay?
Thank you

<asp:TextBox ID="txtTest" runat="server" />
<telerik:RadInputManager ID="RadInputManager1" runat="server" EnableEmbeddedSkins="true" Skin="Default">
    <telerik:TextBoxSetting BehaviorID="bhTest" ErrorMessage="Error!" 
        Validation-IsRequired="true" Validation-ValidationGroup="ValidationSummary1">
        <TargetControls>
            <telerik:TargetInput ControlID="txtTest" />
        </TargetControls>
    </telerik:TextBoxSetting>
</telerik:RadInputManager>
<asp:Button ID="btnTest" runat="server" ValidationGroup="ValidationSummary1" Text="Test" />
Pavel
Telerik team
 answered on 15 Apr 2011
1 answer
122 views
Spellcheck works fine on my local machine.  However, when I deploy the application on a server, spellcheck produces the following error:  No dictionary loaded.

The following HTTPHANDLER is in the web.config file:
<add path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" validate="false"/>

The dictionary files are in the App_Data/RadSpell directory. 

I verified the ASPNET machine account and NETWORK SERVICE account access to the App_Data directory on the server.  I am running IIS 7 on the server.

I even tried to explicitly set the dictionary path in the editor:
<telerik:RadEditor ID="editorAnswer" Runat="server" Font-Names="Arial" Font-Size="12pt">
                <SpellCheckSettings DictionaryPath="~/App_Data/RadSpell/" />

Am I missing something? 
Dan
Top achievements
Rank 2
 answered on 15 Apr 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?