Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
100 views
I have the 2009 Q3 controls installed within VS 2010. I want to upgrade to 2011 Q1. I have the attached picture that shows it's installed.

However, I can't find the "RadControls for ASP.NET AJAX Q1 2011" folder anywhere on my pc.

How can I upgrade to these new controls?
Erjan Gavalji
Telerik team
 answered on 14 Apr 2011
1 answer
309 views
Hi Support Team:
I just want to know if there is a way that the list view that is implemented as an Image gallery and that is actually in this link
http://demos.telerik.com/aspnet-ajax/controls/examples/integration/listviewsliderwindowrotator/defaultvb.aspx?product=listview can load the images from the db.And if there is a way could you please give me a brief example of it and also if there is a way to give the choice to the user to delete,modify and update the photos and its properties.
Thanks a lot for your support!!
Rene Lopez
Tsvetina
Telerik team
 answered on 14 Apr 2011
1 answer
120 views
Hello,

I am trying to use the RadTimePicker to both bind to a Time Value and allow selection/changes to the value in the input box.  When I am clicking the image of the clock, the popout for the time ranges is not showing.  Below is my markup:

<%@ Page Language="C#" AutoEventWireup="true"  MasterPageFile="~/Site.Master"  EnableTheming="true" Theme="theme" CodeBehind="TimeSheet.aspx.cs" Inherits="TimeSheet.Account.TimeSheet" %>
 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
 
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<style>
.NumericTextStyle { text-align:right !important; }
</style> 
    <div>
        <h1>Employees Time Sheet</h1>
        
        <table style="width454px">
            <tr>
                <td style="width84px">
                    <asp:Label ID="Label1" runat="server" Text="Employee:"></asp:Label>
                 </td>
                <td>
                    <asp:Label ID="lblEmployeeName" runat="server" Width="350px" BorderWidth="1px" 
                        Font-Bold="False" BorderColor="Black" BorderStyle="Groove"></asp:Label>
                    </td>
            </tr>
            <tr>
                <td style="width84px">
                    <asp:Label ID="Label2" runat="server" Text="Week Of:"></asp:Label></td>
                <td>
                <asp:DropDownList ID="ddTimePeriod" Width="350px"  BackColor="#FEFFE8" AutoPostBack="true" 
                        runat="server" onselectedindexchanged="ddTimePeriod_SelectedIndexChanged">
                    </asp:DropDownList>
                </td>
            </tr>
            </table>
        <br />
         <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
         </telerik:RadScriptManager>
         <telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" />
         <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="Button1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="Panel1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="Button2">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="Panel1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>
        <div id="TimeEntry" style="background-color:#FEFFE8border:thin solid #008080padding:5pxwidth:1005px ">
        <asp:DataList ID="dlTimeSheet" runat="server" 
        RepeatColumns="9" RepeatDirection="Horizontal" CellPadding="1" UseAccessibleHeader="True" 
        onitemdatabound="dlTimeSheet_ItemDataBound" DataKeyField="Id" 
                ShowFooter="False" ShowHeader="False" >
        <ItemTemplate>
        <div style="text-align:centerwidth:100px">
        <asp:Label ID="lblRowTitle1" runat="server" Height="84px" Width="100px" 
                Text="" /><br />
        <asp:Label ID="lblRowTitle2" runat="server" Height="38px" Font-Bold="true" Width="100px" 
                Text="Start Time:" />
        <asp:Label ID="lblRowTitle3" runat="server" Height="38px" Font-Bold="true" Width="100px" 
                Text="End Time:" />
        <asp:Label ID="lblRowTitle4" runat="server" Height="25px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px" Width="100px" 
                Text="On-Site Hours:" />
        <asp:Label ID="lblRowTitle5" runat="server" Height="30px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px" Width="100px" 
                Text="Off-Site Hours:" />
        <asp:Label ID="lblRowTitle6" runat="server" Height="30px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px" Width="100px" 
                Text="Lunch:" />
        <asp:Label ID="lblRowTitle7" runat="server" Height="20px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px" Width="100px" 
                Text="Category:" />
        <asp:Label ID="lblRowTitle8" runat="server" Height="25px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px" Width="100px" 
                Text="Weekly Totals:" />
       <div style="text-align:leftwidth:100px">
        <asp:Label ID="DayofWeekLabel" runat="server"  Width="100px"  
                Text='<%# Eval("TimeRange") %>' />
        </div>
        <asp:Label ID="lblId" runat="server"  Width="100px" Visible="false"  
                Text='<%# Eval("Id") %>' />
        <asp:Label ID="lblDayofWeek" runat="server"  Width="100px" Visible="false"  
                Text='<%# Eval("DayofWeek") %>' />
        </div>
         <div style="text-align:centerwidth:100px">
                <div style="float:lefttext-align:left">
                           <telerik:RadTimePicker ID="RaddtpStart" runat="server"  Width="100px" SharedTimeViewID="sharedTimeView" SelectedDate='<%# Eval("StartTime") %>' ShowPopupOnFocus="True">
                                </telerik:RadTimePicker>
                                <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="*"
                                ControlToValidate="RaddtpStart" ValidationGroup="group1"></asp:RequiredFieldValidator>
                </div>
                <div style="float:lefttext-align:left">
                           <telerik:RadTimePicker ID="RaddtpEnd"  Width="100px" SharedTimeViewID="sharedTimeView" runat="server" SelectedDate='<%# Eval("EndTime") %>'>
                                 </telerik:RadTimePicker>
                                <asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ErrorMessage="*"
                                ControlToValidate="RaddtpEnd" ValidationGroup="group1"></asp:RequiredFieldValidator>
                </div>
    <telerik:RadTimeView ID="sharedTimeView" runat="server" StartTime="07:00:00" EndTime="19:00:00" Interval="00:15:00" >
    </telerik:RadTimeView>
    <telerik:RadTimeView ID="sharedDynamicTimeView" runat="server" StartTime="07:00:00" EndTime="19:00:00" Interval="00:15:00">
    </telerik:RadTimeView>
     <br />
    
        <div style="text-align:rightwidth:100px">
         <asp:Label ID="lblRegularTime" runat="server" Height="25px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px"  Width="100px" 
                Text='<%# Eval("OnSiteHours") %>' />
        </div>
        <div style="text-align:rightwidth:100px">
        <telerik:RadNumericTextBox ID="lblOffsiteTime" Runat="server" SkinID="CurrencyOnlyBox" Height="25px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px"  Width="98px" Text='<%# Eval("OffSiteHours") %>' CssClass="NumericTextStyle">
                    </telerik:RadNumericTextBox>
        </div>
        <div style="text-align:rightwidth:100px">
        <asp:TextBox ID="lblLunchTime" Runat="server" Height="25px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px"  Width="98px" Text='<%# Eval("Lunch") %>' CssClass="NumericTextStyle">
                    </asp:TextBox>
        </div>
        <div style="text-align:leftwidth:100px">
        <asp:DropDownList ID="ddlCategory" Width="100px" BackColor="#f1fdfe"  runat="server">
                </asp:DropDownList>
        <asp:Label ID="lblDummy" runat="server" Text="--------------------" Height="20px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px" Width="100px"></asp:Label>
        </div>
        <div style="text-align:rightwidth:100px">
         <asp:Label ID="lblTotals" runat="server" Text="0.0" Height="25px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px" Width="100px"></asp:Label>
         </div>
        </ItemTemplate>
 
       </asp:DataList>
       </div>
        <table width="520">
            <tr>
                <td style="width208px" valign="top">
                    Notes:</td>
                <td style="width472px">
                    <asp:TextBox ID="txtNotes" runat="server" Height="77px" TextMode="MultiLine" Width="431px"></asp:TextBox></td>
            </tr>
        </table>
        &nbsp;<table width="520">
            <tr>
                <td style="width5103px">
                </td>
                <td style="width434px">
                    <asp:Button ID="btnSubmit" runat="server" Text="Submit" Width="91px" /></td>
            </tr>
        </table>
</div>
</asp:Content>

Am I missing some references or scripts/styles that make it work?  Thanks
Radoslav
Telerik team
 answered on 14 Apr 2011
3 answers
116 views
Hi,

I am using Telerik Rad File Explorer of new version.
It is cool.

I have few queries:-

1. I am using customized Working Progress Image.So I don't want to show the inbuilt working Image of Rad File Explorer for both Treeview and Gridview.
2. I  want to show an customized alert message that "You cannot delete this Folder" instead of the inbuilt confirmation message while selecting Root Node Folder(Virtual Path for Delete) and clicking the delete button/option.

Can you please give me suggestions in solving these?

Thanks,
Naveen.
Dobromir
Telerik team
 answered on 14 Apr 2011
1 answer
148 views
I have the following definition for my RadGrid:

<telerik:RadGrid ID="gvForecast" runat="server" Width="100%" Height="425px"
    AutoGenerateEditColumn="false" 
    AutoGenerateColumns="false" 
    GridLines="None" Skin="Office2007" ShowFooter="True" CellSpacing="0"
    OnCancelCommand="gvForecast_CancelCommand" 
    OnItemDataBound="gvForecast_ItemDataBound" 
    OnItemCreated="gvForecast_ItemCreated" 
    OnItemCommand="gvForecast_ItemCommand"
    OnColumnCreated="gvForecast_ColumnCreated" 
    AlternatingItemStyle-BackColor="#E2EDFE" >
As you can see, I have the auto generated edit column property set to false.  Regardless, the Edit column continues to appear as the far right hand column in my grid. 

Please don't tell me to hide it in PreRender....while this does hide the column, the header columns and remaining grid items are out of alignment.

For what it is worth, I can create my own Edit column <telerik:GridEditCommandColumn UniqueName="colEdit" Display="true"  without any problems, it's just that the auto generated column continues to remain at the far right side of the grid.   When I do this, both columns of Edit links are functional. 

Any help would be appreciated.  I am using the most current release of the toolkit.

Edit:  I attached a .jpg screen shot showing the stubborn Edit column.
Tsvetina
Telerik team
 answered on 14 Apr 2011
1 answer
554 views

I have been able to programmatically apply formatting to both the XAxis and YAxis (although not successfully for every chart), however, I am unable to figure out how to format the series labels.
For example, I have used the following, which has zero effect upon the series labels - regardless of what is provided in the DefaultLabelValue parameter:

<telerik:ChartSeries DataYColumn="TotalCost" Type="Line" Name="TotalCost" DataLabelsColumn="TotalCost" DefaultLabelValue="#Y{C}">

Nor do any of my codebehind (located within the ItemDataBound event) attempts:

RadChart_ProjectTrends_Costs.PlotArea.Chart.Series[0].DefaultLabelValue

the .Appearance.CustomFormat parameter applies to Style.Axis, and not Chart.Series

Any advice on how to apply *any* formatting to databound values in RadChart would be greatly, greatly appreciated.

Evgenia
Telerik team
 answered on 14 Apr 2011
4 answers
330 views
I've got an editable RadGrid with several text based columns. I don't always have data for these columns in my data set. When there is no data for the columns the bottom horizontal gridline running across the row for the column is interupted (blank) for the columns with no data.

This seems to be a problem only if the grid is editable.

In my application I use GridTemplateColumns with an asp:Label control to display the text. If the string bound to the label control is null, empty or blank space string (" "), the row gridline for the column is interupted.

I found the same grid line behavior when I created a small test application and had a GridBoundColumn bound to a DataTable where the column was a blank space string (" ").

--Mark
Mira
Telerik team
 answered on 14 Apr 2011
1 answer
51 views
Hello,

I want to use the tooltip manager on the dasgboard to maintain the consistency withing grids and charts tooltip.

For chart tooltip works fine but want to use the tooltip manager. Can you please suggest me how it will be possible to use it ?

<telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" Skin="Telerik"
    EnableShadow="true" Animation="Resize" HideEvent="ManualClose" Height="70" Width="75"
    Position="TopCenter" ToolTipZoneID="rc_CSMD_Average_Response_Time">
</telerik:RadToolTipManager>
Ves
Telerik team
 answered on 14 Apr 2011
1 answer
80 views
I am creating dynamic interfaces based on product selection in a Web App. Some interfaces may contain up to 40+ ComboBox's. I created a sample with the RadComboBox and it took 3 to 4 seconds to select an item from the combobox.

Currently I am recreating the controls on postback. Originally i wanted to store them in a collection and re-call from there, but i get a pre-render issue.
Dimitar Terziev
Telerik team
 answered on 14 Apr 2011
3 answers
130 views
I prefer ASP.NET MVC, particularly with Razor, to WebForms. However, if I'm going to attempt to leverage the features of Telerik grids for things like exporting, etc, it appears the MVC grid lags far behind the AJAX grid in terms of functionality.

Case in point: the custom code and reliance on an open source third party project for exporting to ONLY Excel for this MVC grid sample: http://www.telerik.com/support/kb/aspnet-mvc/grid/export-to-excel.aspx vs. the many, built-in export options of the AJAX grid: http://demos.telerik.com/aspnet-ajax/grid/examples/generalfeatures/exporting/defaultcs.aspx

There is also the huge disparity of control availability b/n MVC and AJAX.

In this instance, I don't know why exporting features would have such a disparity, or why the Excel support in the AJAX can't be used in the MVC grid but it looks like if we really want to take advantage of Telerik web client controls, we're better served by using the AJAX platform rather than the MVC platform, which lags far behind.

Am I missing something, or am I correct in concluding the features of the MVC toolset lag way behind the AJAX toolset? This seems strange to me, since I've found it far easier to extend MVC with extension components and helpers than extending WebForms.

Thanks for any comments.
Radoslav
Telerik team
 answered on 14 Apr 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?