I use GWTBootstrap3 v0.9.1.
I want to display a Popover with content that is stored in database. So when user hovers an element for the first time a Popover is displayed with Please wait...
info. Meanwhile I get the proper text from database and want to replace Popover's content with a new one.
I thought this code would do the trick:
popover.setContent(newText);
popover.reconfigure();
But it doesn't work: the popover disappears and is not displayed anymore.
I know there are solutions for Bootstrap users, but as I use GWT-Bootstrap I want to do it in GWT without using jQuery.