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
895
RenderingControl is not displayed after calling DisplayLayout.Load
posted

The first time I show the form the  EditingControl / RenderingControl I setup on the grid column do show up as expected. Then when the form closes the DisplayLayout.Save(...) is called.

The second time I show the form the DisplayLayout.Load(...) is called and the EditingControl / RenderingControl I setup on the grid DO NOT show up as expected, they are empty cells.

I'm adding the UltraControlContainerEditor instance to a unbound column after the data binding.

Any ideas on how I can get the  EditingControl/RenderingControl to show up after the DisplayLayout.Load(...)?

Thanks,

Brian.

Parents
  • 48586
    Suggested Answer
    posted

    Hello ,

     

    As far as I know Save and Load methods of the UltraGrid.DisplayLayout save the settings of the default UltraGrid editors (grid settings) and you are using UltraControlContainerEditor as an EditorComponent of a grid’s column (external for the grid). That is why when you load your Layout, the UltraGrid does not know what should be the settings of the UltraControlContainerEditor. My suggestion is to save the settings of UltraControlContainerEditor, and to load them after you load the grid’s layout.

    UltraControlContainerEditor does not have implemented such methods like Save and Load, so I think that in this scenario you should decide how to load the control settings.

     

    Please let me know if you have any further questions.

Reply Children
No Data