Please help to resolve the problem...
I have form model and I need to dynamically include the list of strings
there.
The widget is:
<fd:multivaluefield id="ionsPairs">
<fd:label>Connections</fd:label>
<fd:datatype base="string"/>
</fd:multivaluefield>
on some action I pass the params to the multivaluefield:
var test = dao.jdbc.getIonPairsNames(id);
var values = new Array();
for(var t = 0; t < test.size(); t++) {
values[t] = test.get(t).get("label");
}
var multivaluefield = form.lookupWidget("ionsPairs");
multivaluefield.setValues(values);
But on the page I have this list with buttons (del, up, down... etc).
How can I make custom XSLT to get just the list of elements?
Can I make it without fd:field?
--
View this message in context:
http://www.nabble.com/custom-XSLT-instead-of-multivaluefield-tp23004454p23004454.html
Sent from the Cocoon - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]