Hi Scott,
> So make your own Table component that does the same, but includes your own
> TablePages component.
Well, that's a lot of changes for such a trivial thing.
Given that component A includes component B includes component C.
I only want to change C. It seems that I have to create my own
Hi Andre,
Is it just the contrib:TablePages component you want to override? That is
fairly simple:
contrib:Table is an empty wrapper component for contrib:TablePages,
contrib:TableColumns, contrib:TableRows and contrib:TableValues.
So make your own Table component that does the same, but inclu
Hi Andre,
Components in the contrib library are not in the same namespace as those in
the framework library (ie. the default library). Framework components have
the default namespace (eg. Insert) and these can be overridden by providing
your own component with the same name (ie. your own Insert
I think someone just added ajax paging tables into tacos.
On 3/17/06, André <[EMAIL PROTECTED]> wrote:
>
> Hi all,
> (I am not on the list, please include me in replies)
> I want to do what is stated being possible in:
>
> http://jakarta.apache.org/tapestry/UsersGuide/components.html#components.li
Hi all,
(I am not on the list, please include me in replies)
I want to do what is stated being possible in:
http://jakarta.apache.org/tapestry/UsersGuide/components.html#components.libraries.namespace
"In fact, it is possible to override both pages and components provided by
the framework."
But how