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:
Thanks!
gr. Martin
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} ] });
gr. Martin
Comment