I have a table with two TD having width 40% and 60%
In the TD with width 60% , i have a dhtml grid with few columns initially hidden.When i set the visibility to true my grid starts expanding and cross the td width.Not sure why its happening
Code below
<td valign="top" width="60%" id="rightGridFrameTable" >
<table align="left" id="mainSecuritiesResultTable" width="100%">
<tr>
<td align="left" valign="top" width="100%">
<div id="aptCurveChartDiv" style="width: 100%"></div>
</td>
</tr>
<tr>
<td>
<div id="securitiesDiv" class="aptCurveDiv mainDiv">
<table>
<tr>
<th align="left" class="wmc-tableheader">
<span id="securitiesLabelSpan" class="wmc-tableheader" style="float: left"><b>Securities</b></span>
</th>
</tr>
<tr>
<td align="left" width="100%">
<div id="securitiesResultTableDiv" class="aptCurveDiv">
<textarea id="aptSecuritiesResultEle" class="hide"></textarea>
<div id="securitiesResultTable" class="aptSecuritiesResultEle dhtmlxGridDiv150" ></div>
</div>
<div id="loadingSecuritiesInfoDiv" class="aptCurveDiv" style="color: red;">Loading Securities Information...</div>
<div id="tempNoSecuritiesInfoDiv" class="aptCurveDiv" style="color: red">No securities information found</div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</td>