Skip to main content

Posts

Showing posts with the label GWT

Google Web Toolkit Local Storage

Learn how you can implement the local storage using Google web tool kit. Local storage helps you to keep the data on client machine or end user machine but never use an important data on local storage because local storage is not a secure storage. Creating an instance using Storage class and also checking whether the browser supports local storage or not using getLocalStorageIfSupported() method. Storage stockStore = Storage.getLocalStorageIfSupported(); Insert the data using setItem() method , fetch data using getItem() method and clear the local storage data using clear() method. stockStore.setItem(String key, String data); stockStore.getItem(String key); stockStore.clear();} Set Item has two parameters, one is key and another one is data. Key is used to maintain the index and data is the parameter where we can save the string which is needed in other place. Example :- stockStore.setItem(“userName”,”demo”); stockStore.setItem(“companyName”, ...

Ext GWT Tutorial - Sample Codes

Google Web Toolkit is a great web technology to develope the Ajax (Asynchronous Java with XML) based web application but you can create ARIA(Accessible Rich Internet Application) based user interface with help of Ext-GWT (Extended Google web toolkit). What all you have to do is Download the Ext-GWT jar from sencha and add this jar to your java build path and also inherit this with your project so that you can start implementing great user interface for your project. If you are willing to learning Ext GWT then save this link as bookmark and keep visiting for the latest sample code updates ... Chart Examples Advance Chart In Ext GWT Pie Chart In Ext GWT Chart Gallery In Ext GWT Tab Examples Simple Tab In Ext GWT Advance Tab In Ext GWT Grid Examples Basic Grid In Ext Gwt Aggregation Rows Grid In Ext Gwt Auto Height Edit Plants Grid In Ext GWT Bean Model Grid In Ext GWT Buffered Grid In Ext Gwt Column Grouping Grid In Ext Gwt Local Paging Grid In Ext GWT Paging Grid In Ext GWT...

Advance Chart In Ext GWT

Advance Charts In Ext Google Web Toolkit Sample Code package  com.extjs.gxt.samples.client.examples.tabs;      import  com.extjs.gxt.ui.client.event.ButtonEvent;   import  com.extjs.gxt.ui.client.event.Events;   import  com.extjs.gxt.ui.client.event.Listener;   import  com.extjs.gxt.ui.client.event.SelectionListener;   import  com.extjs.gxt.ui.client.widget.HorizontalPanel;   import  com.extjs.gxt.ui.client.widget.LayoutContainer;   import  com.extjs.gxt.ui.client.widget.TabItem;   import  com.extjs.gxt.ui.client.widget.TabPanel;   import  com.extjs.gxt.ui.client.widget.VerticalPanel;   import  com.extjs.gxt.ui.client.widget.button.Button;   import  com.extjs.gxt.ui.client.widget.button.ToggleButton;   import  com.google.gwt.user.client.Element;      ...

Advance Tab In Ext GWT

Advance Tab In Ext Google Web Toolkit Sample Code package  com.extjs.gxt.samples.client.examples.tabs;      import  com.extjs.gxt.ui.client.event.ButtonEvent;   import  com.extjs.gxt.ui.client.event.Events;   import  com.extjs.gxt.ui.client.event.Listener;   import  com.extjs.gxt.ui.client.event.SelectionListener;   import  com.extjs.gxt.ui.client.widget.HorizontalPanel;   import  com.extjs.gxt.ui.client.widget.LayoutContainer;   import  com.extjs.gxt.ui.client.widget.TabItem;   import  com.extjs.gxt.ui.client.widget.TabPanel;   import  com.extjs.gxt.ui.client.widget.VerticalPanel;   import  com.extjs.gxt.ui.client.widget.button.Button;   import  com.extjs.gxt.ui.client.widget.button.ToggleButton;   import  com.google.gwt.user.client.Element;      publ...