Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
1.6K+ views
Hi Team,

I am new to Telerik controls and was trying to experience code before buying. There are wealth of information and demo information on the site. However , it does not explains about step by step tutorial for simple application. For example, if I want to create a datagrid and display information from the database in asp.net C# web application, Microsoft has a very clean tour with step by step here: http://msd​n.microsof​t.com/en-u​s/library/​aa302124(v​=vs.71).as​px.
I am able to execute the application as it is if I follow the instructions. I was hoping to have similar tour from the scratch for at least one application for beginner in telerik. If I copy source as it is from demo page and paste in my demo application and reference Telerik.web.UI, it generates tons of errors. Your demo does not talk from the scratch.

Will you please redirect me to a simple web application where I can use RADGRID and setup a data source and dataset to display records/query results from the database step by step tutorial?

Thanks in advance,

Swati
Viktor Tachev
Telerik team
 answered on 13 Mar 2014
2 answers
158 views
I just upgraded from 2011 to 2013.3.1217.40. I declare the RadComboBox in a RagGrid as follows:

    <EditItemTemplate>
        <telerik:RadComboBox ID="radCboReviewStatus" runat="server" Skin="Simple"
            CollapseAnimation-Type="None" ExpandAnimation-Type="None"
            NoWrap="true" Width="105px" DropDownAutoWidth="Enabled" >
        </telerik:RadComboBox>
    </EditItemTemplate>
</telerik:GridTemplateColumn>

When the combo is rendered, there is a black border on the arrow. See the attached. How to get rid of this?

BrianS
Top achievements
Rank 1
 answered on 13 Mar 2014
1 answer
21 views
Hi All,

I am looking to implement some sort of User-controlled cell background coloring functionality.  Ideally the User will be able to right click on the cell and then choose the desired color like in Excel.  Filtering by color would also be desirable.

This is an all C# code-behind solution implemented in SharePoint 2010.

Thanks,
Mark
Viktor Tachev
Telerik team
 answered on 13 Mar 2014
3 answers
37 views
Is there any way to allow a User to specify the background color of a cell like in Excel (not in itemdatabound)?  I realize that column widths can be changed by Users, but is there any way to save their configuration for a specific User?  Maybe an external xml file or sql?

Thanks,
Mark
Eyup
Telerik team
 answered on 13 Mar 2014
3 answers
460 views
I have a web app that uses a class library project that contains all of my business/data logic.  How can I reference the Telerik assembly for this class library?
Dustin
Top achievements
Rank 1
 answered on 13 Mar 2014
1 answer
61 views

Hello All,


I am using file explorer control
i getting following issue


I have bind "list view" in "page_load" 
you can see code below

//////////////////////////////////////////////////////////////

ExpDocument.FileList.ListView.ClientSettings.DataBinding.ItemTemplate = @"<li class=""rfeThumbList rlvI"" >
            <a href=""javascript: void 0;"" class=""rfeLink rlvDrag  data-index=""#= index #"" title="""">
                <span class=""rfeFile#= Telerik.Web.UI.FileExplorerHelper.isWebImage(item.Extension) ? ' rfeImageFile' : '' #"">
                # if(Telerik.Web.UI.FileExplorerHelper.isWebImage(item.Extension)) {#
                    <img src=""#= item.Url || item.Path # "" alt="""" width=""32"" height=""32"" onclick=""OnFileOpen(this,'#= item.Path #')"" />
                # }
                else if(item.Extension=="".msg"") { #
                    <img src=""../Images/imgEnvelopeIcon.png"" alt="""" width=""32"" height=""32"" onclick=""OnFileOpen(this,'#= item.Path #')"" />
                # }
                else { #
                    <span class=""rfeFileIcon #= Telerik.Web.UI.FileExplorerHelper.getThumbnailCSSExtension(item) #"" ></span>
                # } #
                </span>
                <span class=""rfeThumbTitle"" onclick=""OnFileOpen(this,'ModifyPage')"">#= Name #</span>
            </a>
        </li>";


/////////////////////////////////////////////////////////////


when i use above code to bind list view

issue =>i can not change folder or double click any folder can not load that folder
from thumbnail.
but i can change folder from grid view so can you please help me.how can i change folder and i have to bind list view in page_load please suggest other solution

Note- If  i don't change list view bind code than it works fine
Vessy
Telerik team
 answered on 13 Mar 2014
1 answer
37 views
I have a page with two user controls on it (UC1 is a results grid and UC2 is a search control).  UC1 is loaded automatically when the page loads based on the query string.  When the user interacts with UC2 (either by entering text in a basic search box or by launching an advanced search window), the results appear in UC1.  I add an AjaxSetting on UC1 such that when the user interacts with it (e.g., opens an item in the grid, deletes an item via the toolbar, etc.), the loading panel appears over the grid, however, I'm unable to get the same results when users interact with UC2.

Here's the beginning of the page where the two controls are defined (I snipped it before the script block):

<%@ Page Language="C#" MasterPageFile="~/MyApplication.Master" AutoEventWireup="true" EnableTheming="true" CodeBehind="Worklist.aspx.cs" Inherits="MyApplication.Worklist" %>
 
<%@ Register Src="ToolkitForms/UserControls/ExtendedActionWorklist.ascx" TagName="ActionWorklist" TagPrefix="uc1" %>
<%@ Register Src="UserControls/ObjectSearch.ascx" TagName="ObjectSearch" TagPrefix="uc2" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
 
<asp:Content ID="WorklistContent" runat="server" ContentPlaceHolderID="ActivatorBody">
     
    <table style="background-color: Transparent; width: 100%;">
        <tr>
            <td align="left">
                <div id="createdMessage" style="background-color: Transparent; float: left; font-weight: bold; font-size: small; padding: 8px 0 0 10px;"></div>
            </td>
            <td align="right">
                <uc2:ObjectSearch ID="SimpleSearch" runat="server" />
            </td>
        </tr>
    </table>
    <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Height="75px" Width="75px"></telerik:RadAjaxLoadingPanel>
    <asp:ValidationSummary ID="ValidationSummary1" runat="server" />
    <div style="background-color: #E1EDFF; width: 100%; position: fixed; overflow: auto;">
        <uc1:ActionWorklist ID="ActionWorklist2" runat="server" Height="500px" SetGridMaxHeight="true" GridPageHeightOffset="40" />
    </div>

Note:  The RadAjaxManager is defined on the master page.

I then attach the Ajax events in the code behind on Page_Load as follows:

RadAjaxManager manager = RadAjaxManager.GetCurrent( Page );
manager.AjaxSettings.AddAjaxSetting( ActionWorklist2, ActionWorklist2, RadAjaxLoadingPanel1 );
manager.AjaxSettings.AddAjaxSetting( SimpleSearch, ActionWorklist2, RadAjaxLoadingPanel1 );

The loading panel works (e.g., the transparency appears above the grid while it refreshes) when the user interacts with UC1, but not when they interact with UC2.

What else do I need to do to accomplish this?
Maria Ilieva
Telerik team
 answered on 13 Mar 2014
2 answers
176 views
I have custom tooltip control which attach to a column
(every row), and it shows up fine, but if gets cut off by radgrid boundaries if tooltip is too big
or row (for which tooltip is showing up) close to  the footer. I played with z-index of tooltip but have no
luck. Any idea how to resolve this issue?

Thanks
Arun
Top achievements
Rank 1
 answered on 13 Mar 2014
4 answers
341 views
I dont know why I cant set width in percentage i.e.  when i am set the width <telerik:radchart width = "100%" its gives me error.

Is there any easy way to set the width as per resolution or set the width in percentage?

Please do the needful.

Thanks & Regards,
Shankar Gidwani
Danail Vasilev
Telerik team
 answered on 13 Mar 2014
7 answers
164 views
I am trying to create a rotator that has a button control with three images, then under those images there is text and then when you hit the button control three new images with three new text files show up.  I haven't seen any examples that show this functionality.  Can someone please provide an example of this.

Thanks in advance!
Slav
Telerik team
 answered on 13 Mar 2014
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?