Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
125 views
Is there any way to use the RadScheduler with iPhone/iPad's safari browser?

Thanks.

Matt
Helen
Telerik team
 answered on 21 Apr 2011
3 answers
86 views
I"m creating a class that inherits from Appointments to add the fields we require in the project. Do i need to override the Copy and CopyFrom methods?
Peter
Telerik team
 answered on 21 Apr 2011
3 answers
147 views
Any ideas on how to findcontrol a "message" label that is in a "page1" page of a "Multipage1" multipage located in the Edittemplate of a "formview1" form view?
Thanks
Peter
Telerik team
 answered on 21 Apr 2011
1 answer
158 views
Hi,

I'm using a RadMenu tied to a RadSiteMapDataSource.  I'm also using a RadAjaxManger on the MasterPage with ProxyManagers on the content pages.

How do I configure the RadMenu/RadAjaxManager so that I don't get a full postback everytime the user selects a new menu item?

My MasterPage:

<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="AssetTracker.Master.cs" Inherits="AssetTracker.Site1" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<head runat="server">
    <link rel="Stylesheet" href="~/StyleSheets/Stylesheet1.css" type="text/css" media="screen"/>   
    <%--the below stylesheet is to allow telerik elements, such as the radsplitter to occupy 100% of the space--%>
    <style type="text/css"
    html,body,form 
    {       
       height: 100%; 
       margin: 0px; 
       padding: 0px; 
    
    </style>
</head>
<body class="mainBackground">       
    <form id="form1" runat="server">
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
    </telerik:RadScriptManager>   
    <div>               
        <telerik:RadSiteMapDataSource ID="RadSiteMapDataSource1" runat="server" SiteMapProvider="XmlSiteMapProvider"
            ShowStartingNode="false"/>
               
        <telerik:RadMenu ID="RadMenu1" runat="server" EnableRoundedCorners="true" EnableShadows="true"
            DataSourceID="RadSiteMapDataSource1" Width="100%">
        </telerik:RadMenu>
        <div class="miniMenuBar">
            <uc1:FacilitySelection ID="uxMasterPageFacilitySelection" runat="server" />
        </div>
        <div id="fadeoutDiv">
        <asp:Panel runat="server" ID="uxInfoPanel" CssClass="neutralStyle" EnableViewState="false">               
            <asp:Label CssClass="neutralStyle" runat="server" ID="uxInfo" Text=" " EnableViewState="false"></asp:Label>                                 
             
        </asp:Panel>        
        </div>          
        </div>
        <div class="bodyStyle">           
            <asp:ContentPlaceHolder ID="body" runat="server" />
        </div>
         
               <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
           <ajaxsettings>
                
               <telerik:AjaxSetting AjaxControlID="RadMenu1">
                   <UpdatedControls>
                       <telerik:AjaxUpdatedControl ControlID="body" />
                   </UpdatedControls>
               </telerik:AjaxSetting>
               <telerik:AjaxSetting AjaxControlID="uxInfoPanel">
                   <UpdatedControls>
                       <telerik:AjaxUpdatedControl ControlID="uxInfoPanel" />
                   </UpdatedControls>
               </telerik:AjaxSetting>
           </ajaxsettings>
         
        </telerik:RadAjaxManager>
     
    </form>
</body>
</html>

Thanks,

Jason
Peter
Telerik team
 answered on 21 Apr 2011
1 answer
291 views
(Since there is no forum for RadMultiPage what I know, I post here)

We have a RadPageView that is set to false in our RadMultiPage (and in the RadTabStrip), but despite this, the PageLoad etc. is exectued when the page is loaded, is this really correct behaviour? I know the RadMultiPage initiates all page views, even if you use RenderOnlySelectedPage, but invisible page views should not be initialized no matter what, right?
Peter
Telerik team
 answered on 21 Apr 2011
1 answer
91 views
HI,

I am creating the Grid dynamically with 3 rows from server side and implemented Copy Paste from Excel(Using Javascript). Now I want to create a new rows using javascript if user try to paste more than 3 rows.
How can I create new rows using javascript.

Thanks & Regards,
Thippa Reddy
Maria Ilieva
Telerik team
 answered on 21 Apr 2011
1 answer
172 views
I am using a RadComboBox with an ItemTemplate like this (to show checkboxes for each item):

<ItemTemplate>
     <asp:CheckBox runat="server" ID="chk1"/>
      <asp:Label runat="server" ID="lbllist" AssociatedControlID="chk1" Text='<%# Eval("ComputerName") %>'></asp:Label>
</ItemTemplate>

I further need to implement a couple of linkbuttons in a single row at the top that will allow the user to select all or select none. Finally, the alternating grid lines would be a "nice-to-have". I've included a screenshot of the standards that I need to meet. Step two in that graphic is about where I need to be when the user drops down the combo.

Any help would be appreciated. Thanks.
Dimitar Terziev
Telerik team
 answered on 21 Apr 2011
1 answer
84 views
I'd like to modify the current uploader status area, to show the result of a virus scan on an uploaded file. 
Is this possible?

Thanks.
Peter Filipov
Telerik team
 answered on 21 Apr 2011
1 answer
89 views
Hi ,

   here i am developing one web application ,in that i am showing the binary image in the viewer.If i drag and drop on the image i need to get the coordinates os the selected zone values and i need to show the selected zone with some color like red,blue,green etc...here the events are fired but i can't see the selected zone on the viewer and coordinates.pls kindly help any one ..........

thanks in adv,
ravi.
Vasil
Telerik team
 answered on 21 Apr 2011
2 answers
49 views
I have a page which uses a RadDateInput which plays quite nicely.  In another place I have an <asp:textbox /> control in which I dynamically set to a date input using a RadInputManager, if the answer required is a date.

These are both on the same page and the client "onerror" properties point to the following javascript function;

function OnError(sender,args){args.set_cancel(true)}

As I mentioned, the RadDateInput plays nicely but the RadInputManager one crashes if you don't enter a valid date (then tab/click out of the box or submit) with a javascript error; for example, "G.getFullYear is not a function".  This occurs in all browsers.

Working:
<telerik:RadDateInput ID="txtDOB" runat="server" SelectionOnFocus="SelectAll" DateFormat="d" MinDate="01/01/1930" MaxDate="01/01/2000" Culture="en-GB" EmptyMessage="DD/MM/YYYY"><ClientEvents OnError="OnError" /></telerik:RadDateInput>

Broken:
<telerik:DateInputSetting BehaviorID="setDate" DateFormat="d" Culture="en-GB" EmptyMessage="DD/MM/YYYY" ClientEvents-OnError="OnError" SelectionOnFocus="SelectAll" />

It appears that the javascript OnError() is not working for this control - but what is worse is that if I do not have the ClientEvents-OnError attribute set then I cannot submit valid dates!  The control shows it's error state when a valid date is entered and prevents form submission!

This is a very busy high-profile website - I might need to raise a ticket but I'm posting here first in case anyone else is familiar with this behaviour?
Dan Ware
Top achievements
Rank 1
 answered on 21 Apr 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?