Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
425
ComboEditor based on UltraComboEditor in UltraWinTree
posted

Tried using the following as a reference:

http://help.infragistics.com/Help/Doc/WinForms/2012.1/CLR2.0/html/WinTree_Embeddable_Editors_Overview.html

The overview is great but unfortunately does not come with samples and the samples that come with the controls don't have a simple example of this implementation.

The following link provided some more direction but I'm still not getting the results I expect http://ko.infragistics.com/community/forums/t/1995.aspx

 

Here is what is currently coded:

aCtlSearch = New CustomSearchCombo 'control that inherits from UltraComboEditor

node.Cells("Value").EditorComponent = aCtlSearch

 

I was expecting this to be straight-forward, but have been pulling out my hair because it won't seem to work.  It looks ok when displayed, but I'm having two problems that seem to tie back to the same core issue - the embedded editor does not appear to be used.  My understanding is that the editor should be acting as the control that is in edit mode.  However, when a method in the CustomSearchCombo it is seeing the Me.Text value as null rather than what has been typed.  Does this need to handled explicitly?  If so, what is the purpose of allowing an embeddable editor if all of the functions that the editor performs cannot be used without explicitly coding for each one (or perhaps I'm missing something key here)?