Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
54 views
I have to use Appointment popup window using Rad Scheduler but at the same time I want to hide day View , month view or week view .So how can achieve  this?
Like This........

Plamen
Telerik team
 answered on 17 Apr 2012
1 answer
134 views

Please any one help?
Please find the below and find the attached images too.

If generate the chart first it showing the results in image Chart View Issue Due to number of x-Axis scale points, on x-axis results pulling from -200 to +300

I agree with the below view, because due to thousands of scaling points x-Axis we can’t see them directly, the data going to be overlap with beside scaling points. That’s way x-axis data is not showing in proper order.

Chart View Issue Due to number of x-Axis scale points: IF POSSIBLE, IF WE HAVE ANY OTHER OPTION TO RECTIFY THE ISSUE WITH X-AXIS SCALING POINTS VIEW, and PLEASE SUGGEST.

Ves
Telerik team
 answered on 17 Apr 2012
5 answers
266 views
Hi:

I have a user-controls that is dragged inside a RadAjaxPanel.  The JQuery code in the user-conde does not seem to run.
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="DisplayMessage.ascx.cs" Inherits="Telerik.UserControls.DisplayMessage" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">
    <script type="text/javascript">
        //<![CDATA[
        $(document).ready(function () {
            alert("here uc");
        });
        ]]>
    </script>
</telerik:RadScriptBlock>
I have remove any work from the jquery, and reverted to alerts, but the alert does not appear.

Phil
Maria Ilieva
Telerik team
 answered on 17 Apr 2012
10 answers
1.6K+ views
I have a sign up form which when a user completes successfully, it logs them in automatically. After the user clicks "Finish", they are presented with a Congratulations page which tells them what their new username and password is. I have a UserControl in another ContentPlaceHolder on the page which is either displays a Login form or the logged in user's info.

Upon successful completion of signing up, I want to refresh the Login UserControl so that it displays the user's info rather than the login form.

I am using MasterPages and Sitefinity.
darshan thacker
Top achievements
Rank 1
 answered on 17 Apr 2012
1 answer
155 views
Hi,

I am having rad grid in which i have enabled virtual scrolling with client side binding to web service. I want to add Hierarchy to the grid. But sincs the data is bound at client side i am not getting the details tables listed in the ui. Also if i call dataitem.get_nestedViews(), it is not returning any table.
Is there any way to add details table thru java script?
Also can we select the row along with the details table as a whole? write now selection is limited to master table rows.


Thanks,
Rashmi
Radoslav
Telerik team
 answered on 17 Apr 2012
1 answer
84 views
Hi

I have a RadTreeView and I need to implement the following:
1) If all child nodes checked, then check parent(all the way up to level 0 if necessary)

Does the RadTreeView already have this capability? i.e to track which parent nodes have to be checked once child node is checked.

Thanks.
Kamal
Princy
Top achievements
Rank 2
 answered on 17 Apr 2012
1 answer
111 views
hi telerik

I'm working with Form Decorator.the text box does not rounded corner. why ?
RadFormDecorator place is top of page after Scriptmanager

<telerik:RadFormDecorator ID="_FormDecorator" Runat="server" 
                                 DecoratedControls="All" Skin="Sunset" EnableRoundedCorners="true" />



see attachment



Bozhidar
Telerik team
 answered on 17 Apr 2012
3 answers
199 views
In a RadGrid, I have a requirement to display running sports time as a text mask of hour:min:sec (00:00:00) but store this in the database as a BigInt of timepan.ticks.
I have the 2 methods to convert from one to another show below.
The application is being converted from Devexpress ASPxGridView to Telerik RadGrid.  I show the existing devexpress grid methods used below.
// Called from Devexpress ASPxGridView1_ParseValue on Insert/Update
private static long LongFromString(Object value)
{
    if (value == null || String.IsNullOrEmpty((String)value))
    {
        return 0;
    }
    else
    {
        TimeSpan span =  TimeSpan.Parse((String)value);
        return span.Ticks;
    }
}
 
Here, one method is for the Grid rows and one is for edit mode.
// Called from Devexpress ASPxGridView1_CellEditorInitialize on Select
// AND Devexpress ASPxGridView1_CustomColumnDisplayText  on Select
private static String StringFromBigInt(Object Value)
{
    TimeSpan span = new TimeSpan((long)Value);
    if (span.Days != 0)
        return span.ToString("c");
 
    String str = span.ToString(@"hh\:mm\:ss");
    return String.Format("{0}", str);
}
Can someone tell me what RadGrid methods will allow me to have the same functionality to Display 00:00:00 but save ti the database as a BigInt.
Thanks so much for your help.
Shinu
Top achievements
Rank 2
 answered on 17 Apr 2012
2 answers
125 views
Hi all,
I need two grid view in my page.I have to show both details on different link button click, now I could show only one grid and its showing in the Page load itself. Please help me with ideas.
Thanks.
Angella
Top achievements
Rank 1
 answered on 17 Apr 2012
5 answers
740 views
Hi, I need to display a loading panel whenever I click on any button inside a RadToolbar.  Thanks.

    
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" DefaultLoadingPanelID="RadAjaxLoadingPanel1">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="RadToolBar1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="divDataEntry" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>
    <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Default" />
<div id="divDataEntry" runat="server">
    <telerik:RadTextBox ID="rtbTxtBox" runat="server" Width="10em" MaxLength="20" />
</div>
    <telerik:RadToolBar ID="RadToolBar1" runat="server" Skin="Office2010Blue" ForeColor="Black"
        OnClientButtonClicked="OnClientButtonClicked" OnClientButtonClicking="OnClientButtonClicking"
        OnButtonClick="RadToolBar1_ButtonClick">
        <Items>
            <telerik:RadToolBarButton runat="server" Owner="RadToolBar1" Text="Add" ForeColor="Black"
                ImageUrl="~/Telerik/Images/add.gif" CommandName="addcmd" Value="add" />
            <telerik:RadToolBarButton IsSeparator="true" />
            <telerik:RadToolBarButton runat="server" Owner="RadToolBar1" Text="Reset" ForeColor="Black"
                ImageUrl="~/Telerik/Images/Refresh.gif" CommandName="resetcmd" Value="reset" />
            <telerik:RadToolBarButton IsSeparator="true" />
            <telerik:RadToolBarButton runat="server" Owner="RadToolBar1" Text="Clear" ForeColor="Black"
                ImageUrl="~/Telerik/Images/Undo.gif" CommandName="clearcmd" Value="clear" />
            <telerik:RadToolBarButton IsSeparator="true" />
            <telerik:RadToolBarButton runat="server" Owner="RadToolBar1" Text="Save" ForeColor="Black"
                ImageUrl="~/Telerik/Images/Save.gif" CommandName="savecmd" Value="save" ValidationGroup="required" />
        </Items>
    </telerik:RadToolBar>
Shinu
Top achievements
Rank 2
 answered on 17 Apr 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?