is it possible to render the editor in a predefined div?
Rationale behind this is a "listing - detail" scenario, where the DataTable only displays a fraction of the available data whereas the editor displays all available data.
Yes absolutely this can be done. You would use a display controller plug-in. I don't have a plug-in specifically for your use case, but in the open method for the plug-in you would simply append the append parameter to the element where you want the form to appear.
Answers
HI Udo,
Yes absolutely this can be done. You would use a display controller plug-in. I don't have a plug-in specifically for your use case, but in the
open
method for the plug-in you would simply append theappend
parameter to the element where you want the form to appear.Regards,
Allan
Hi Allan,
thanks, no example needed, the DisplayController was exactly the hint I required.
Udo