We have made some modifications - but mostly to the other tags like select
etc.
We originally used the webtable stuff, but now we've rolled our own table
management because our needs were just too complex. Writing a generic table
component is really very very hard ;)
-mike
On 27/4/02 2:25 PM,
Seems like the easy fix would be to change WebTable to
public void addParameter(String name, Object value)
{
BeanUtil.setProperty(name, value, this);
super.addParameter(name, value);
}
You may have some duplication but it should work. I haven't worked with the
table tag much. I be