these components give you pretty much total control of how the select/option/optgroup tags are rendered. there is a convinience SelectOptions class that will create a quick list of options like the current choice components do. this one uses IOptionRenderer instead of IChoiceRenderer since it uses the actual model object instead of a string id. see the examples.
-Igor
On 11/22/05, Mark Derricutt <[EMAIL PROTECTED]> wrote:
Something along those lines yeh.On 11/23/05, Igor Vaynberg < [EMAIL PROTECTED]> wrote:so you want to specify the optgroup tags in your model? something like
class Category { String name; List choices }
and provide List<Category> as the model? so that the name of categories become optgroup tags?
