wffweb-2.1.1
Release changes :
New features
AbstractHtml#insertBefore method implementation
JsUtil implementation for generating some JavaScript
Added default constructor in Alt to initialize empty value
Improvements
Needful improvements in pushing server updates :-
To push server updates if a new webSocket listener is added/set
use case : client clicked on a button to update UI. The button
click event is received at server side and the changes took place at
server side. But, when the server tried to push the UI updates to the
client the webSocket connection lost so the UI updates are kept in
queue. After that, the client made a successful webSocket connection but
the server (UI) updates will not be pushed until there is something to
push again. The client clicked on the button again but as there is
nothing to change in the server there won't be anything to push from the
server. To fix this minor bug, it's required to push server updates
queue when new webSocket listener is added/set.
Needful improvements in AbstractHtml#addInnerHtml implementation
Additional
Bug fixes, optimization and improvements