focus on editor

Hi

I’m using dhtmlxForm 3.0 & dhtmlxLayout.

When the Form cell(a) is expanded, i can’t focus on form’s editor.

And Editor cell(b) is expanded, i have to expand twice to focus on cell b.

I attach my completed demo.

Please guide me where should I check.

	<div id="winVP" style="width: 450px; height:350px;"></div>
	<script type="text/javascript">
	var dhxLayout,dhxForm,dhxEditor;
		function doOnLoad() {
			dhxLayout = new dhtmlXLayoutObject("winVP", "2E", "dhx_skyblue");
			var formStructure = [
				{type: "settings", position: "label-left", labelWidth: 80, inputWidth: 300,labelAlign:"right"},
				{type: "input", label: "subject", name:"subject", validate: "NotEmpty"},
				{type: "editor", name: "Description", id:"Description", label: "Description:", labelWidth:90 , inputWidth: 300, inputHeight:80,value:"Hello,Editor!"}
			];
			dhxForm = dhxLayout.cells("a").attachForm(formStructure);	
			dhxEditor = dhxLayout.cells("b").attachEditor();

			dhxLayout.cells("a").collapse();
			dhxLayout.cells("b").expand();
		}	
	</script>

Completed_Demo.zip (97.2 KB)

Unfortunately current version of dhtmlxForm doesn’t have public API to get/set focus on certain element.