I have a grid (Q2 2014 SP1) with several columns and one checkbox column. The checkbox is the only information that can be modified by the users. Now, depending on the checkbox state, I paint the row using this code (where "IsConcilie" is the checkbox's column name):
if (row.Cells["IsConcilie"].Value.Equals(true))
{
rowElement.DrawFill = true;
rowElement.GradientStyle = GradientStyles.Solid;
rowElement.BackColor = Color.Gray;
rowElement.ForeColor = Color.White;
}
else
{
rowElement.ResetValue(LightVisualElement.BackColorProperty, ValueResetFlags.Local);
rowElement.ResetValue(LightVisualElement.GradientStyleProperty, ValueResetFlags.Local);
rowElement.ResetValue(LightVisualElement.DrawFillProperty, ValueResetFlags.Local);
rowElement.ResetValue(LightVisualElement.ForeColorProperty, ValueResetFlags.Local);
}
The problem I have is when one of the cell is clicked, the cell is selected and painted using the default colors which makes the cell hard to read because it keeps my foreground color setting.
Since only the checkbox can be modified, is here a way we can prevent the selected cell to paint using the default painting behavior? Or how can I handle the painting of the cell myself and bypass the default settings? Or even, can we make the rows non-selectable?
Thanks.

Trying to implement this feature-
http://feedback.telerik.com/Project/154/Feedback/Details/112143-fix-horizontal-scroll-bar-should-appear-when-auto-size-columns-mode-is-enabled-a
With ColumnGroups and it does not seem to honor the minimum column widths. Is there a way to implement scrolling when using auto sized columns when the view has been put into ColumnGroups?

I using a demo copy of your Winforms Rad Control for testing and evaluation. My issue is when I'm using one of your radforms my data sources window will not allow me to drag and drop Entity framework 6 data sources onto your forms. Can you tell me how to resolve this issue please ?
Image using a rad form unable to drag & drop data sources
Image using a standard windows form data sources work correctly
regards
Neil



Hi to all,
I trying to copy from one gridview that has 4 columns and paste another gridview that has 3 columns.
Now, in RadGridViewPasting of destination GridView I wrote this code, those gridviews are into Windows dialog that called from main Windows with ShowDialog mode. But this code generate an error.
If I compare ContainsData in incoming and ContainsData in outcoming are formally correct.
What's up?
01.private void MappingRadGridViewPasting(object sender, GridViewClipboardEventArgs e)02. {03. try04. {05. if (Clipboard.ContainsData(DataFormats.Text))06. {07. string data = Clipboard.GetData(DataFormats.Text).ToString();08. if (data != string.Empty)09. {10. var items = data.Split('\n');11. 12. StringBuilder sb = new StringBuilder();13. 14. for (int i = 0; i < items.Length; i++)15. {16. var fields = items[i].Split('\t');17. 18. int type = Convert.ToInt32(fields[0]);19. int id = Convert.ToInt32(fields[1]);20. string name = fields[2];21. 22. if (i == items.Length - 1)23. sb.AppendFormat("{0}\t{1}\t\t{2}", type, id, name);24. else25. sb.AppendFormat("{0}\t{1}\t\t{2}\r\n", type, id, name);26. }27. 28. string output = sb.ToString();29. 30. Clipboard.SetData(DataFormats.Text, output);31. }32. }33. 34. }35. catch (Exception ex)36. {37. ExceptionHelper.ShowException("MappingRadGridViewPasting", ex);38. }39. }
I'm looking for some clarification on the Bin and Bin40 directories.
I a previous thread there was mention that Bin was for .net 2.0 and Bin40 was for .net 4.0, but that doesn't really explain how the directories should be used. We build under .net 4.0. Recently in our projects, we somehow found some references to assemblies in the Bin directory that were causing exceptions. We never reference anything in that dir... at least not intentionally.
Can someone explain the difference between what's in the Bin and Bin40 directories, why they exist and what developers need to know about them? Thanks.
Steve


Hi All,
in the former control I used the TextChanged Event with others to set a dirty flag providing the user a message to save his changes before leaving the Editor. In the current control the Event is not firing.
As an alternative I used the ContentChanged Event if the user changes any text. But this Event has the drawback that is fired after loading the form before the user had any chance to enter any character.
What can be done to get that scenario working.
Best Regards
Herbert
