Currently I’m working on a extensive form, which I’d like to organise by grouping input fields in groupbox-like panels. These panels have an header, a minimize and pin icon. Also inner controls should be able to perform two-way binding to the FormViews datasource.
I can’t find any builtin asp.net control that does the job. What is the best way to accomplish this feature request? Any examples available on this (can’t find a decent one)?
Many thanks!
Tuturials are interesting, but didn’t realy need templated controls at the moment, neither databound controls. Only controls in the controlcollection should be able to do so, but apparently they’re able by default.
Found out multiple ways to accomplish. One to extend the default Panel control, the other one to extend from WebControl as shown below. Works as intended.