Unfortunately the DTD only allows inlines in the select, checkbox and radio elements, so you can't merge them. Also, TagUI evaluates all the inlines, then figures out which rulesets to use. I believe the order of this isn't specified, so it could change to eliminate unused computation. The only idea I could suggest would be to pre-compile or serverize the inlines.
Hi,Could you please give some inputs on PRECOMPILING and SERVERIZING the inlinesThanks
precompiling - there is no requirement to use perl in inlines. IndigoStar has a perl compiler, but I'm not sure if it's not just a packaging tool that still interprets the script. There's also a "compiler" (http://www.faqs.org/docs/perl5int/compiler.html) that enables you to eliminate the time required to create the parse tree - only valuable if your perl programs are huge. My precompile comment was to suggest using C or C++ if there is lots of computation in the perl inline.serverization - sure, it's a coined term, but English is beautiful that way. If setup time (DB connections, disk data, etc) is dominating the execution time of the inline, converting the inline to a simple service (REST is usually easier than SOAP) and calling that service using a simple inline via LWP might speed things up.