Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
342 views
hi i dynamically create RadComboBox and fill items then set SelectedItem if the SelectedItem Exist on the database
next time i click another link on again i clear all dynamic items again i create dynamic controls
but the problem is second time created Combobox holds the selectedItem of First time created Combobox
how to solve this problem?
Princy
Top achievements
Rank 2
 answered on 13 Jan 2012
1 answer
440 views

Iam using a telerik RadGrid and I want to check if GridDataItem is in edit mode or not

Using javascript .

I can handle this using VB but I want to do it on Client Side.

If anyone can tell me also how to loop through all Items in the Grid and get selected item

using JavaScript.

I'm stuck Here .. Any Help Please ... I will be grateful.

2) I have a problem with OnCommand function in Javascript

I have a commandItemTemplate in radgrid.

and I add a client event: <ClientEvents OnCommand="OnCommand" />

Function: function OnCommand(sender, args) { if (args.get_commandName() == 'EditSelected') { ....}

The OnCommand doesn't fire on any of the commands in the CommandItemTemplate , on the other hand , it fires on other commands like (Edit,Update,Delete,...).

I don't know why?? I need Help Please.

Shinu
Top achievements
Rank 2
 answered on 13 Jan 2012
1 answer
142 views
Hello all,

I am using Telerik radgrids to display information and within the control I am getting the following error on all the elements

"Type 'Telerik.Web.UI.GridRowIndicatorColumn' does not have a public property named 'FilterControlAltText'."  I am also seeing issues like radgrid is not a known element as well as other controls?

Thanks Caleb

Iana Tsolova
Telerik team
 answered on 13 Jan 2012
1 answer
147 views
Dear Telerik Team,

I am trying to  have my RadGrid to export as Excel and I am seeing following bugs with the same:

  1. There are a few dynamic columns added in the dataTable. Whilst the screen display is fine, the excel file shows the data in the dynamic columns but the grid headers are missing for those columns.
  2. A couple of grid columns has hyperlink. They are incorrectly hyperlinked as C:/Documents and settings/~/details.aspx 

Can you help out with a fix or workaround for these RadGrid Excel bugs?
Princy
Top achievements
Rank 2
 answered on 13 Jan 2012
1 answer
202 views
Hi, 
I have a Radgrid controls  ~ 60 columns and  50-100 rows.These data are fetched from multiple SQL Server tables and binded to grid using item_databound and Need Data Source.  
I want to implement adding new records to the Grid. The issue is that I need to display controls for inserting new values in between existing rows, so user can see before and after records while inserting the new one.

Please advise me what is the best practice for implementing this scenario? 

Thanks.

Shinu
Top achievements
Rank 2
 answered on 13 Jan 2012
1 answer
121 views
Hi,,,

I have some quires  reagrding Structre columns
First is these grid columns always automatically generated or not..
another is can we use thsese column as user defined column type in grid or not.
1) GridRowIndicatorColumn: its sets automatically when we set allow resizing property to true.but incaseautogeneratedcolumn property set to false still this column showing at the begining of grid.Another issue is like  that if we dont set allow resizing property but using  GridRowIndicatorColumn  class  directly as a user defined column then the column is not visible at all.So can we use GridRowIndicatorColumn class directly or not.
2)GridGroupSplitterColumn: it sets automatically when grouping enable,to facilitate the expand/collapse functionality.But incaseautogeneratedcolumn property set to false still this column showing at the begining of grid.Another issue is like  that if we dont set grouping expression property but using  GridGroupSplitterColumnclass  directly as a user defined column then the column is not visible at all.So can we use GridGroupSplitterColumnclass directly or not.
3)GridExpandCoulmn: same like ....

Please give some suggestions to clarify thsese issues.
Please share some demos\samples  where  we are using direcltly GridRowIndicatorColumn,GridGroupSplitterColumn and GridExpandCoulmn  as users defined column type.
Shinu
Top achievements
Rank 2
 answered on 13 Jan 2012
4 answers
193 views
Hi,

I need to create a template to be applied for all the days. Is it possible to do so?
I know the concept of SpecialDays, which we can define the template for 'individual' day. But is there any way for me to define the template to be applied for all the days, instead of adding all the days to the SpecialDays.

Really appreciate your help!
Larissa
Top achievements
Rank 1
 answered on 13 Jan 2012
2 answers
122 views
Hi, I've been looking around on the forums for this issue but to no avail.

I have a very simple project that has a RadGrid with some data. I enable sorting on the grid, and I set the images path for the SortAsc and SortDesc images.
The sorting works fine when I click on the column title text. However when I click on the arrows, nothing happens.
Any ideas?

A working asp file as an example:

<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
    CodeBehind="Default.aspx.cs" Inherits="RadGridTester._Default" %>
 
<%@ 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">
    <asp:ScriptManager ID="ScriptManager1" runat="server" />
    <telerik:RadGrid ID="RadGrid1" runat="server" ImagesPath="App_Themes/Default/icons/">
        <MasterTableView AllowSorting="true" AutoGenerateColumns="False">
            <Columns>
                <telerik:GridBoundColumn HeaderText="LAST NAME" DataField="LastName" SortExpression="LastName"
                    UniqueName="LastName" SortAscImageUrl="App_Themes/Default/icons/SortAsc.gif" SortDescImageUrl="App_Themes/Default/icons/SortDesc.gif">
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn HeaderText="FIRST NAME" DataField="FirstName" SortExpression="FirstName"
                    UniqueName="FirstName" SortAscImageUrl="App_Themes/Default/icons/SortAsc.gif" SortDescImageUrl="App_Themes/Default/icons/SortDesc.gif">
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn HeaderText="EMAIL" DataField="Email" SortExpression="Email"
                    UniqueName="Email" SortAscImageUrl="App_Themes/Default/icons/SortAsc.gif" SortDescImageUrl="App_Themes/Default/icons/SortDesc.gif">
                </telerik:GridBoundColumn>
            </Columns>
        </MasterTableView>
    </telerik:RadGrid>
</asp:Content>

And codebehind:



using System;
using System.Collections.Generic;
 
namespace RadGridTester
{
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            var list = new LinkedList<Item>();
            list.AddLast(new Item() { LastName = "Doe", FirstName = "John", Email = "john@doe.com" });
            list.AddLast(new Item() { LastName = "Doe", FirstName = "Jane", Email = "jane@doe.com" });
            list.AddLast(new Item() { LastName = "Doe", FirstName = "Joe", Email = "joe@doe.com" });
            list.AddLast(new Item() { LastName = "Doe", FirstName = "Jimmy", Email = "jimmy@doe.com" });
            list.AddLast(new Item() {LastName = "Doe", FirstName = "Jack", Email = "jack@doe.com"});
            RadGrid1.DataSource = list;
            RadGrid1.DataBind();
        }
 
        private class Item
        {
            public string LastName { get; set; }
            public string FirstName { get; set; }
            public string Email { get; set; }
        }
    }
}
Ivan
Top achievements
Rank 1
 answered on 12 Jan 2012
4 answers
810 views
Is it possible to limit the max page size?  Some of our data is quite large and alot goes on in rendering.  We want to limit the max page size so we don't have a degredation of performance.  Any assistance would be greatly appreciated.
Cradz
Top achievements
Rank 1
 answered on 12 Jan 2012
2 answers
64 views
I have a RadGrid inside a RadWindow -- When I edit a row in the grid and press "insert", the page becomes extremely slow, as in the mouse drags and there are seconds in between movements on the page.  This continues until the page is refreshed.

It seems like some kind of memory leak, and from my research it seems possible that this is an issue that was fixed in the most recent versions of Telerik?  But I don't have access to the updates right now, and I'm hoping that there may be an answer that doesn't involve updating at the moment.

Thanks, I am always grateful for the help of the Telerik community.
Daniel
Top achievements
Rank 1
 answered on 12 Jan 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?