Announcement

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

    BB Playbook redrawOnResize

    Load the sample on playbook. Put cursor on username. You should see the keyboard flashing up and down - this is because of the redrawOnResize property.


    Code:
    isc.VStack.create({
    	ID:"LoginGrid_vCentering",
    	name:"LoginGrid_vCentering",
    	autoDraw:true,
    	redrawOnResize:true,
    	height:"100%",
    	width:"100%",
    	align:"center",
    	defaultLayoutAlign:"center",
    	members:
    		[isc.DynamicForm.create({
    			width:240,
    			ID:"LoginGrid",
    			name:"LoginGrid",
    			numCols:2,
    			colWidths:["90","150"],
    			titleOrientation:"left",margin:0,
    			fields:
    				[{title:"<nobr>Username&nbsp;<\/nobr>",
    				width:"*",
    				colSpan:"1",
    				align:"center",
    				ID:"userId",
    				name:"userId",
    				length:25,
    				_constructor:"TextItem"},
    				{title:"<nobr>Password&nbsp;<\/nobr>",
    				  width:"*",
    				  colSpan:"1",
    				  align:"center",
    				  ID:"Password",
    					name:"Password",
    					required:true,
    					length:25,
    					_constructor:"PasswordItem"
    				}
    				]
    		})]});

    #2
    Getting a little ridiculous with the replies. Could someone tell me if this is our issue or not??

    Comment


      #3
      Not sure if you're aware that Playbook isn't an officially supported browser yet. However, we are interested in bug reports since we do plan support down the road, so this will be looked into, just not on our usual committed timeframes.

      Comment


        #4
        No, I was not aware of that. I didn't fully read the documentation - all I saw was Blackberry devices. Ok. So, playbook 2.0 and above then?

        "Blackberry devices that use a WebKit-based browser (future) "

        Comment


          #5
          We haven't settled on a specific version yet - as you can imagine, it's a process of discovering whether a given OS version has a showstopper issue.

          Comment


            #6
            Good to know. Will relay the msg. Thanks.

            Comment


              #7
              A quick follow up. We've just made a change that is likely to have resolved this particular issue - it will be present in the next nightly build - in both 8.2p and 8.3d branches.
              Regards
              Isomorphic Software

              Comment


                #8
                This issue has been resolved - tested with 03-30 8p build

                Comment

                Working...
                X