Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Egveny on Apr 01, 2008 03:13
open dhtmlx forum
1. How to make alignment in the cell and header? 2. List of properties

1.How to make alignment in the cell and header?
I need the way how to make it when I initialize it form html table - s
omething like
<tr>
<td align=left>....

2. I cannot found in the documentation list of all properties that I can use when initialize
grid from html table or xml. How I can know it?
(for example gridHeight and gridWidth properties)


Answer posted by Support on Apr 01, 2008 06:23
>> 1.How to make alignment in the cell and header?
>> I need the way how to make it when I initialize it form html table - something like

While init from js , additional parameter can be used, but there is no such solution in case of init from HTML code, but you can use custom css class

<style>
    .a_left{
       width:100%; text-align:left;
    }
</style>
    ...
<tr>
    <td><div class="a_left">Header A</div></td>