smartgwt

Smart gwt tutorials and guidance [closed]

家住魔仙堡 提交于 2019-11-30 12:17:44
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I'm new to smart gwt and I need some help. Please help with some good smart gwt tutorials and also with some good books that i can buy to learn this. I made some search and literally found nothing other than javadocs for it. So please guys, HELP ME!!! 回答1: For GWT , everything it's here, it's your entry point :

ExtJs Vs Ext GWT Vs SmartGWT

删除回忆录丶 提交于 2019-11-30 08:43:04
问题 I am going to start a new application which mainly consist NavigationPane, Grid, Toolbar. Layout should look like this demo page http://www.gwt-ext.com/demo/ I am quite confused which one to use in terms of writing less code, more performant, etc.. Could someone tell the pros and cons of all these technologies. All the while I coded in javascript, so that way ExtJs seems to be the easy one for me to code. But I am curios to try GWT Ext, Is it true that it could do a lot just by writing few

GWT Suggestbox with Smartgwt

徘徊边缘 提交于 2019-11-29 12:41:00
I am facing a problem that I can't see the drop down list of the GWT Suggestbox. I am adding a GWT Suggestbox into SmartGWT's VLayout. Then I can see the textbox of the Suggestbox. But when I input some data, I can't see the suggestions provided. Is this because I am using the SmartGWT VLayout? Could anyone tell me how to solve it? Thanks. Sorry, the above question is not clear enough. What I mean is I add a SuggestBox into a layout with small height. Then I can see the the SuggestBox's TextBox part and part of the suggestion and the rest of the suggestion seems hide under other layout. Below

Differentiate browser tab close and refresh (to detect multiple instances of application)

不想你离开。 提交于 2019-11-29 08:20:13
How can Differentiating browser tab close and refresh functionality. As of now window refresh and close event doesn't have different events. My requirement is to checking weather user already logged in or not in any of tabs,So that I wont allow him to load my app in any other tabs. In GWT (java) private void registerWindowCloseEvent() { Window.addCloseHandler(new CloseHandler<Window>() { @Override public void onClose(CloseEvent<Window> event) { // do something on close } }); } in JavaScript/Jquery: window.onbeforeunload = function(e) { // do something on close }; The above events are firing

ExtJs Vs Ext GWT Vs SmartGWT

你说的曾经没有我的故事 提交于 2019-11-29 07:31:02
I am going to start a new application which mainly consist NavigationPane, Grid, Toolbar. Layout should look like this demo page http://www.gwt-ext.com/demo/ I am quite confused which one to use in terms of writing less code, more performant, etc.. Could someone tell the pros and cons of all these technologies. All the while I coded in javascript, so that way ExtJs seems to be the easy one for me to code. But I am curios to try GWT Ext, Is it true that it could do a lot just by writing few lines of java code. For eg: To achieve the layout ( given in above gwt ext demo url), which one should I

GWT Suggestbox with Smartgwt

被刻印的时光 ゝ 提交于 2019-11-28 05:42:24
问题 I am facing a problem that I can't see the drop down list of the GWT Suggestbox. I am adding a GWT Suggestbox into SmartGWT's VLayout. Then I can see the textbox of the Suggestbox. But when I input some data, I can't see the suggestions provided. Is this because I am using the SmartGWT VLayout? Could anyone tell me how to solve it? Thanks. Sorry, the above question is not clear enough. What I mean is I add a SuggestBox into a layout with small height. Then I can see the the SuggestBox's

Differentiate browser tab close and refresh (to detect multiple instances of application)

霸气de小男生 提交于 2019-11-28 01:44:06
问题 How can Differentiating browser tab close and refresh functionality. As of now window refresh and close event doesn't have different events. My requirement is to checking weather user already logged in or not in any of tabs,So that I wont allow him to load my app in any other tabs. In GWT (java) private void registerWindowCloseEvent() { Window.addCloseHandler(new CloseHandler<Window>() { @Override public void onClose(CloseEvent<Window> event) { // do something on close } }); } in JavaScript