I have some pages that are being reused to display things that are the same
but different.  For example: I have 3 organization types that all use the
same code.  But an organization type of 'client' might do a few different
things than a type of 'vendor'.  My decisions are based on an 'orgType'
request parameter.  So far, so good.

Here's what I need to do:
based on the orgType request parameter, make an orgType-specific call to one
of my tiles.

I have a tile for breadcrumbs that I pass in a path to, and then a tag on
the breadcrumb tile spits out the breadcrumb trail.  So far all I have in my
call to the tile is:
<put name="breadcrumb"
value="/jsp/common/breadcrumb.jsp?bc=/adminMain/organizations"/>
but I need it to be one of these:
<put name="breadcrumb"
value="/jsp/common/breadcrumb.jsp?bc=/adminMain/contractors"/>
<put name="breadcrumb"
value="/jsp/common/breadcrumb.jsp?bc=/adminMain/orgunits"/>
<put name="breadcrumb"
value="/jsp/common/breadcrumb.jsp?bc=/adminMain/adminProject/clients"/>

So, can I do this kind of logic in my tiles-def.xml?

Thanks in advance,
Janice


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to