Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
parameter from xslt to controller class
Nuresh
Hi Techie,
How to pass input field value as parameter from xslt to controller class in Teamsite while creating the component?
Thanks in advance for your valuable input.
Regards,
Nuresh.B.
Find more posts tagged with
Comments
Rick Poulin
You can't pass stuff from the XSL to the Controller, because the XSL executes much later in the chain. Even higher level than that, components execute after site/page controllers, so you can't pass information that way either. Either detect the presence of a component from your Controller code (yuck), or deal with whatever you need to do in your component's External class instead (or rethink your design entirely).
If you need some help with that, post the details of what you're actually trying to accomplish.