Planner rendering issue with html doctype declaration

Hi,
We are evaluating JavaPlanner for one of our product, and started with samples JSP code provided on website which is connected to mysql database instance.

Thing is that we are facing wearied issue with HTML doctype declaration. When we add declaration in code the planner is not rendering in browser but if doctype declaration it works well .

[code]<%@ page language=“java” contentType=“text/html; charset=UTF-8” pageEncoding=“UTF-8”%>
<%@ page import=“com.dhtmlx.planner.,com.dhtmlx.planner.data.,org.apache.catalina.Session,com.dhtmlx.planner.extensions.DHXExtension”%>

[/code]

Again if we are adding following extension, planner is rendering.

planner.extensions.add(DHXExtension.CONTAINER_AUTORESIZE);


Have you set fixed sizes of scheduler, like next ?

planner.setWidth(844); planner.setHeight(518);

By default scheduler will try to use height:100% which may not work so well, based on page layout
As alternative to above code, you can try to add the next stylting to the problematic page

html, body { height:100%; }

Thank you so mcuh!
Yes by setting height manually resolved issue.