Nancy,

Could you send an XSL-FO snippet **that demonstrates the problem.

Thanks,

Patrick

nancy_b wrote:
> Hi dear Patrick!
>
> Thanks for your suggestions. I understand what you say. But I tried to fix
> this in my customization layer like that: 
> <xsl:template match="table">
> <xsl:call-template name="calc.column.width">
>          <xsl:with-param name="colwidth" select="1*"/>
>        <xsl:if test="contains($colwidth, '*')">
>     <xsl:text>proportional-column-width(</xsl:text>
>     <xsl:value-of select="substring-before($colwidth, '*')"/>
>     <xsl:text>)</xsl:text>
>   </xsl:if>
>   </xsl:call-template>
>   <xsl:apply-templates/>
> </xsl:template>
>
> But it did not help. Please advise!
>
> Thanks in advance,
> Nancy
>
>
> Patrick Paul wrote:
>   
>> Hi,
>>
>> Since you are using the fixed table-layout FOP expects you to specify
>> the width of each column using the column-width property. Here FOP is
>> warning you that some columns have an unspecified width (or maybe they
>> are set to "auto" which essentially gives the same warning message),
>> therefore it is dividing the remaining horizontal table space equally
>> between these columns.
>>
>> To fix this you can specify fixed a width for your columns or use the
>> proportional-column-width(1) property function. The behavior of this
>> function is described further in the W3C's XSL recommendation:
>> http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8624-Property-Value-Functions
>>
>> Hope that helps,
>>
>> Patrick
>>
>> nancy_b wrote:
>>     
>>> Last shot for today :-)
>>>
>>> For some reason, FOP complains about my tables:
>>> WARNING: table-layout="fixed" and column-width unspecified => falling
>>> back
>>> to proportional-column-width(1)
>>> Jul 24, 2007 1:47:14 PM org.apache.fop.fo.flow.TableColumn bind
>>> WARNING: table-layout="fixed" and column-width unspecified => falling
>>> back
>>> to proportional-column-width(1)
>>> Jul 24, 2007 1:47:14 PM org.apache.fop.fo.flow.TableColumn bind
>>>
>>> Any guess how I can fix it?
>>>
>>> Thank you all in advance!
>>>
>>> Best wishes,
>>> Nancy
>>>       

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

Reply via email to