Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
124 views

Hi

             I am uploading files to server from webpage. Here I am checking whether file exist or not in server if exist I would like to ask Confirmation message like ‘File already Exist on Server, do you want to Override, if YES I want to Override, if NO  I want to skip that file and go for next file.

Here I am using Telerik:RadUpload control to upload multiple files.

Can you please help me to solve this issue.

Suresh K
Top achievements
Rank 1
 asked on 29 Jul 2011
1 answer
111 views
I'm currently using Safari 5.1 on Windows 7 to test the AsyncUpload component both on my own website and the telerik demo site.  After selecting either 1 or multiple files it seems to have a chance of refreshing the page and losing the selected files.  In the case of my own upload page I require the user to be logged in and when it does the refresh it logs the person out.

Is this a known issue with Safari?  Is there anything I can do to keep it from happening?

Peter Filipov
Telerik team
 answered on 29 Jul 2011
1 answer
158 views
Hi All,
I have RadColorPicker Having Id="RadColorPicker1" and also Have a asp Label..
I have Question that once i select the color from RadColorPicked ; That should apply to Asp Label..
Please suggest me out..
I'm beginner of Telerik technology..
Slav
Telerik team
 answered on 29 Jul 2011
3 answers
144 views
Hello,

I'm looking at making a schedule/calendar for a hockey team website and would like to include 2 or 3 resources to add to any given event: Home Team (always set), Away Team and Venue. Additionally, I'd like a descriptor flag to indicate a Practice or Game

My Teams and Venues are held in two tables in the db. Assume I retrieve the data into List<Team> and List<Venue> lists.

Can someone please explain how I could dynamically add Teams and Venues to two resource lists in the AdvancedForm? Can I bind resources to the lists?

Thanks
Plamen
Telerik team
 answered on 29 Jul 2011
1 answer
227 views
Hi,
I have sitemap datasource which will contain the url to the webpage, text to be displayed, tool tip, url to the icon image. I was able to bind this appropriately to a tabstrip by using the item data bound event.
But am not sure, how to achieve the same in RadPanelBar. (I know how to do it from aspx side by giving <Items>. But I want to achieve it from code behind as I never know what will be the number of items in the panel bar)
Kindly guide me to an example or let me know how to do this.

Thanks
Peter
Telerik team
 answered on 29 Jul 2011
2 answers
122 views
Hi all,
The problem is:
I have a RadToolTip Modal="true"
inside the tootip there is a combobox.
When i open the combobox the list of the databound elements appear behind the tooltip so I'm not able to choose any item.

I'm using the latest realease of the ASP.NET Ajax controls.

Any idea what I'm doing wrong?

Thanks,
Mattia
Mattia
Top achievements
Rank 1
 answered on 29 Jul 2011
7 answers
111 views
Dear Telerik Team,

This is an offshoot of this discussion (http://www.telerik.com/community/forums/aspnet-ajax/general-discussions/how-to-disable-the-rad-update-prompt-in-visual-studio.aspx)

Is there a way we can decouple Telerik from integrating from Visual Studio 2010?

Thanks and Regards,

Deepak Vasudevan
Biliana Ficheva
Telerik team
 answered on 29 Jul 2011
3 answers
132 views
Hello!

I have a question:

Can we configure multi-level context menu on a RadTreeeView to behave the following way:

if user clicks on the selected item, which leads to another sub-menu, this sub-menu becomes visible and stays this way (usually all menus disappear when the user takes cursor off them).

Thank you,

Irene Troupansky

Plamen
Telerik team
 answered on 29 Jul 2011
1 answer
88 views
Hello
i have a problem with my radwindows when i put my program in production but in development environment does work correctly.
the error say that: 

This property not used. Please use OnclientClose instead.For more information visit http://www.telerik.com/help/aspnet-ajax/window_programmingusingradwindowasadialog.html


when i visited the page for more information, the page is broken 
i need your help.
bye
Svetlina Anati
Telerik team
 answered on 29 Jul 2011
3 answers
209 views
Hi

I am using Radwindow as a modal popup for inline form editing.  I have created a wizard, using standard 'asp:panels', inside the ContentTemplate of the Radwindow to break up the form in to smaller chunks. In each asp:panel there is a 'next' and 'back' button which is used to navigate between them. These buttons control server side functions to show/hide the various panels during navigation, and perform some form validation etc. in the background.  I need this server side functionality. 

The Radwindow is initially hidden on page load, but the 'ButtonAddNew' button is clicked to show it, ready to add a new item.

The problem is that during navigation between panels the page flickers badly in Chrome, Opera and IE (not in Firefox) - I guess it is posting back on the navigation button click.  The panels always appear in the end, but the flicker is annoying as a user experience.  I have tried putting a RadAjaxPanel around the RadWindowManager to try and stop the flicker - and get a smooth navigation -  but this is not working. 

Any help would be much appreciated.  I have summarised some of the main code below.  The Telerik controls are Q3 2010 and it's ASP.NET 3.5.

Thanks in advance.

Kevin

=====================================================
Note: the Radwindow is in a usercontrol.  In the Master page there is  a standard ScriptManager  - I'm using this as there are also some 'ASP.NET Control Toolkit' controls on some of the pages:

<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>




User control with Radwindow wizard:
 
<%@ Control language="VB" AutoEventWireup="false" CodeFile="gallery.ascx.vb" Inherits="Gallery" %>
<%@ Reference VirtualPath="~/sites_admin/admin.master" %>
 
 
<!-- this buttons opens the popup -->
<asp:Button ID="ButtonAddNew" runat="server" CausesValidation="false" OnClick="ButtonAddNew_Click" />
 
 
 
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server">
 
 
 
<telerik:RadWindowManager ID="RadWindowManager01" Modal="true" runat="server">
        <Windows>
 
            <telerik:RadWindow ID="RadWindowImageEdit"
            Skin="kSitefinity"
            AutoSize="true"
            EnableEmbeddedSkins="false"
            EnableEmbeddedBasestylesheet="false"
            Behaviors= "Close" 
            VisibleTitlebar="true"
            VisibleStatusbar="false"
            KeepInScreenBounds="true"      
            EnableShadow="false"
            VisibleOnPageLoad = "False"  
            runat="server">
 
            <ContentTemplate>
  
  <div style="width: 900px;  padding: 6px;">
 
 
 
 
 
<asp:panel id="panel01"  runat="server">
                           
        <!--Form part 1 content here -->         
  
<asp:button id="ButtonNext01"  ValidationGroup="vgText" CausesValidation="True" runat="server"
  OnClick="OnClick_ButtonNext01"/>                                                   
 
</asp:panel>
 
 
 
 
 
 
 
<asp:panel id="panel02"  runat="server">
                           
        <!--Form part 2 content here -->         
  
<asp:button id="Buttonback02"  ValidationGroup="vgText" CausesValidation="True" runat="server"
 OnClick="OnClick_Buttonback02"/>                                                   
 
 </asp:panel>
 
 
 
 
</div>
</ContentTemplate>
 
            </telerik:RadWindow>
 
 
 
        </Windows>
    </telerik:RadWindowManager>                                               
        
       </telerik:RadAjaxPanel>
 
 
 
 
 
 
 
 
CODE BEHIND:
 
'this pops up the window the first time ready to add a new item
Protected Sub ButtonAddNew_Click(ByVal sender As Object, ByVal e As EventArgs)
 
       'some server side code here
 
        'show the modal popup
        RadWindowImageEdit.VisibleOnPageLoad = True
 
End Sub
 
 
 
 
'panel navigation
Protected Sub OnClick_ButtonNext01(ByVal sender As Object, ByVal e As EventArgs)
   
'some validation code here
 
panel02.Visible = True
panel01.Visible = False
 
End Sub
 
 
 
 
 
 
Protected Sub OnClick_Buttonback02(ByVal sender As Object, ByVal e As EventArgs)
   
'some validation code here
 
panel02.Visible = False
panel01.Visible = True
 
End Sub
Svetlina Anati
Telerik team
 answered on 29 Jul 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
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
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?