Hi,
Kindly let me know from where we can download the latest version (trial version) and also let me know the cost of the latest version or
we are using old version, so can we download the latestversion without any cost ?
From: Support | telerik
To: murali.subramanian@aspiresys.com
Sent: Tuesday, December 01, 2009 8:10 PM
Subject: RE: General Feedback ID:237563 -- Issue in Rad Grid View - Filter
Please, do not reply to this e-mail.
You are receiving this message because you have been copied to a ticket in Telerik's Support System.
From:
Date: 12/1/2009 8:40:39 AM
CC: murali.subramanian@aspiresys.com,srinivasan.mani@aspiresys.com
Hello muralitharan,
You use a very old edition of RadGridView. Please download and use the latest edition of RadControls for Winforms (Q3 2009). We have made many improvements and fixes in filtering.
Kind regards,
Julian Benkov
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
From: muralitharan
Date: 11/27/2009 6:25:39 AM
CC: murali.subramanian@aspiresys.com,srinivasan.mani@aspiresys.com
Hi,
We are using Image column in Radgridview (version 6.1.0.0) , In this image column, while clicking the filtering option or selecting the filtering cell, we are getting the error likes " Value Cannot be null ".
But this is not reproduce in 6.0.0.0,
Kindly let us know how to overcome this issue in 6.1.0.0
Thanks & Regards,
Murali
From:
Date: 8/27/2009 10:20:22 AM
Hello muralitharan,
The information you have provided is not enough to figure out where the problem is. Please give us a more detailed description of your scenario or send us a simple project to reproduce the problem locally. We have moved your Forum thread to our support ticketing system to allow attachments. You can find the ticket in your account --> My Support Tickets. The Ticket ID is 237563.
Thank you in advance.
Best wishes,
Julian Benkov
the Telerik team
childnode = new RadTreeNode("child"); childnode.MouseDown += new MouseEventHandler(node_MouseDown); |
After selecting the row and focusing on the textbox, whenever i press any key it gives the following exception. (See Attached File.)
I also tried it in your DEMOS of multicolumn comboBox and i received the same result.
It surely seems as a bug, i hope it will be removed in Q3.
Regards,
Onur
private void Browse_Click(object sender, EventArgs e) |
{ |
// ... |
if (dialog.ShowDialog() == DialogResult.OK) |
{ |
this.ProjectFile.Text = dialog.FileName; |
this.UpgradeButton.Enabled = true; // <--- this line |
} |
} |
public partial class Form1 : Form |
{ |
const string DISPLAY_FIELD = "Name"; |
const string VALUE_FIELD = "ID"; |
public Form1() |
{ |
InitializeComponent(); |
} |
private void radButton2_Click(object sender, EventArgs e) |
{ |
List<ComboItems> comboItems = new List<ComboItems>(3); |
comboItems.Add(new ComboItems("Red", 1)); |
comboItems.Add(new ComboItems("White", 2)); |
comboItems.Add(new ComboItems("Blue", 3)); |
RadComboBox rcb = new RadComboBox(); |
rcb.DisplayMember = DISPLAY_FIELD; |
rcb.ValueMember = VALUE_FIELD; |
rcb.DataSource = comboItems; |
// rcb.Items.Count == 0 at this point |
rcb.Parent = this; |
// now rcb.Items.Count == 3 |
} |
} |
public class ComboItems |
{ |
public string Name { get; set; } |
public int ID { get; set; } |
public ComboItems(string displayMember, int valueMember) |
{ |
Name = displayMember; |
ID = valueMember; |
} |
} |
+------------------------------------+----------------------------------------------------+ |
| Name | Location | |
+----------------+-------------------+--------------------------------+-------------------+ |
| fname | lName | address 1 | address 2 | |
+----------------+-------------------+---------------+----------------+-------------------+ |
| | | street | state | country | |
+----------------+-------------------+---------------+----------------+-------------------+ |
view.ColumnGroups.Add(new GridViewColumnGroup("Name")); |
view.ColumnGroups.Add(new GridViewColumnGroup("Location")); |
view.ColumnGroups[0].Rows.Add(new GridViewColumnGroupRow()); |
view.ColumnGroups[0].Rows.Add(new GridViewColumnGroupRow()); |
view.ColumnGroups[0].Rows[0].Columns.Add(radGridView1.Columns["fname"]); |
view.ColumnGroups[0].Rows[0].Columns.Add(radGridView1.Columns["lName"]); |
view.ColumnGroups[1].Rows.Add(new GridViewColumnGroupRow()); |
view.ColumnGroups[1].Rows.Add(new GridViewColumnGroupRow()); |
view.ColumnGroups[1].Rows[0].Columns.Add(radGridView1.Columns["address 1"]); view.ColumnGroups[1].Rows[0].Columns.Add(radGridView1.Columns["address 2"]); |
view.ColumnGroups[1].Rows[1].Columns.Add(radGridView1.Columns["street"]); view.ColumnGroups[1].Rows[1].Columns.Add(radGridView1.Columns["state"]); view.ColumnGroups[1].Rows[1].Columns.Add(radGridView1.Columns["country"]); |