xsl-list
[Top] [All Lists]

Re: 3 elements on a same line

2005-09-11 20:44:53





Hi,
     If you want them on the same line, then why have 3 rows. You only need
one row. You say you tried with columns and it didn't work. Can you tell us
what didn't work and what xsl you used.

cheers,
prakash





                                                                                
                                                
                      bharathi kongara                                          
                                                
                      <bharathikongara         To:      
xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com                                
         
                      @yahoo.com>              cc:      (bcc: 
omprakash.v/Polaris)                                              
                                               Subject: [xsl] 3 elements on a 
same line                                         
                      09/12/2005 05:02                                          
                                                
                      AM                                                        
                                                
                      Please respond                                            
                                                
                      to xsl-list                                               
                                                
                                                                                
                                                
                                                                                
                                                




Hi

I've the following table - I want to put the
QuestionNo, QuestionText, and QuestionScore on the
same line in the resulting output.

<xsl:template match="Question">
   <fo:table table-layout="fixed" width="100%" >

      <fo:table-column
column-width="proportional-column-width(1)"/>

      <fo:table-body space-after.optimum="15pt">
                    <fo:table-row padding-bottom="0.5em">
                         <fo:table-cell>

                                             <xsl:apply-templates
select="QuestionNo"/>

                                                 </fo:table-cell>
                    </fo:table-row>
                    <fo:table-row keep-with-previous="always">
                         <fo:table-cell>

                                             <xsl:apply-templates
select="QuestionType"/>

                                                 </fo:table-cell>
                    </fo:table-row>
                    <fo:table-row keep-with-previous="always">
                         <fo:table-cell>

                                             <xsl:apply-templates
select="QuestionScore"/>

                                                 </fo:table-cell>
                    </fo:table-row>
<fo:table-row keep-with-previous="always">
                         <fo:table-cell>

                                             <xsl:apply-templates
select="QuestionText"/>

                                                 </fo:table-cell>
                    </fo:table-row>
</fo:table-body>

  </fo:table>
 </xsl:template>

I tried with columns, didn't work(I'm using FOP to
render the o/p). Any ideas???

Thanks,
Bharathi







______________________________________________________
Yahoo! for Good
Watch the Hurricane Katrina Shelter From The Storm concert
http://advision.webevents.yahoo.com/shelter


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--





This e-Mail may contain proprietary and confidential information and is sent 
for the intended recipient(s) only. 
If by an addressing or transmission error this mail has been misdirected to 
you, you are requested to delete this mail immediately.
You are also hereby notified that any use, any form of reproduction, 
dissemination, copying, disclosure, modification,
distribution and/or publication of this e-mail message, contents or its 
attachment other than by its intended recipient/s is strictly prohibited.

Visit Us at http://www.polaris.co.in

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>