How to use DHTMX Scheduler in TABLE CELL

Hi All,

when i tried to use DHTMLX schedular in a table cell as follows the schedular is not visible.

[code]

 
 
[/code]

what is the reason and how to overcome this…??

Thanks and Regards
Tirupathi Rao.P

Hello,

what is the reason and how to overcome this..??

In your example table cell has 0px width and 0px height and scheduler uses

style='width:100%; height:75%;'

which also results in 0px width, 0px height.

Now to solve this either specify size for your

or scheduler itself.
<TABLE> <TR><TD style="width: 500px; height:500px;">

or

<div id="scheduler_here" class="dhx_cal_container" style='width:400px; height:300px;'>

Best regards,
Ilya