Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Input Element keypress problem

    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.

    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:"&nbsp;",showTitle:false,colSpan:"*",ID:"TextArea",
    name:"TextArea",
    _constructor:"TextAreaItem"},{title:"&nbsp;",showTitle:false,width:"*",colSpan:"1",ID:"TextField",
    name:"TextField",_constructor:"TextItem"}]})]})
    
    FormFrame1.addMember(hLayoutWrapGridLayout);

    #2
    We're aware of a newly introduced problem with certain keys (including the arrow keys) in form items in certain cases.
    Our developers are working on this and should have a fix in the next day or two

    In the meantime if you're blocked you could temporarily workaround this by modifying your DynamicForm to have a keypress handler like this:
    "return isc.EventHandler.STOP_BUBBLING;"
    (You should mark that code as temporary and remove it when this issue gets resolved)

    Thanks
    Isomorphic Software

    Comment


      #3
      Great. Thanks!

      Comment


        #4
        This should now be resolved - try the next nightly build and let us know if you still encounter problems

        Regards
        Isomorphic Software

        Comment


          #5
          Thanks. It's fixed in the latest build.

          Is there an ETA for SC8 yet?

          Comment

          Working...
          X