Hello
The following code is supposed to place an editor control of type UltraNumericEditor on the single node that it has. However, it does not work.
Can you please tell what is wrong?
Thanks a lot.
With Me.UltraTree1 .ViewStyle = Infragistics.Win.UltraWinTree.ViewStyle.OutlookExpress With .ColumnSettings .RootColumnSet.Columns.Add("TestColumn") .AutoFitColumns = Infragistics.Win.UltraWinTree.AutoFitColumns.ResizeAllColumns End With With .Override .ShowEditorButtons = Infragistics.Win.UltraWinTree.ShowEditorButtons.Always .EditorControl = UltraNumericEditor1 End With With .Nodes .Add("FirstNode") End With End With
I don't know if its the best thread for me, but i ask my question:
I need to write a custom embeddable editor for myself, for example i need to parse some binary data stored in a database.
Somebody can help me what should i do?
Sanya
Hi Sanya,
Writing your own customer Embeddable editor is a very lengthy and difficult process. If you have a recent version of NetAdvantage, it would be far easier for you to use the new UltraControlContainerEditor component and simply embed a UserControl or a control of your own in the grid column.
If you really want to write your own editor, then you should check out the RichTextBoxEditor sample included with NetAdvantage and use that as a guide.