Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
108 views
I am updating the RadXmlHttpPanel  with ten RadTextBox's with no issues. My issue is when I go to hit SAVE within the application I want to be able to use those 10 textboxes data. Every time I try I get a NULL returned even though I know there is something there. I know I am missing something incredibly easy. 
Slav
Telerik team
 answered on 13 Mar 2014
1 answer
189 views
Hi Team,
 I am working on radgrid with custom paging concept. Here we have four columns with filters. I am facing the problem as follows.

1. Initially I given filter value 'a' contains for column1.
    a.) get the filter expression from current filter expression property in command event.
2. Now I given filter value 'k' contains for column2.
    a.) for this I am getting previous column1 expression from grid filter expression property.
    b.) for column 2(latest filter value) from the current filter expression property in command event.
3.) When I removed the Filter value for column. getting column1 and coulmn 2 expressions from filter expression
expected one is: I dont want column filter value.

Please help me.

Regards,
Prasad.
Viktor Tachev
Telerik team
 answered on 13 Mar 2014
1 answer
80 views
There is a RadFileExplorer control in my application. When I select the folder from the treeview suppose I select the child node then the data which is in child Node is get into the grid and suppose the close the rad file explorer the open again then I want that I child node which I selected prevoiusly is selected shown in the rad file explorer and also the data related to the child node  is shown in the grid
Vessy
Telerik team
 answered on 13 Mar 2014
3 answers
1.7K+ 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
201 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
36 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
57 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
493 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
81 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
51 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
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?