Hello Telerik,
I have two small questions about PropertyGrid.
1. Is possible to have a hyperlink in one Property Value (not entire column, just one or several values to be URL)
2. I've tested the nice feature of grouping. Can I have more sub-groups there, or expandable one, eg:
Distributors (main group)
Belnor ( sub group)
Property - Value
Property - Value
Kirkwald (sub group)
Property - Value
Property - Value
Thanks in advance,

Hello.
I want to change the text of the column in listview with checkbox
I have
Public Sub lvRegDePedido_ItemCheckedChanged(sender As Object, e As ListViewItemEventArgs) Handles lvRegDePedido.ItemCheckedChanged formatoDeCellda() End Sub
Private Sub formatoDeCellda() Try Dim e As ListViewCellFormattingEventArgs e = Nothing If e.CellElement.Data.HeaderText = "Estado del articulo" Then If e.CellElement.Text = "No entregado" Then e.CellElement.ForeColor = Color.Aqua End If End If Catch ex As Exception : MsgBox(ex.Message) End Try End SubI work in the trial version (demo)
Adj Img
Hello
Does RadControls have a textbox where in I can implement a textbox password field similar to Android Environment.
I should be able to enter a character, display the character entered for a few milliseconds before masking it using "asterix" or any other password
character. Also I should be able to edit/insert/delete any character anywhere in the content.

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. }