Take the following layout - I've used the feature explorer to test this.
1. In the text area type "aaaa".
2. Now try to move the input cursor by pressing the left arrow on your keyboard. It will not let you.
1. In the text area type "aaaa".
2. Now try to move the input cursor by pressing the left arrow on your keyboard. It will not let you.
Code:
isc.VLayout.create({ID:"FormFrame1",title:" ",overflow:"auto"}); isc.HLayout.create({ID:"hLayoutWrapGridLayout",members: [isc.DynamicForm.create({autoFit:true,ID:"GridLayout", name:"GridLayout",title:" ",canFocus:true,canHover:true, numCols:1,titleSuffix:" ",rightTitlePrefix:" ", requiredTitleSuffix:"*",requiredRightTitleSuffix:"*", requiredRightTitlePrefix:"<B> ",colWidths:["100"],titleOrientation:"top",fields: [{title:" ",showTitle:false,colSpan:"*",ID:"TextArea", name:"TextArea", _constructor:"TextAreaItem"},{title:" ",showTitle:false,width:"*",colSpan:"1",ID:"TextField", name:"TextField",_constructor:"TextItem"}]})]}) FormFrame1.addMember(hLayoutWrapGridLayout);
Comment