Announcement

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

    Scrolling in disabled textareaitem

    Hi,
    I have a disabled textareaitem with large content (so scrollbars are shown). The scrollbar works fine in chrome but in firefox (3.5) the scrollbar of a disabled textarea does not work.

    Should we use a specific option somewhere, or is there another workaround?

    We are still at a nightly build of the 11th of January and will upgrade in a few weeks to a newer nightly build. So maybe it is already solved, can you let me know?

    I used this example code in the textarea feature example:
    Code:
    var value = '';
    for (var i = 0; i < 100; i++) {
    value = value + ' abc';
    }
    isc.DynamicForm.create({
        width: 300,
        fields: [
            {title:"Description", type:"textArea", value: value, disabled: true} 
        ]
    });
    Thanks!

    gr. Martin

    #2
    Try using "readOnly: true" instead of disabled. I don't think this is technically a supported option but it seems to work better.

    Comment


      #3
      Vote for that in this issue:
      http://forums.smartclient.com/showthread.php?t=7766

      Comment

      Working...
      X