The following FTL inscription works fine for me and calls getWidgets () on my server side JiveActionSupport object:
<
-- do something with widget.sku
</
However, I really need an internal list, which depends on the property of the widget, something like this:
<
<
-- do something with manufacturer
</
</
I tried to implement server code like:
public List<Manufacturer> getManufacturers(int sku);
public List<Manufacturer> getManufacturers(String sku);
But both results: "Undefined expression producers on line 123."
How to pass parameters to methods of the current JiveActionSupport object? Thank.
source
share