Hi,
I'm trying to insert a DynamicForm into a Window kinda like SC.askForValue but with a more complex form.
Problem is all form items don't respond well to direction arrows (cursor doesn't move accordingly)
	If I switch addItem() to addChild() or addMember() the cursor moves OK but the layout is scrambled.
I have SmartGWT 2.2 on GWT 2.03.
I have this issue with FF 3.6, IE 6. Works fine on Chrome
Thanks for your help.
Regards,
					I'm trying to insert a DynamicForm into a Window kinda like SC.askForValue but with a more complex form.
Problem is all form items don't respond well to direction arrows (cursor doesn't move accordingly)
Code:
	
			Window w = new Window();
		w.setTitle("hi");
		TextItem ti = new TextItem("mytext", "Text");
		DynamicForm df = new DynamicForm();
		df.setFields(ti);
		w.addItem(df);
		w.centerInPage();
		w.setWidth(400);
		w.show();
I have SmartGWT 2.2 on GWT 2.03.
I have this issue with FF 3.6, IE 6. Works fine on Chrome
Thanks for your help.
Regards,

Comment