Howdy!
First off I'd like to say thank you to whomever implemented the flexible
property init, which allows me to, say, add a description field to each form
element for display beneath the label in my custom form. Works like a charm.
However, I have noticed several issues which seem to be outstanding (due to
lack of use?)
1. TextArea fields have a large amount of whitespace added to them.
Unfortunately for Kid, TextArea fields are whitespace sensitive, thus a None
value results in two tab on one line, then one more on another in the case of
my template. There has to be a way to force KID to not "prettyprint" the
content of certain elements...
2. Tag termination - while the following -is- valid, it certainly is not
optimum!
> <input class="text_field" type="text" name="Title" value="" id="Title">
>
> </input>
There will likely be other nit-picky details as I convert my hand-written (and
beautiful, I might add) forms to Widget.
Have a great day,
Matthew Bevan
P.s. Widget is providing a great base for me to have a generic "modify" kid
template with alternate Widget forms passed to it. Works like a hot darn to
solve some modularity problems with my forms... (i.e. the update form for an
Article can take the existing Page editor and add two fields - and it just
works.)