How to include a middleware UI widget in another middleware UI widget

I am trying to include a middleware UI widget in another: I am creating a form using a middleware UI and would like to include a fancy button made using a middleware UI. Does anyone know how to do this?

Thanks!

+4
source share
1 answer

Yes it is possible. Sort of:

<gwt:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:gwt='urn:import:com.google.gwt.user.client.ui' xmlns:foo='url:import:com.foo.your.package.here'> <gwt:HTMLPanel> <foo:YourUiBinderStuff /> </gwt:HTMLPanel> </gwt:UiBinder> 
+7
source

Source: https://habr.com/ru/post/1301058/


All Articles