There is a small issue with the highlightning of all the buttons on the radgallery.
When you move the mousepointer on one of the buttons and the mousepointer is on the right half of the button than it is all ok. The button is highlighted and you can press the left mouse button and the correspnding action happens.
But when you move the mousepointer from the right half of the button to the left half then there is no highlightning of the button and you can press the left mouse button and no action happens.
Regards,
Ramius
GridViewComboBoxColumn colApproved = new GridViewComboBoxColumn(); |
colApproved.FieldAlias = "Approved"; |
colApproved.FieldName = "Approved"; |
colApproved.HeaderText = "Approved"; |
colApproved.DataSource = new string[] { " ", "Approve", "Deny" }; |
private void btnApproveAll_Click(object sender, EventArgs e) |
{ |
foreach(GridViewDataRowInfo row in this.radGridView1.MasterGridViewTemplate.Rows) |
{ |
if (((Button)sender).Text == "Approve All") |
{ |
row.Cells["Approved"].Value = 1; |
} |
else |
{ |
row.Cells["Approved"].Value = 0; |
} |
} |
if (((Button)sender).Text == "Approve All" ) |
{ |
((Button)sender).Text = "UnApprove All" ; |
} |
else |
{ |
((Button)sender).Text = "Approve All"; |
} |
} |
((ComboBox)row.Cells["Approved"]).SelectedIndex = 1; |
My old project was: VS 2008, using VB.Net and Telerik Q1 2009.
I've update project through Project Update utility but obtain a lot of error messages (see picture: http://pic.ipicture.ru/uploads/090710/IPanVnW98P.png ).
If I try to change version of dll's manually (from 2009.1.9.414 to 2009.2.9.701) - many errors appeared (actually during changing version of TelerikCommon.dll).