@alarcher Which problem? Anything related to GWT-RPC will not be a problem in Pro because it is not necessary to manually implement an RPC mechanism, it's all automatic.
Announcement
Collapse
No announcement yet.
X
-
Hello,
I have a solution for those who have a problem with closing tabs. Apparently, the recursive function destroy () is problematic. To solve this, I just overloaded function destroy () of my main layout of my main tab :
Code:Layout lay=new Layout(){ private Layout thisObj=this; @Override public void destroy() { new Timer() { public void run() { thisObj.destroy(); } }.schedule(1); } };
Comment
-
See the Google code bug. It's a core limitation of IE, exacerbated by GWT (not SmartGWT). There is a straightforward workaround which happens to also be a best practice and design improvement for most applications where this problem arises.
Comment
-
Originally posted by IsomorphicThere is a straightforward workaround which happens to also be a best practice and design improvement for most applications where this problem arises.
Comment
Comment