I use GWT UiBinder to create the view of a GWT app. There is a dynamic part of the view where I need to make a jsonp query for external server and display the String results from jsonp query into the gwt view page.
Is there a clever way to tell the uibinder xml file how to display these dynamic jsonp results?
it is basically inserting a list of Hyperlinks in the dynamic part of view. how can we do it with uibinder ?
You can't. You should retrieve this string in your app, and inject it in your view.
You can create a custom widget that does this, and then you can use this widget in Ui:Binder, but you should consider how it would affect automated testing of your app.