Quote:
quote:Originally posted by mhkay
You haven't given any clues about what the source document looks like.
I'm a bit confused anyway. Surely you don't have to specify width on every td in a column of a table for the browser to render the column with a constant width?
Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
|
My sample source file is given here.As i said before the sample i given here is only the part, my actual file contains more number of rows and columns (i.e. in actual source file more number of Instance and DataSet Tabs will appear, for every Instance Tabs new row is introduced)
sample source code:
<Root>
<Symbols>
<Name Width="1">aaa</Name>
<Name Width="1.5">bbb</Name>
<Name Width="1">ccc</Name>
<Name Width="1">ddd</Name>
</Symbols>
<Instance>
<DataSet>
<Data>1</Data>
</DataSet>
<DataSet>
<Data>sample_data1</Data>
</DataSet>
<DataSet>
<Data>123-456-789</Data>
</DataSet>
<DataSet>
<Data>data1234data4569data8901</Data>
</DataSet>
</Instance>
</Root>
how can i make my cell in a same column to display constant specified width ?
Venki