Announcement

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

    UploadItem in Chrome

    If you check this simplified code in Chrome, you'll see that the button will be displayed in a second row. For some reason SmartClient generates a code with one more table row in Chrome. But not in IE and FF, where only one row is displayed. Is there a way to achieve this in Chrome as well?
    Code:
    isc.DynamicForm.create({
    	numCols: 2,
    	fields: [
    		{name:"file",type:"upload", showTitle:false},
    		{name:"submit",type:"button",title:"Upload", startRow:false}
    	]
    });

    #2
    Anyone? (I'm using 7.0RC2)

    Comment


      #3
      Just in case anyone has this problem too:
      add colSpan:1 to the upload item. I have no idea why it needs to be added, but this way it works in Chrome too.

      Comment


        #4
        A correction: you have to add colSpan: 1 AND endRow: false too. Both are needed.

        Comment

        Working...
        X