Vaadin GWT Widget Modification -
i need modify gwt code of vaadin table widget. how begin ?. can find gwt code of table widget?
thanks
vaadin widgetset sources included in .jar file since gwt compiler needs java source code generate javascript. hence can access sources in ide, instance in eclipse pushing f3 on method o class name in code.
in vaadin, server components bundled in vaadin-server.jar, , client widget implementations in vaadin-client.jar. have original code available @ https://github.com/vaadin/vaadin/
normally easier option modifying vaadin widget copying code of classes want modify in project, using same namespace, compiler use them because of classpath preference. remember have compile widgetset each time make modifications in client code.
but recommended option extends classes involved in widget (server component, client classes) , use own widgetset implementation. have more info in book of vaadin: https://vaadin.com/book/vaadin7/-/page/clientside.widget.html
Comments
Post a Comment