GWT resize textarea in IE Internet Explorer
问题 How can we make a textarea resizable in IE on a GWT project? A textarea can be made resizable using CSS, but this doesn't work in IE: .gwt-TextArea { resize: vertical; } 回答1: I figured out a solution using the JQuery resizable() method. In order to use it in a GWT project, I used JSNI (Javascript Native Interface) to integrate Javascript code into your GWT project. Steps Set the element id of the widget that we want to resize in GWT. Add your JQuery libraries to the GWT project's starter page