Martin Sachs wrote:
>> I'm looking for a little comparison of the development-time for
>> Applications in Wicket against other Technologies.
>>
>> I think the development with Wicket is two times faster than Struts. But
>> what are your experiences on JSF, Rails/Grails, SpringMVC/SpringWebFlow.
>
Hi,
I am using a DataView and I was trying to override isVisible() and use
"this.getRowCount()" to decide if the table should be rendered or not. But
this results in a stack overflow because DataView#getRowCount() internally
calls isVisibleInHierarchy().
The use case is trying to hide a table he
i also have a similar use case that requires "turning off" validation for
some ajax button links
e.g.
i have a form, that may have some text fields with different/none validators
and i want to do "translation" on some of the text fields by
ajax/dynamically,
so i need to use ajax button links to
You could maybe do get("component path").setVisibilityAllowed(false), but
that isn't a good practice since it's coupling your code to an internal
string in the wicket component.
AjaxFallbackDefaultDataTable really isn't doing much - just create your own
custom table that extends DataTable, and add
Hello Wicketeers,
I am using an AjaxFallbackDefaultDataTable. I would like to have the
navigation panel as a bottom toolbar rather than a top toolbar.
Is there any way to do this, other than overriding its constructor so it
does not do addTopToolbar(...) ?
Thank you,
David