All an informal parameter is is a parameter that's not declared as a component parameter. It's like the class attribute of the input element. The form element components (TextField, PropertySelection, etc) don't use a class parameter so you are free to use it on the component. It will be passed as-is to the rendered html tag:
In the template: <input type="text" jwcid="[EMAIL PROTECTED]" value="ognl:myValue" class="someCssClass" /> Or, template and spec: <input type="text" jwcid="textField"> <component id="textField" type="TextField"> <binding name="value" value="myValue" /> <binding name="class" value="literal:someCssClass" /> </component> Is that what you meant? -Mike On 3/30/06, Aj Gregory <[EMAIL PROTECTED]> wrote: > How do you insert the informal parameters in a component's html template? > Thanks! > -Aj > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
