GWT GWT. Label. Java GWT. com.google.gwt.user.client.ui package

Size: px
Start display at page:

Download "GWT GWT. Label. Java GWT. com.google.gwt.user.client.ui package"

Transcription

1 GWT GWT GWT Java HTML GWT (Widget) Java com.google.gwt.user.client.ui package 1 2 GWT Label Constructors: public Label() public Label(String text) public Label(String text, boolean wordwrap) wordwrap true public String gettext() public void settext(string text) 3 4

2 HTML Label HTML tag (ex:, ) HTML <div> tag A widget that can contain arbitrary HTML. This widget uses a <div> element, causing it to be displayed with block layout. If you only need a simple label (text, but not HTML), then the Label widget is more appropriate, as it disallows the use of HTML, which can lead to potential security issues if not used properly. Constructors: public HTML(): Creates an empty HTML widget. public HTML(String html): Creates an HTML widget with the specified HTML contents. public HTML(String html, boolean wordwrap): Creates an HTML widget with the specified contents, optionally treating it as HTML, and optionally disabling word wrapping. 5 HTML Methods: public String gethtml() : Gets this object's contents as HTML. public void sethtml(string html): Sets the label's content to the given HTML. See Label.setText(String) for details on potential effects on direction and alignment Hyperlink HTML A widget that serves as an "internal" hyperlink. That is, it is a link to another state of the running application. When clicked, it will create a new history frame using History.newItem(java.lang.String), but without reloading the page. GWT History If you want an HTML hyperlink (<a> tag) without interacting with the history system, use Anchor instead. Being a true hyperlink, it is also possible for the user to "right-click, open link in new window", which will cause the application to be loaded in a new window at the state specified by the hyperlink. Hyperlink Constructors: public Hyperlink(): Creates an empty hyperlink. public Hyperlink(String text, String targethistorytoken): Creates a hyperlink with its text and target history token specified. public Hyperlink(String text, boolean ashtml, String targethistorytoken): Creates a hyperlink with its text and target history token specified. ashtml: true to treat the specified text as html Methods: public String gettext(): Gets this object's text. public String gethtml(): Gets this object's contents as HTML.

3 GWT (Form) (form) (Textbox) (RadioButton) (CheckBox) (ListBox) (Button) FormPanel FormPanel HTML <Form> tag server : FormPanel form=new FormPanel(); : public void setmethod(string method): Sets the HTTP method used for submitting this form. This should be either METHOD_GET or METHOD_POST. Ex:form.setMethod(FormPanel.METHOD_POST); Ex:form.setMethod(FormPanel.METHOD_GET); FormPanel : public void setaction(string url): Sets the 'action' associated with this form. This is the URL to which it will be submitted. Ex: form.setaction( /somewhere ); : TextBox userid=new TextBox(); form.add(userid); TextBox TextBox tb=new TextBox(); String str=tb.gettext(); 10 tb.setmaxlength(10); tb.setvisiblelength(6); TextBox tb.setwidth( 120px );

4 TextArea :gwt-textarea String str=ta.gettext(); TextArea ta.setcharacterwidth(30); ta.setvisiblelines(8); ListBox :gwt-listbox ListBox list=new ListBox(); ListBox : list.add( xxx ); public void setvisibleitemcount(int visibleitems) RadioButton :gwt-radiobutton : public RadioButton(String GroupName, String RbLabel) RadioButton rb0=new RadioButton( color, blue ); RadioButton rb1=new RadioButton( color, red ); RadioButton rb2=new RadioButton( color, green ); FlowPanel panel=new FlowPanel(); panel.add(blue); panel.add(red); panel.add(green); CheckBox :gwt-checkbox : CheckBox cb=new CheckBox( xxx ); cb.setvalue(true); cb.setname( agree ); cb.setenabled(true); : cb.settext( xxx );

5 Button :gwt-button : Button send=new Button( ); send.click(); GWT Designer p.5-9 (event) (Listener): GWT Listener listener (Event Handler) Java com.google.gwt.event.dom.client

6 - : public HandlerRegistration addclickhandler(clickhandle r handler) Interface ClickHandler method: void onclick(clickevent event) Label msg=new Label(); TextBox host=new TextBox(); Button connect=new Button( ); connect.addclickhandler(new ClickHandler(){ public void onclick(clickevent event){ String ip=host.gettext(); msg.settext( +ip+. ); } }); - Interface EntryPoint: It contains the code that executes when you launch the application. Typically, the types of things you do in the onmoduleload() method are: create new user interface components set up handlers for events modify the browser DOM in some way void onmoduleload(): called automatically by loading a module that declares an implementing class as an entry point. - public class Category implements EntryPoint, ClickHandler{ Label msg; public void onmoduleload() { RootPanel rootpanel=rootpanel.get(); Button b1=new Button( 3C ); rootpanel.add(b1, 31,20); b1.addclickhandler(this); /* Category Click */ msg=new Label( ); rootpanel.add(msg, 41,52); public void onclick(clickevent event){ Button b =(Button) event.getsource(); msg.settext(b.gettext()); } 23 } Show events 24

7

8 city/area ItemVisibleCount 1. city, change onchange code : package com.gb2.client; import com.google.gwt.core.client.entrypoint; import com.google.gwt.user.client.ui.rootpanel; import com.google.gwt.user.client.ui.verticalpanel; import com.google.gwt.user.client.ui.label; import com.google.gwt.user.client.ui.listbox; import com.google.gwt.event.dom.client.changehandler; import com.google.gwt.event.dom.client.changeevent; public class AddPost implements EntryPoint { private ListBox area; private ListBox city; public void onmoduleload() { // TODO Auto-generated method stub RootPanel rootpanel=rootpanel.get(); Label lblnewlabel = new Label("\u7E23\u5E02:"); rootpanel.add(lblnewlabel, 0, 10); lblnewlabel.setsize("42px", "20px"); Label label = new Label("\u5340\u57DF:"); rootpanel.add(label, 156, 10); city = new ListBox(); city.additem("\u53f0\u5317\u5e02","1"); city.additem("\u57fa\u9686\u5e02","2"); area = new ListBox(); 32

9 rootpanel.add(area, 208, 10); area.setsize("84px", "24px"); area.setvisibleitemcount(1); rootpanel.add(city, 48, 10); city.setvisibleitemcount(1); area.additem("\u842c\u83ef\u5340"); area.additem("\u58eb\u6797\u5340"); area.additem("\u4fe1\u7fa9\u5340"); city.addchangehandler(new ChangeHandler() { public void onchange(changeevent event) { area.clear(); String selectvalue=city.getvalue(city.getselectedindex()); int n=integer.parseint(selectvalue); switch(n){ case 1: area.additem("\u842c\u83ef\u5340"); area.additem("\u58eb\u6797\u5340"); area.additem("\u4fe1\u7fa9\u5340"); break; case 2: area.additem("\u4ec1\u611b\u5340"); area.additem("\u4fe1\u7fa9\u5340"); area.additem("\u4e2d\u6b63\u5340"); break; } } }); }/* end of onmoduleload */ } HTML!! Run : 35 36

10 : ListBox ListBox::public void additem(java.lang.string item, java.lang.string value): Adds an item to the list box, specifying an initial value for the item. item: ListBox value: index ( ) / value item item! index value GWT FlowPanel: HorizontalPanel: FlowPanel VerticalPanel DockLayoutPanel: Grid: HTML 37 GWT Grid grid=new Grid(2,3); grid.setborderwidth(1); for(int row=0;row<2;row++) for (int col=0;col<3;col++) grid.settext(row,col,row+, +col); GWT FlexTable: HTML Grid cell FlexTable flextable=new FlexTable(); rootpanel.add(flextable,238,23); flextable.setsize( 155px, 100px ); flextable.setborderwidth(1); flextable.setwidget(0,0,new Label( ABC )); flextable.setwidget(0,1,new Label( DEF )); flextable.setwidget(0,2,new Label( GHI )); flextable.setwidget(1,0,new Label( 123 )); flextable.setwidget(1,1,new Label( 456 )); flextable.setwidget(1,2,new Label( 789 )); 39 40

GWT - FORMPANEL WIDGET

GWT - FORMPANEL WIDGET GWT - FORMPANEL WIDGET http://www.tutorialspoint.com/gwt/gwt_formpanel_widget.htm Copyright tutorialspoint.com Introduction The FormPanel widget represents a panel that wraps its contents in an HTML

More information

GWT - LABEL WIDGET. Following default CSS Style rule will be applied to all the labels. You can override it as per your requirements.

GWT - LABEL WIDGET. Following default CSS Style rule will be applied to all the labels. You can override it as per your requirements. http://www.tutorialspoint.com/gwt/gwt_label_widget.htm GWT - LABEL WIDGET Copyright tutorialspoint.com Introduction The Label can contains only arbitrary text and it can not be interpreted as HTML. This

More information

GWT - FLEXTABLE WIDGET

GWT - FLEXTABLE WIDGET GWT - FLEXTABLE WIDGET http://www.tutorialspoint.com/gwt/gwt_flextable_widget.htm Copyright tutorialspoint.com Introduction The FlexTable widget represents a flexible table that creates cells on demand.

More information

GWT - POPUPPANEL WIDGET

GWT - POPUPPANEL WIDGET GWT - POPUPPANEL WIDGET http://www.tutorialspoint.com/gwt/gwt_popuppanel_widget.htm Copyright tutorialspoint.com Introduction The PopupPanel widget represents a panel that can pop up over other widgets.

More information

GWT - DEBUGGING APPLICATION

GWT - DEBUGGING APPLICATION GWT - DEBUGGING APPLICATION http://www.tutorialspoint.com/gwt/gwt_debug_application.htm Copyright tutorialspoint.com GWT provides execellent capability of debugging client side as well as server side code.

More information

Creating GWT Applications in Eclipse

Creating GWT Applications in Eclipse Creating GWT Applications in Eclipse By Patrick Canny Abstract This paper describes how to create a Google Web Toolkit ( GWT ) application in Eclipse v. 3.5, a.k.a. Galileo, which implements Runnable User

More information

GWT - PUSHBUTTON WIDGET

GWT - PUSHBUTTON WIDGET GWT - PUSHBUTTON WIDGET http://www.tutorialspoint.com/gwt/gwt_pushbutton_widget.htm Copyright tutorialspoint.com Introduction The PushButton widget represents a standard push button with custom styling..

More information

GWT - RPC COMMUNICATION

GWT - RPC COMMUNICATION GWT - RPC COMMUNICATION http://www.tutorialspoint.com/gwt/gwt_rpc_communication.htm Copyright tutorialspoint.com A GWT based application is generally consists of a client side module and server side module.

More information

GWT - INTERNATIONALIZATION

GWT - INTERNATIONALIZATION GWT - INTERNATIONALIZATION http://www.tutorialspoint.com/gwt/gwt_internationalization.htm Copyright tutorialspoint.com GWT provides three ways to internationalize a GWT application, We'll demonstrate use

More information

GWT - TOGGLEBUTTON WIDGET

GWT - TOGGLEBUTTON WIDGET GWT - TOGGLEBUTTON WIDGET http://www.tutorialspoint.com/gwt/gwt_togglebutton_widget.htm Copyright tutorialspoint.com Introduction The ToggleButton widget represents a stylish stateful button which allows

More information

Google Web Toolkit (GWT)

Google Web Toolkit (GWT) Google Web Toolkit (GWT) What is GWT? GWT is a development toolkit for building and optimizing complex browser-based applications You can develop all code, both client and server in Java (or with a different

More information

GWT - LOGGING FRAMEWORK

GWT - LOGGING FRAMEWORK GWT - LOGGING FRAMEWORK http://www.tutorialspoint.com/gwt/gwt_logging_framework.htm Copyright tutorialspoint.com The logging framework emulates java.util.logging, so it uses the same syntax and has the

More information

Cooking with GWT: Recipes for the perfect dinner. Alberto Mijares Basel, Switzerland

Cooking with GWT: Recipes for the perfect dinner. Alberto Mijares Basel, Switzerland Cooking with GWT: Recipes for the perfect dinner Alberto Mijares alberto.mijares@canoo.com Basel, Switzerland Introduction Who am I? What do I do? What is GWT? What does GWT try to solve? What does GWT

More information

The Google Web Toolkit (GWT): Extended GUI Widgets

The Google Web Toolkit (GWT): Extended GUI Widgets 2013 Marty Hall & Yaakov Chaikin The Google Web Toolkit (GWT): Extended GUI Widgets (GWT 2.5 Version) Originals of Slides and Source Code for Examples: http://courses.coreservlets.com/course-materials/gwt.html

More information

Google Web Toolkit. David Geary. code.google.com/webtoolkit. corewebdeveloper.com

Google Web Toolkit. David Geary. code.google.com/webtoolkit. corewebdeveloper.com Google Web Toolkit code.google.com/webtoolkit David Geary corewebdeveloper.com clarity.training@gmail.com Copyright Clarity Training, Inc. 2009 Code http://coolandusefulgwt.com 2 Copyright Clarity Training,

More information

widgets, events, layout loosely similar to Swing test browser, or plugin for testing with real browser on local system

widgets, events, layout loosely similar to Swing test browser, or plugin for testing with real browser on local system Web [Application] Frameworks conventional approach to building a web service write ad hoc client code in HTML, CSS, Javascript,... by hand write ad hoc server code in [whatever] by hand write ad hoc access

More information

GWT is an open source, completely free, and used by thousands of developers around the world. It is licensed under the Apache License version 2.0.

GWT is an open source, completely free, and used by thousands of developers around the world. It is licensed under the Apache License version 2.0. About the Tutorial GWT Google Web Toolkit (GWT) is a development toolkit for building and optimizing complex browser-based applications. GWT is used by many products at Google, including Google AdWords

More information

Google Web Toolkit Creating/using external JAR files

Google Web Toolkit Creating/using external JAR files Google Web Toolkit Creating/using external JAR files If you develop some code that can be reused in more than one project, one way to create a module is to create an external JAR file. This JAR file can

More information

The Google Web Toolkit Donna Griffin

The Google Web Toolkit Donna Griffin The Google Web Toolkit Donna Griffin Abstract: The aim of this project module is to equip students with the basics of the Google Web Toolkit (GWT) through a formal taught element. The Google Web Toolkit

More information

GWT: The Technical Advantage. Presenter: Anirudh Dewani Company Name: Google

GWT: The Technical Advantage. Presenter: Anirudh Dewani Company Name: Google GWT: The Technical Advantage Presenter: Anirudh Dewani Company Name: Google What is GWT? 2 How it works Google Web Toolkit Weekly Report 09/01/2008-09/08/200 Code against Java UI libraries 3 How it works

More information

Productivity. Bruce Johnson and Dan Peterson Google

Productivity. Bruce Johnson and Dan Peterson Google Productivity Bruce Johnson and Dan Peterson Google What is GWT? User-focused web app development Ajax apps without the headaches Leverage Java development tools The GWT Mission Statement To radically improve

More information

Fast, Easy, Beautiful: Pick Three Building User Interfaces with Google Web Toolkit. Chris Schalk October 29, 2007

Fast, Easy, Beautiful: Pick Three Building User Interfaces with Google Web Toolkit. Chris Schalk October 29, 2007 Fast, Easy, Beautiful: Pick Three Building User Interfaces with Google Web Toolkit Chris Schalk October 29, 2007 Today s Topics The potential of Ajax - why we re all here GWT brings software engineering

More information

GWT - QUICK GUIDE. Google Web Toolkit (GWT) is a development toolkit to create RICH Internet Application(RIA).

GWT - QUICK GUIDE. Google Web Toolkit (GWT) is a development toolkit to create RICH Internet Application(RIA). http://www.tutorialspoint.com/gwt/gwt_quick_guide.htm GWT - QUICK GUIDE Copyright tutorialspoint.com What is GWT? Google Web Toolkit (GWT) is a development toolkit to create RICH Internet Application(RIA).

More information

The Google Web Toolkit (GWT):

The Google Web Toolkit (GWT): 2013 Marty Hall & Yaakov Chaikin The Google Web Toolkit (GWT): Introduction to Cell Widgets (GWT 2.5 Version) Originals of Slides and Source Code for Examples: http://courses.coreservlets.com/course-materials/gwt.html

More information

GWT and jmaki: Expanding the GWT Universe. Carla Mott, Staff Engineer, Sun Microsystems Greg Murray, Ajax Architect, Sun Microsystems

GWT and jmaki: Expanding the GWT Universe. Carla Mott, Staff Engineer, Sun Microsystems Greg Murray, Ajax Architect, Sun Microsystems GWT and jmaki: Expanding the GWT Universe Carla Mott, Staff Engineer, Sun Microsystems Greg Murray, Ajax Architect, Sun Microsystems Learn how to enhance Google Web Toolkit (GWT) to include many Ajax enabled

More information

GWT - UIOBJECT CLASS

GWT - UIOBJECT CLASS GWT - UIOBJECT CLASS http://www.tutorialspoint.com/gwt/gwt_uiobject_class.htm Copyright tutorialspoint.com Introduction The class UIObject is the superclass for all user-interface objects. It simply wraps

More information

Ajax and Web 2.0 Related Frameworks and Toolkits. Dennis Chen Director of Product Engineering / Potix Corporation

Ajax and Web 2.0 Related Frameworks and Toolkits. Dennis Chen Director of Product Engineering / Potix Corporation Ajax and Web 2.0 Related Frameworks and Toolkits Dennis Chen Director of Product Engineering / Potix Corporation dennischen@zkoss.org 1 Agenda Ajax Introduction Access Server Side (Java) API/Data/Service

More information

The Google Web Toolkit (GWT): Handling History and Bookmarks

The Google Web Toolkit (GWT): Handling History and Bookmarks 2013 Marty Hall & Yaakov Chaikin The Google Web Toolkit (GWT): Handling History and Bookmarks (GWT 2.5 Version) Originals of Slides and Source Code for Examples: http://courses.coreservlets.com/course-materials/gwt.html

More information

Information Systems Engineering. Presenting data in web pages Using ASP.NET

Information Systems Engineering. Presenting data in web pages Using ASP.NET Information Systems Engineering Presenting data in web pages Using ASP.NET 1 HTML and web pages URL Request HTTP GET Response Rendering.html files Browser ..

More information

Google Wave Client: Powered by GWT. Adam Schuck 28 May, 2009

Google Wave Client: Powered by GWT. Adam Schuck 28 May, 2009 Google Wave Client: Powered by GWT Adam Schuck 28 May, 2009 Google Wave client search abuse detection saved searches folders authentication access control playback waves attachments gadgets contacts presence

More information

The Google Web Toolkit (GWT): Advanced Control of Layout with UiBinder

The Google Web Toolkit (GWT): Advanced Control of Layout with UiBinder 2012 Yaakov Chaikin The Google Web Toolkit (GWT): Advanced Control of Layout with UiBinder (GWT 2.4 Version) Originals of Slides and Source Code for Examples: http://courses.coreservlets.com/course-materials/gwt.html

More information

B. V. Patel Institute of BMC & IT 2014

B. V. Patel Institute of BMC & IT 2014 Unit 1: Introduction Short Questions: 1. What are the rules for writing PHP code block? 2. Explain comments in your program. What is the purpose of comments in your program. 3. How to declare and use constants

More information

Introduction to using HTML to design webpages

Introduction to using HTML to design webpages Introduction to using HTML to design webpages #HTML is the script that web pages are written in. It describes the content and structure of a web page so that a browser is able to interpret and render the

More information

Using the Visualization API with GWT and Other Advanced Topics. Itai Raz May 27, 2009

Using the Visualization API with GWT and Other Advanced Topics. Itai Raz May 27, 2009 Using the Visualization API with GWT and Other Advanced Topics Itai Raz May 27, 2009 Agenda Visualization API & GWT More Advanced Topics Latency Security / Privacy Data View Q&A The Google Visualization

More information

1. Begin by selecting [Content] > [Add Content] > [Webform] in the administrative toolbar. A new Webform page should appear.

1. Begin by selecting [Content] > [Add Content] > [Webform] in the administrative toolbar. A new Webform page should appear. Creating a Webform 1. Begin by selecting [Content] > [Add Content] > [Webform] in the administrative toolbar. A new Webform page should appear. 2. Enter the title of the webform you would like to create

More information

Positioning in CSS: There are 5 different ways we can set our position:

Positioning in CSS: There are 5 different ways we can set our position: Positioning in CSS: So you know now how to change the color and style of the elements on your webpage but how do we get them exactly where we want them to be placed? There are 5 different ways we can set

More information

Google Web Toolkit (GWT) Basics. Sang Shin Java Technology Architect & Evangelist Sun Microsystems, Inc.

Google Web Toolkit (GWT) Basics. Sang Shin Java Technology Architect & Evangelist Sun Microsystems, Inc. Google Web Toolkit (GWT) Basics Sang Shin Java Technology Architect & Evangelist Sun Microsystems, Inc. sang.shin@sun.com www.javapassion.com Disclaimer & Acknowledgments Even though Sang Shin is a full-time

More information

CST272 Getting Started Page 1

CST272 Getting Started Page 1 CST272 Getting Started Page 1 1 2 3 4 5 6 8 Introduction to ASP.NET, Visual Studio and C# CST272 ASP.NET Static and Dynamic Web Applications Static Web pages Created with HTML controls renders exactly

More information

The Google Web Toolkit (GWT): Declarative Layout with UiBinder Advanced Topics

The Google Web Toolkit (GWT): Declarative Layout with UiBinder Advanced Topics 2013 Marty Hall & Yaakov Chaikin The Google Web Toolkit (GWT): Declarative Layout with UiBinder Advanced Topics (GWT 2.5 Version) Originals of Slides and Source Code for Examples: http://courses.coreservlets.com/course-materials/gwt.html

More information

GWT integration with Vaadin. Peter expert & trainer

GWT integration with Vaadin. Peter expert & trainer GWT integration with Vaadin Peter Lehto @peter_lehto expert & trainer Vaadin & GWT GWT Transport mechanisms Web components with Polymer QA Vaadin Connectors Vaadin & GWT Server driven UI framework with

More information

The Google Web Toolkit

The Google Web Toolkit The Google Web Toolkit Allen I. Holub Holub Associates www.holub.com allen@holub.com 2010, Allen I. Holub www.holub.com 1 This Talk The point of this talk is to give you an overview of GWT suitable for

More information

Google Web Toolkit Tutorial

Google Web Toolkit Tutorial Google Web Toolkit Tutorial GOOGLE WEB TOOLKIT TUTORIAL Simply Easy Learning by tutorialspoint.com tutorialspoint.com i C O P Y R I G H T & D I S C L A I M E R N O T I C E All the content and graphics

More information

mgwt Cross platform development with Java

mgwt Cross platform development with Java mgwt Cross platform development with Java Katharina Fahnenbruck Consultant & Trainer! www.m-gwt.com Motivation Going native Good performance Going native Good performance Device features Going native Good

More information

Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM Advanced Internet Technology Lab.

Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM Advanced Internet Technology Lab. Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM 5049 Advanced Internet Technology Lab Lab # 1 Eng. Haneen El-masry February, 2015 Objective To be familiar with

More information

Form Overview. Form Processing. The Form Element. CMPT 165: Form Basics

Form Overview. Form Processing. The Form Element. CMPT 165: Form Basics Form Overview CMPT 165: Form Basics Tamara Smyth, tamaras@cs.sfu.ca School of Computing Science, Simon Fraser University October 26, 2011 A form is an HTML element that contains and organizes objects called

More information

CONTENTS. Chapter 1 Getting Started with Java SE 6 1. Chapter 2 Exploring Variables, Data Types, Operators and Arrays 13

CONTENTS. Chapter 1 Getting Started with Java SE 6 1. Chapter 2 Exploring Variables, Data Types, Operators and Arrays 13 CONTENTS Chapter 1 Getting Started with Java SE 6 1 Introduction of Java SE 6... 3 Desktop Improvements... 3 Core Improvements... 4 Getting and Installing Java... 5 A Simple Java Program... 10 Compiling

More information

DbSchema Forms and Reports Tutorial

DbSchema Forms and Reports Tutorial DbSchema Forms and Reports Tutorial Contents Introduction... 1 What you will learn in this tutorial... 2 Lesson 1: Create First Form Using Wizard... 3 Lesson 2: Design the Second Form... 9 Add Components

More information

Pimp My Webapp (with Google Web Toolkit)

Pimp My Webapp (with Google Web Toolkit) (with Google Web Toolkit) Hermod Opstvedt Chief Architect DnB NOR ITUD Common components Hermod Opstvedt (with Google Web Toolkit) Slide 1 What is Google Web Toolkit (GWT)? Pronounced GWiT. An effort to

More information

SQL Deluxe 2.0 User Guide

SQL Deluxe 2.0 User Guide Page 1 Introduction... 3 Installation... 3 Upgrading an existing installation... 3 Licensing... 3 Standard Edition... 3 Enterprise Edition... 3 Enterprise Edition w/ Source... 4 Module Settings... 4 Force

More information

Web Designing Course

Web Designing Course Web Designing Course Course Summary: HTML, CSS, JavaScript, jquery, Bootstrap, GIMP Tool Course Duration: Approx. 30 hrs. Pre-requisites: Familiarity with any of the coding languages like C/C++, Java etc.

More information

Application Development in JAVA. Data Types, Variable, Comments & Operators. Part I: Core Java (J2SE) Getting Started

Application Development in JAVA. Data Types, Variable, Comments & Operators. Part I: Core Java (J2SE) Getting Started Application Development in JAVA Duration Lecture: Specialization x Hours Core Java (J2SE) & Advance Java (J2EE) Detailed Module Part I: Core Java (J2SE) Getting Started What is Java all about? Features

More information

COMP519 Web Programming Lecture 8: Cascading Style Sheets: Part 4 Handouts

COMP519 Web Programming Lecture 8: Cascading Style Sheets: Part 4 Handouts COMP519 Web Programming Lecture 8: Cascading Style Sheets: Part 4 Handouts Ullrich Hustadt Department of Computer Science School of Electrical Engineering, Electronics, and Computer Science University

More information

Alpha College of Engineering and Technology. Question Bank

Alpha College of Engineering and Technology. Question Bank Alpha College of Engineering and Technology Department of Information Technology and Computer Engineering Chapter 1 WEB Technology (2160708) Question Bank 1. Give the full name of the following acronyms.

More information

Fast, Easy, Beautiful: Pick Three Introducing Google Web Toolkit (GWT)

Fast, Easy, Beautiful: Pick Three Introducing Google Web Toolkit (GWT) Fast, Easy, Beautiful: Pick Three Introducing Google Web Toolkit (GWT) Xin Zhou Google, Beijing, China May 31, 2007 Google s APIs Building no-compromise AJAX applications with Java technology using Google

More information

CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0

CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0 WEB TECHNOLOGIES A COMPUTER SCIENCE PERSPECTIVE CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0 Modified by Ahmed Sallam Based on original slides by Jeffrey C. Jackson reserved. 0-13-185603-0 HTML HELLO WORLD! Document

More information

DbSchema Forms and Reports Tutorial

DbSchema Forms and Reports Tutorial DbSchema Forms and Reports Tutorial Introduction One of the DbSchema modules is the Forms and Reports designer. The designer allows building of master-details reports as well as small applications for

More information

GWT - CREATE APPLICATION

GWT - CREATE APPLICATION GWT - CREATE APPLICATION http://www.tutorialspoint.com/gwt/gwt_create_application.htm Copyright tutorialspoint.com As power of GWT lies in Write in Java, Run in JavaScript, we'll be using Java IDE Eclipse

More information

Session 13. RESTful Services Part 2. Lecture Objectives

Session 13. RESTful Services Part 2. Lecture Objectives Session 13 RESTful Services Part 2 1 Lecture Objectives Understand how to pass parameters to a Web services Understand how to return values from a Web service 2 10/31/2018 1 Reading Tutorials Reading &

More information

Advanced Web Technology 5) Google Web Toolkits - GWT, Client Side

Advanced Web Technology 5) Google Web Toolkits - GWT, Client Side Advanced Web Technology 5) Google Web Toolkits - GWT, Client Side Emmanuel Benoist Spring Term 2018 Berner Fachhochschule Haute école spécialisée bernoise Berne University of Applied Sciences 1 Table of

More information

Professional Validation And More What's New In Version 3.0. Copyright , Peter L. Blum. All Rights Reserved

Professional Validation And More What's New In Version 3.0. Copyright , Peter L. Blum. All Rights Reserved Professional Validation And More Copyright 2005-2007, Peter L. Blum. All Rights Reserved Introduction Professional Validation And More v3.0 is an extensive upgrade. This document describes the changes

More information

Forms iq Designer Training

Forms iq Designer Training Forms iq Designer Training Copyright 2008 Feith Systems and Software, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, stored in a retrieval system, or translated into

More information

Index. Symbols. addhistorylistener method, Hyperlink widget,

Index. Symbols. addhistorylistener method, Hyperlink widget, Index Symbols $wnd object, JSNI, 216 & (ampersand), in GET and POST parameters, 112 113 { } (curly braces), JSON, 123? (question mark), GET requests, 112 A Abstract Factory pattern, 258 259 Abstract methods,

More information

5. JavaScript Basics

5. JavaScript Basics CHAPTER 5: JavaScript Basics 88 5. JavaScript Basics 5.1 An Introduction to JavaScript A Programming language for creating active user interface on Web pages JavaScript script is added in an HTML page,

More information

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10 CONTENTS Chapter 1 Introduction to Dreamweaver CS3 1 About Dreamweaver CS3 Interface...4 Title Bar... 4 Menu Bar... 4 Insert Bar... 5 Document Toolbar... 5 Coding Toolbar... 6 Document Window... 7 Properties

More information

XAP: extensible Ajax Platform

XAP: extensible Ajax Platform XAP: extensible Ajax Platform Hermod Opstvedt Chief Architect DnB NOR ITUD Hermod Opstvedt: XAP: extensible Ajax Platform Slide 1 It s an Ajax jungle out there: XAML Dojo Kabuki Rico Direct Web Remoting

More information

FBCA-03 April Introduction to Internet and HTML Scripting (New Course)

FBCA-03 April Introduction to Internet and HTML Scripting (New Course) Seat No. : FBCA-03 April-2007 105-Introduction to Internet and HTML Scripting (New Course) Time : 3 Hours] [Max. Marks : 70 Instructions : (1) Figures to the right indicate marks allotted to that questions.

More information

Developing Web Views for VMware vcenter Orchestrator. vrealize Orchestrator 5.5

Developing Web Views for VMware vcenter Orchestrator. vrealize Orchestrator 5.5 Developing Web Views for VMware vcenter Orchestrator vrealize Orchestrator 5.5 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

HTML Forms. By Jaroslav Mohapl

HTML Forms. By Jaroslav Mohapl HTML Forms By Jaroslav Mohapl Abstract How to write an HTML form, create control buttons, a text input and a text area. How to input data from a list of items, a drop down list, and a list box. Simply

More information

Module 5 The Applet Class, Swings. OOC 4 th Sem, B Div Prof. Mouna M. Naravani

Module 5 The Applet Class, Swings. OOC 4 th Sem, B Div Prof. Mouna M. Naravani Module 5 The Applet Class, Swings OOC 4 th Sem, B Div 2016-17 Prof. Mouna M. Naravani The layout manager helps lay out the components held by this container. When you set a layout to null, you tell the

More information

Wolf. Responsive Website Designer. Mac Edition User Guide

Wolf. Responsive Website Designer. Mac Edition User Guide Wolf Responsive Website Designer Mac Edition User Guide Version 2.10.3 Table of Contents What is Wolf Website Designer? Editor overview Save and open website Create responsive layout How to create responsive

More information

CS 112 Introduction to Computing II. Wayne Snyder Computer Science Department Boston University

CS 112 Introduction to Computing II. Wayne Snyder Computer Science Department Boston University 9/5/6 CS Introduction to Computing II Wayne Snyder Department Boston University Today: Arrays (D and D) Methods Program structure Fields vs local variables Next time: Program structure continued: Classes

More information

Java Swing. based on slides by: Walter Milner. Java Swing Walter Milner 2005: Slide 1

Java Swing. based on slides by: Walter Milner. Java Swing Walter Milner 2005: Slide 1 Java Swing based on slides by: Walter Milner Java Swing Walter Milner 2005: Slide 1 What is Swing? A group of 14 packages to do with the UI 451 classes as at 1.4 (!) Part of JFC Java Foundation Classes

More information

Creating Jump Searches

Creating Jump Searches Creating Jump Searches Jump Searches are created in Website Administration, and they are used to create dynamic hyperlinks for ReeceAndNichols.com property search pages. 1. Open your web browser, and go

More information

Overview of the Adobe Dreamweaver CS5 workspace

Overview of the Adobe Dreamweaver CS5 workspace Adobe Dreamweaver CS5 Activity 2.1 guide Overview of the Adobe Dreamweaver CS5 workspace You can access Adobe Dreamweaver CS5 tools, commands, and features by using menus or by selecting options from one

More information

Center for Faculty Development and Support Making Documents Accessible

Center for Faculty Development and Support Making Documents Accessible Center for Faculty Development and Support Making Documents Accessible in Word 2007 Tutorial CONTENTS Create a New Document and Set Up a Document Map... 3 Apply Styles... 4 Modify Styles... 5 Use Table

More information

Chapter 7 BMIS335 Web Design & Development

Chapter 7 BMIS335 Web Design & Development Chapter 7 BMIS335 Web Design & Development Site Organization Use relative links to navigate between folders within your own site o Sometimes dividing your site into folders makes maintenance and updating

More information

New Perspectives on Creating Web Pages with HTML. Tutorial Objectives

New Perspectives on Creating Web Pages with HTML. Tutorial Objectives New Perspectives on Creating Web Pages with HTML Tutorial 9: Working with JavaScript Objects and Events 1 Tutorial Objectives Learn about form validation Study the object-based nature of the JavaScript

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

UI Course HTML: (Html, CSS, JavaScript, JQuery, Bootstrap, AngularJS) Introduction. The World Wide Web (WWW) and history of HTML

UI Course HTML: (Html, CSS, JavaScript, JQuery, Bootstrap, AngularJS) Introduction. The World Wide Web (WWW) and history of HTML UI Course (Html, CSS, JavaScript, JQuery, Bootstrap, AngularJS) HTML: Introduction The World Wide Web (WWW) and history of HTML Hypertext and Hypertext Markup Language Why HTML Prerequisites Objective

More information

Table of contents. DMXzoneUniformManual DMXzone

Table of contents. DMXzoneUniformManual DMXzone Table of contents Table of contents... 1 About Uniform... 2 The Basics: Basic Usage of Uniform... 11 Advanced: Updating Uniform Elements on Demand... 19 Reference: Uniform Designs... 26 Video: Basic Usage

More information

9/19/2018 Programming Data Structures. Polymorphism And Abstract

9/19/2018 Programming Data Structures. Polymorphism And Abstract 9/19/2018 Programming Data Structures Polymorphism And Abstract 1 In-class assignment: deadline noon!! 2 Overview: 4 main concepts in Object-Oriented Encapsulation in Java is a mechanism of wrapping the

More information

CSI 3140 WWW Structures, Techniques and Standards. Markup Languages: XHTML 1.0

CSI 3140 WWW Structures, Techniques and Standards. Markup Languages: XHTML 1.0 CSI 3140 WWW Structures, Techniques and Standards Markup Languages: XHTML 1.0 HTML Hello World! Document Type Declaration Document Instance Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson

More information

Brief Intro to Firebug Sukwon Oh CSC309, Summer 2015

Brief Intro to Firebug Sukwon Oh CSC309, Summer 2015 Brief Intro to Firebug Sukwon Oh soh@cs.toronto.edu CSC309, Summer 2015 Firebug at a glance One of the most popular web debugging tool with a colleccon of powerful tools to edit, debug and monitor HTML,

More information

Links Menu (Blogroll) Contents: Links Widget

Links Menu (Blogroll) Contents: Links Widget 45 Links Menu (Blogroll) Contents: Links Widget As bloggers we link to our friends, interesting stories, and popular web sites. Links make the Internet what it is. Without them it would be very hard to

More information

Elm: Your first app. Evan Misshula Evan Misshula Elm: Your first app / 33

Elm: Your first app. Evan Misshula Evan Misshula Elm: Your first app / 33 Elm: Your first app Evan Misshula 2018-04-26 Evan Misshula Elm: Your first app 2018-04-26 1 / 33 Our learning objectives Rendering a page with declarations Managing state with Model-View-Update Handling

More information

Berner Fachhochschule Haute école spécialisée bernoise Berne University of Applied Sciences 2

Berner Fachhochschule Haute école spécialisée bernoise Berne University of Applied Sciences 2 Table of Contents 6) Overview: web applications Emmanuel Benoist Spring Term 2018 Presentation Server Side Programming Client Side Frameworks JQuery AngularJS Google Web Toolkit - GWT JSON Conclusion Berner

More information

Session 12. RESTful Services. Lecture Objectives

Session 12. RESTful Services. Lecture Objectives Session 12 RESTful Services 1 Lecture Objectives Understand the fundamental concepts of Web services Become familiar with JAX-RS annotations Be able to build a simple Web service 2 10/21/2018 1 Reading

More information

Fundamentals of Website Development

Fundamentals of Website Development Fundamentals of Website Development CSC 2320, Fall 2015 The Department of Computer Science Events handler Element with attribute onclick. Onclick with call function Function defined in your script or library.

More information

Web Site Development with HTML/JavaScrip

Web Site Development with HTML/JavaScrip Hands-On Web Site Development with HTML/JavaScrip Course Description This Hands-On Web programming course provides a thorough introduction to implementing a full-featured Web site on the Internet or corporate

More information

Say goodbye to the pains of Ajax. Yibo

Say goodbye to the pains of Ajax. Yibo Say goodbye to the pains of Ajax Yibo DOM JavaScript XML CSS Standard Browsers: browser-specific dependencies. d Differences Complexity Exprerience: Minesweeper Google Web Toolkit make Ajax development

More information

Dreamweaver CS3 Concepts and Techniques

Dreamweaver CS3 Concepts and Techniques Dreamweaver CS3 Concepts and Techniques Chapter 3 Tables and Page Layout Part 1 Other pages will be inserted in the website Hierarchical structure shown in page DW206 Chapter 3: Tables and Page Layout

More information

Tutorial 5 Completing the Inventory Application Introducing Programming

Tutorial 5 Completing the Inventory Application Introducing Programming 1 Tutorial 5 Completing the Inventory Application Introducing Programming Outline 5.1 Test-Driving the Inventory Application 5.2 Introduction to C# Code 5.3 Inserting an Event Handler 5.4 Performing a

More information

Adding Pages. Adding pages to your website is simple and powerful! In just a few minutes you can create a page that: Highlights a special event

Adding Pages. Adding pages to your website is simple and powerful! In just a few minutes you can create a page that: Highlights a special event Adding Pages Adding pages to your website is simple and powerful! In just a few minutes you can create a page that: Highlights a special event Collects entries on a registration form for a promotional

More information

710 Index Attributes, 127 action attribute, 263 assigning, bottom attribute, domain name attribute, 481 expiration date attribute, 480 8

710 Index Attributes, 127 action attribute, 263 assigning, bottom attribute, domain name attribute, 481 expiration date attribute, 480 8 INDEX Symbols = (assignment operator), 56 \ (backslash), 33 \b (backspace), 33 \" (double quotation mark), 32 \e (escape), 33 \f (form feed), 33

More information

Introduction to JavaScript p. 1 JavaScript Myths p. 2 Versions of JavaScript p. 2 Client-Side JavaScript p. 3 JavaScript in Other Contexts p.

Introduction to JavaScript p. 1 JavaScript Myths p. 2 Versions of JavaScript p. 2 Client-Side JavaScript p. 3 JavaScript in Other Contexts p. Preface p. xiii Introduction to JavaScript p. 1 JavaScript Myths p. 2 Versions of JavaScript p. 2 Client-Side JavaScript p. 3 JavaScript in Other Contexts p. 5 Client-Side JavaScript: Executable Content

More information

Google Web Toolkit. Google Web Toolkit. by Chris Seddon CRS Enterprises Ltd 1

Google Web Toolkit. Google Web Toolkit. by Chris Seddon CRS Enterprises Ltd 1 Google Web Toolkit by Chris Seddon 2000-11 CRS Enterprises Ltd 1 Google Web Toolkit 1. Introduction to GWT 2. Introduction JavaScript and CSS 3. GWT : User Interface 4. Events 5. Internationalization and

More information

Creating Forms. Speaker: Ray Ryon

Creating Forms. Speaker: Ray Ryon Creating Forms Speaker: Ray Ryon In this lesson we will discuss how to create a web form. Forms are useful because they allow for input from a user. That input can then be used to respond to the user with

More information

Georgia Competency-Based Curriculum Frameworks, Career & Technical Education Information Technology, Web Page Design, Course 11.

Georgia Competency-Based Curriculum Frameworks, Career & Technical Education Information Technology, Web Page Design, Course 11. Georgia Competency-Based Curriculum Frameworks, Career & Technical Education, Information Technology, Web Page Design (Grades 9-12) Information Technology, Web Page Design, Course 11.43100 WEB SITE BASICS

More information

JavaScript s role on the Web

JavaScript s role on the Web Chris Panayiotou JavaScript s role on the Web JavaScript Programming Language Developed by Netscape for use in Navigator Web Browsers Purpose make web pages (documents) more dynamic and interactive Change

More information