From: Katana <ka...@ka...> - 2004-02-27 09:34:48
|
> <fs:option value="field1" selected="selected">value_1</fs:option> > <fs:option value="field2">value_2</fs:option> > <fs:option value="field3">value_3</fs:option> > === > gets > === > <fs:option value="field1" selected="selected" tagValue="value_1" /> > <fs:option value="field2" tagValue="value_2" /> > <fs:option value="field3" tagValue="value_3" /> Unfortunately, one of my goals with formsess is to stay as close as possible from standard HTML code, so I really want to keep a syntax similar to <option>...</option> I don't think that complexity in the Filter is really a problem since it is only supposed to be called once when the template is compiled and never again. Katana |