Date Picker Haim Michael

Size: px
Start display at page:

Download "Date Picker Haim Michael"

Transcription

1 Date Picker

2 Introduction The date picker is one of the most popular jquery widgets in use. It is highly configurable and extremely easy to implement.

3 Introduction

4 Simple Date Picker <html> <head> <meta http-equiv="content-type" content="text/html; charset=iso " /> <title>date Picker Demo</title> <link type="text/css" href="css/ui-lightness/jquery-ui custom.css" rel="stylesheet" /> <script type="text/javascript" src="js/jquery min.js"></script> <script type="text/javascript" src="js/jquery-ui custom.min.js"></script> <script type="text/javascript"> $(function(){ $('#dateui').datepicker(); </script> </head> <body> <div id="dateui"></div> </body> </html>

5 Simple Date Picker

6 Date Picker in Form In order to have the selected date sent over the server as one of our form parameters we should create the Date Picker UI component as part of the form. Having the Date Picker UI component as part of the form can be building the Date Picker UI component on top of the <input type= text > element.

7 Date Picker in Form We can refer the <input type='text' id='dtui'> element in the following way. $(function() { $('input#dateui').datepicker();

8 Date Picker in Form <html> </html> <head> <meta http-equiv="content-type" content="text/html; charset=iso " /> <title>date Picker Demo</title> <link type="text/css" href="css/ui-lightness/jquery-ui custom.css" rel="stylesheet" /> <script type="text/javascript" src="js/jquery min.js"></script> <script type="text/javascript" src="js/jquery-ui custom.min.js"></script> <script type="text/javascript"> $(function(){ $('input#dateui').datepicker(); </script> </head> <body> <form action= method=post> <input type='text' id='dateui' size='40' value='' /> <input type=submit> </form> </body>

9 Date Picker in Form

10 Setting Range of Allowed Dates We can customize our Date Picker UI component to allow the user entering dates within a specific range only. $(function() { $( input#dateui ).datepicker( { mindate: new Date(2010, 0, 1), maxdate: new Date(2010, 11, 31) } );

11 Setting Range of Allowed Dates <html> <head> <meta http-equiv="content-type" content="text/html; charset=iso " /> <title>date Picker Demo</title> <link type="text/css" href="css/ui-lightness/jquery-ui custom.css" rel="stylesheet" /> <script type="text/javascript" src="js/jquery min.js"></script> <script type="text/javascript" src="js/jquery-ui custom.min.js"></script> <script type="text/javascript"> $(function(){ $('input#dateui').datepicker( { mindate: new Date(2010, 0, 1), maxdate: new Date(2010, 11, 31) } ); </script> </head> <body> <form action= method=post> <input type='text' id='dateui' size='40' value='' /> <input type=submit> </form> </body> </html>

12 Setting Range of Allowed Dates

13 Setting Range of Allowed Dates We can alternatively use the yearrange option. $(function() { $( input#dateui ).datepicker( {yearrange: -5:+5 } ); Using yearrange option we can specify the range of year. $(function() { $( input#dateui ).datepicker( {yearrange: 2000:2010 } );

14 Date Picker Localization We can customize and localize our Date Picker UI component using various options. $(function() { $('input#dateui').datepicker ( { daynamesmin: ['Di', 'Lu', 'Ma', 'Me', 'Je', 'Ve', 'Sa'] } ); } );

15 Date Picker Localization <html> <head> <meta http-equiv="content-type" content="text/html; charset=iso " /> <title>date Picker Demo</title> <link type="text/css" href="css/ui-lightness/jquery-ui custom.css" rel="stylesheet" / <script type="text/javascript" src="js/jquery min.js"></script> <script type="text/javascript" src="js/jquery-ui custom.min.js"></script> <script type="text/javascript"> $(function(){ $('input#dateui').datepicker( { daynamesmin: ['Di', 'Lu', 'Ma', 'Me', 'Je', 'Ve', 'Sa'] } ); </script> </head> <body> <form action= method=post> <input type='text' id='dateui' size='40' value='' /> <input type=submit> </form> </body> </html>

16 Date Picker Localization

17 Multiple Months We can easy set the number of displayed months and the number of months associated with each step. $(function() { $( input#dateui ).datepicker( {numberofmonths: 2, stepmonths: 2 } );

18 Multiple Months <html> <head> <meta http-equiv="content-type" content="text/html; charset=iso " /> <title>date Picker Demo</title> <link type="text/css" href="css/ui-lightness/jquery-ui custom.css" rel="stylesheet" / <script type="text/javascript" src="js/jquery min.js"></script> <script type="text/javascript" src="js/jquery-ui custom.min.js"></script> <script type="text/javascript"> $(function(){10 $('input#dateui').datepicker( { numberofmonths: 2, stepmonths: 2 } ); </script> </head> <body> <form action= method=post> <input type='text' id='dateui' size='40' value='' /> <input type=submit> </form> </body> </html>

19 Multiple Months

20 Animated Date Picker Various options allow us to customize the animation associated with our Date Picker UI component. $(function() { $( input#dateui ).datepicker( { showanim: "drop", showoptions: { direction: "down" } } );

21 Animated Date Picker <html> <head> <meta http-equiv="content-type" content="text/html; charset=iso " /> <title>date Picker Demo</title> <link type="text/css" href="css/ui-lightness/jquery-ui custom.css" rel="stylesheet" /> <script type="text/javascript" src="js/jquery min.js"></script> <script type="text/javascript" src="js/jquery-ui custom.min.js"></script> <script type="text/javascript"> $(function(){ $('input#dateui').datepicker( { showanim: "drop",showoptions: { direction: "down" } } ); </script> </head> <body> <form action= method=post> <input type='text' id='dateui' size='40' value='' /> <input type=submit> </form> </body> </html>

22 Animated Date Picker

grabattention The jquery Plug-in

grabattention The jquery Plug-in grabattention The jquery Plug-in for an elegant way to bring user attention About Plug-in Grab Attention plug-in is developed to bring to notice / grab attention / get notify user for lead generation form,

More information

SEEM4570 System Design and Implementation. Lecture 3 Cordova and jquery

SEEM4570 System Design and Implementation. Lecture 3 Cordova and jquery SEEM4570 System Design and Implementation Lecture 3 Cordova and jquery Prepare a Cordova Project Assume you have installed all components successfully and initialized a project. E.g. follow Lecture Note

More information

JavaScript. jquery and other frameworks. Jacobo Aragunde Pérez. blogs.igalia.com/jaragunde

JavaScript. jquery and other frameworks. Jacobo Aragunde Pérez. blogs.igalia.com/jaragunde JavaScript static void _f_do_barnacle_install_properties(gobjectclass *gobject_class) { GParamSpec *pspec; /* Party code attribute */ pspec = g_param_spec_uint64 (F_DO_BARNACLE_CODE, jquery and other frameworks

More information

MI1004 Script programming and internet applications

MI1004 Script programming and internet applications MI1004 Script programming and internet applications Course content and details Learn > Course information > Course plan Learning goals, grades and content on a brief level Learn > Course material Study

More information

Goal: Learn More About Cancer for Clues To Effective Treatment. Research is often an exploration

Goal: Learn More About Cancer for Clues To Effective Treatment. Research is often an exploration The Project Goal: Learn More About Cancer for Clues To Effective Treatment Research is often an exploration Look for trends in cancer occurrences Look for trends in treatments Perhaps something will pop

More information

The starter app has a menu + 2 Views : Dashboard. About

The starter app has a menu + 2 Views : Dashboard. About Front End The starter app has a menu + 2 Views : Dashboard About All views will be based on structure laid down in Layout layout/main.hbs. Includes Semantic-UI CSS library View content will

More information

Discovery Service Infrastructure for Test- bädden

Discovery Service Infrastructure for Test- bädden Discovery Service Infrastructure for Test- bädden för EID 2.0 Implementation guidelines Version 0.70 2013-04-24 This document describes the discovery service infrastructure for testbädden for EID 2.0 and

More information

MAX 2006 Beyond Boundaries

MAX 2006 Beyond Boundaries Flash and Ajax MAX 006 Beyond Boundaries Jason Williams Integrating Flex Apps with Browsers and AJAX Adobe Systems, Inc. Ajax is likely to become a mainstream tool used by web developers as an alternative

More information

Creating Cloze Exercises Easily and Effectively. Kenji KITAO Doshisha University Kenichi KAMIYA Osaka Institute of Technology

Creating Cloze Exercises Easily and Effectively. Kenji KITAO Doshisha University Kenichi KAMIYA Osaka Institute of Technology 1 Creating Cloze Exercises Easily and Effectively Kenji KITAO Doshisha University Kenichi KAMIYA Osaka Institute of Technology 2 Overview Cloze Generator makes cloze exercises from passages you provide,

More information

A designers guide to creating & editing templates in EzPz

A designers guide to creating & editing templates in EzPz A designers guide to creating & editing templates in EzPz Introduction...2 Getting started...2 Actions...2 File Upload...3 Tokens...3 Menu...3 Head Tokens...4 CSS and JavaScript included files...4 Page

More information

Bookmarks to the headings on this page:

Bookmarks to the headings on this page: Squiz Matrix User Manual Library The Squiz Matrix User Manual Library is a prime resource for all up-to-date manuals about Squiz's flagship CMS Easy Edit Suite Current for Version 4.8.1 Installation Guide

More information

Introduction to HTML5

Introduction to HTML5 Introduction to HTML5 History of HTML 1991 HTML first published 1995 1997 1999 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 After HTML 4.01 was released, focus shifted to XHTML and its stricter standards.

More information

Introduction to ARIA and HTML5. Jared Smith & Jonathan Whiting webaim.org

Introduction to ARIA and HTML5. Jared Smith & Jonathan Whiting webaim.org Introduction to ARIA and HTML5 Jared Smith & Jonathan Whiting webaim.org ARIA ARIA Accessible Rich Internet Applications Specification developed by the PFWG of the W3C s WAI. Huh? W3C Candidate Recommendation

More information

jmaki Overview Sang Shin Java Technology Architect Sun Microsystems, Inc.

jmaki Overview Sang Shin Java Technology Architect Sun Microsystems, Inc. jmaki Overview Sang Shin Java Technology Architect Sun Microsystems, Inc. sang.shin@sun.com www.javapassion.com Agenda What is and Why jmaki? jmaki widgets Using jmaki widget - List widget What makes up

More information

Using htmlarea & a Database to Maintain Content on a Website

Using htmlarea & a Database to Maintain Content on a Website Using htmlarea & a Database to Maintain Content on a Website by Peter Lavin December 30, 2003 Overview If you wish to develop a website that others can contribute to one option is to have text files sent

More information

JavaScript Performance

JavaScript Performance JavaScript Performance 1 Order Matters 2. 1 home

More information

-struts_annotation_bootstrap Estrutura do preojeto... LIBS: asm-3.3.jar asm-commons-3.3.jar commons-fileupload-1.3.jar commons-io-2.0.1.jar commons-lang-2.4.jar commons-lang3-3.1.jar freemarker-2.3.19.jar

More information

How to Promote Your Business Online... and turn website visitors into paying customers. Jayne Reddyhoff 9 th September 2008

How to Promote Your Business Online... and turn website visitors into paying customers. Jayne Reddyhoff 9 th September 2008 How to Promote Your Business Online... and turn website visitors into paying customers Jayne Reddyhoff 9 th September 2008 Agenda Promoting your online business offline SEO it s really not a black art

More information

Configuring Hotspots

Configuring Hotspots CHAPTER 12 Hotspots on the Cisco NAC Guest Server are used to allow administrators to create their own portal pages and host them on the Cisco NAC Guest Server. Hotspots created by administrators can be

More information

Copyright 2011 Sakun Sharma

Copyright 2011 Sakun Sharma Maintaining Sessions in JSP We need sessions for security purpose and multiuser support. Here we are going to use sessions for security in the following manner: 1. Restrict user to open admin panel. 2.

More information

Vebra Search Integration Guide

Vebra Search Integration Guide Guide Introduction... 2 Requirements... 2 How a Vebra search is added to your site... 2 Integration Guide... 3 HTML Wrappers... 4 Page HEAD Content... 4 CSS Styling... 4 BODY tag CSS... 5 DIV#s-container

More information

In the early days of the Web, designers just had the original 91 HTML tags to work with.

In the early days of the Web, designers just had the original 91 HTML tags to work with. Web Design Lesson 4 Cascading Style Sheets In the early days of the Web, designers just had the original 91 HTML tags to work with. Using HTML, they could make headings, paragraphs, and basic text formatting,

More information

django-osm-field Release 0.3.1

django-osm-field Release 0.3.1 django-osm-field Release 0.3.1 Oct 04, 2017 Contents 1 Installation 3 2 Usage 5 3 History 9 4 References 11 5 Indices and tables 15 Python Module Index 17 i ii Contents: Contents 1 2 Contents CHAPTER

More information

LAMPIRAN Kode Program

LAMPIRAN Kode Program 73 LAMPIRAN Kode Program 1. Index.php

More information

Implementing a chat button on TECHNICAL PAPER

Implementing a chat button on TECHNICAL PAPER Implementing a chat button on TECHNICAL PAPER Contents 1 Adding a Live Guide chat button to your Facebook page... 3 1.1 Make the chat button code accessible from your web server... 3 1.2 Create a Facebook

More information

django-sekizai Documentation

django-sekizai Documentation django-sekizai Documentation Release 0.6.1 Jonas Obrist September 23, 2016 Contents 1 About 3 2 Dependencies 5 3 Usage 7 3.1 Configuration............................................... 7 3.2 Template

More information

Working Bootstrap Contact form with PHP and AJAX

Working Bootstrap Contact form with PHP and AJAX Working Bootstrap Contact form with PHP and AJAX Tutorial by Ondrej Svestka Bootstrapious.com Today I would like to show you how to easily build a working contact form using Boostrap framework and AJAX

More information

ISM 50 - Business Information Systems

ISM 50 - Business Information Systems ISM 50 - Business Information Systems Lecture 10 Instructor: Magdalini Eirinaki UC Santa Cruz May 3, 2007 Outline Announcements Student Presentation Client-Server Architecture Student Presentation The

More information

Infodraw MRS Interfaces for Non-MRS Applications

Infodraw MRS Interfaces for Non-MRS Applications Abstract MRS stands for Media Relay System, a system where media, such as audio and video, is passed from capture devices to monitors. The MRS servers and clients use TCP port 12654 and UDP port 12655

More information

An implementation of Tree Panel component in EXT JS 4.0

An implementation of Tree Panel component in EXT JS 4.0 An implementation of Tree Panel component in EXT JS 4.0 By Hamid M. Porasl This implementation contains an HTML file that t is used to invoke used EXT JS java script files and our implemented java Script

More information

New Media Production HTML5

New Media Production HTML5 New Media Production HTML5 Modernizr, an HTML5 Detection Library Modernizr is an open source, MIT-licensed JavaScript library that detects support

More information

Non-English Web Pages In Dreamweaver MX

Non-English Web Pages In Dreamweaver MX Non-English Web Pages In Dreamweaver MX The following describes how to use multiple languages in a web page using Dreamweaver MX for Microsoft Windows. The reader is assumed to have basic computer usage

More information

Copy and Paste the scripts below into the Alter Response Replacement field:

Copy and Paste the scripts below into the Alter Response Replacement field: Copy and Paste this Alter Response Pattern in the first field ^([\s\s]*)$ Copy and Paste the scripts below into the Alter Response Replacement field: There are two example scripts - one that make the images

More information

c360 Web Connect Configuration Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc. c360 Solutions

c360 Web Connect Configuration Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc.   c360 Solutions c360 Web Connect Configuration Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc. www.c360.com c360 Solutions Contents Overview... 3 Web Connect Configuration... 4 Implementing Web Connect...

More information

PRODUCT DOCUMENTATION. Installing and Implementing Enterprise Contact Center Chat RELEASE 5.1

PRODUCT DOCUMENTATION. Installing and Implementing Enterprise Contact Center Chat RELEASE 5.1 PRODUCT DOCUMENTATION Installing and Implementing Enterprise Contact Center Chat RELEASE 5.1 Document and Software Copyrights Copyright 1998 2009 ShoreTel, Inc. All rights reserved. Printed in the United

More information

Enriching SAP MII (SAP Manufacturing Integration and Intelligence) UIs Using Dojo

Enriching SAP MII (SAP Manufacturing Integration and Intelligence) UIs Using Dojo Enriching SAP MII (SAP Manufacturing Integration and Intelligence) UIs Using Dojo Applies to: SAP MII. For more information, visit the Manufacturing homepage. Summary Very often we face a challenge to

More information

Exam Format: Multiple Choice, True/False, Short Answer (3 points each 75 points total) Write-the-page (25 points)

Exam Format: Multiple Choice, True/False, Short Answer (3 points each 75 points total) Write-the-page (25 points) CS-101 Fall 2008 Section 4 Practice Final v1.0m Name: Exam Format: Multiple Choice, True/False, Short Answer (3 points each 75 points total) Write-the-page (25 points) XHTML/CSS Reference: Entities: Copyright

More information

LAMP, WEB ARCHITECTURE, AND HTTP

LAMP, WEB ARCHITECTURE, AND HTTP CS 418 Web Programming Spring 2013 LAMP, WEB ARCHITECTURE, AND HTTP SCOTT G. AINSWORTH http://www.cs.odu.edu/~sainswor/cs418-s13/ 2 OUTLINE Assigned Reading Chapter 1 Configuring Your Installation pgs.

More information

src1-malan/ajax/ajax1.html ajax1.html Gets stock quote from quote1.php via Ajax, displaying result with alert().

src1-malan/ajax/ajax1.html ajax1.html Gets stock quote from quote1.php via Ajax, displaying result with alert(). src1-malan/ajax/ajaxhtml 1 1 1 1 1 2 2 2 2 2 2 2 2 30. 3 3 3 3 3 3 3 3 3 40. 4 4 4 4 4 4 4 4 ajaxhtml Gets stock quote from quotephp via Ajax, displaying result with alert(). Building Mobile Applications

More information

TN3 Gallery. User Guide revision 2.1

TN3 Gallery. User Guide revision 2.1 TN3 Gallery User Guide revision 2.1 www.tn3gallery.com Installation Installing the jquery javascript library 1. Visit http://jquery.com/ and click the download button. Save the file on your hard drive

More information

How to Make a Contact Us PAGE in Dreamweaver

How to Make a Contact Us PAGE in Dreamweaver We found a great website on the net called http://dreamweaverspot.com and we have basically followed their tutorial for creating Contact Forms. We also checked out a few other tutorials we found by Googling,

More information

Manual Html A Href Onclick Submit Form

Manual Html A Href Onclick Submit Form Manual Html A Href Onclick Submit Form JS HTML DOM. DOM Intro DOM Methods HTML form validation can be done by a JavaScript. If a form field _input type="submit" value="submit" /form_. As shown in a previous

More information

In-ADS User Guide. Estonian Land Board Versioon 1.9.1

In-ADS User Guide. Estonian Land Board Versioon 1.9.1 01.06.2018 Versioon 1.9.1 Estonian Land Board Table of contents 1. Introduction... 3 2. Requirements... 3 3. Embed code generation... 4 3.1... Main modes of operation... 4 3.2... Object types and priorities...

More information

KonaKart Shopping Widgets. 3rd January DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK

KonaKart Shopping Widgets. 3rd January DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK KonaKart Shopping Widgets 3rd January 2018 DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK Introduction KonaKart ( www.konakart.com ) is a Java based ecommerce platform

More information

Rolling Your Own Online Usability Study

Rolling Your Own Online Usability Study Rolling Your Own Online Usability Study Tom Tullis Tom@MeasuringUX.com 2 Rolling Your Own Online Study A way of building an online usability study based on online survey tools. Sample study built using

More information

Design Project. i385f Special Topics in Information Architecture Instructor: Don Turnbull. Elias Tzoc

Design Project. i385f Special Topics in Information Architecture Instructor: Don Turnbull. Elias Tzoc Design Project Site: News from Latin America Design Project i385f Special Topics in Information Architecture Instructor: Don Turnbull Elias Tzoc April 3, 2007 Design Project - 1 I. Planning [ Upper case:

More information

Integration of a javascript timer with storyline. using a random question bank. Version Isabelle Aubin. Programmer-Analyst

Integration of a javascript timer with storyline. using a random question bank. Version Isabelle Aubin. Programmer-Analyst Integration of a javascript timer with storyline using a random question bank Version 1.1 11-10-2016 Isabelle Aubin Programmer-Analyst Table of Contents INTRODUCTION... 3 STEPS... 4 1 THE BEGINNING OF

More information

Week 8 Google Maps. This week you ll learn how to embed a Google Map into a web page and add custom markers with custom labels.

Week 8 Google Maps. This week you ll learn how to embed a Google Map into a web page and add custom markers with custom labels. Introduction Hopefully by now you ll have seen the possibilities that jquery provides for rich content on web sites in the form of interaction and media playback. This week we ll be extending this into

More information

thymeleaf #thymeleaf

thymeleaf #thymeleaf thymeleaf #thymeleaf Table of Contents About 1 Chapter 1: Getting started with thymeleaf 2 Remarks 2 Versions 2 Examples 2 Configuration 2 Using checkboxes 3 Ajax form submition with Jquery 4 Replacing

More information

Bootstrap Carousel. jquery Image Sliders

Bootstrap Carousel. jquery Image Sliders Bootstrap Carousel jquery Image Sliders Bootstrap Carousel Carousel bootstarp css js jquery js bootstrap.js http://getbootstrap.com/javascript/#carousel item ol.carousel-indicators li

More information

showinplaceholder The jquery Plug-in

showinplaceholder The jquery Plug-in showinplaceholder The jquery Plug-in for showing an image to place holder / target box About Plug-in Show in Place Holder plug-in is developed to show an image to place holder / target box. Plug-in can

More information

Last &me: Javascript (forms and func&ons)

Last &me: Javascript (forms and func&ons) Let s debug some code together: hkp://www.clsp.jhu.edu/~anni/cs103/test_before.html hkp://www.clsp.jhu.edu/~anni/cs103/test_arer.html

More information

state View; else if (mesg == "Overview") { state Overview; state_exit(){}

state View; else if (mesg == Overview) { state Overview; state_exit(){} list labels = ["Take", "Overview", "View"]; key httpid = NULL_KEY; integer mychannel = -17325; // Set this to something unique for yourself to avoid crosstalk key who; key textureblank = "8dcd4a48-2d37-4909-9f78-f7a9eb4ef903";

More information

Rich Interfaces with jquery UI: Part 1 Setup and Basic Widgets

Rich Interfaces with jquery UI: Part 1 Setup and Basic Widgets coreservlets.com custom onsite training Rich Interfaces with jquery UI: Part 1 Setup and Basic Widgets Slides 2016 Marty Hall, hall@coreservlets.com For additional materials, please see http://www.coreservlets.com/.

More information

1.1 Text Alternatives: Provide text alternatives for any non-text content. 3.1 Readable: Make text content readable and understandable.

1.1 Text Alternatives: Provide text alternatives for any non-text content. 3.1 Readable: Make text content readable and understandable. Monday April 29, 2013 10:10:00 Source URL: http://hastanerandevu.gov.tr/randevu/randevu.jsp Source Title: Hastane Randevu Merkezi Yönlendirme Accessibility Review (Guidelines: WCAG 2.0 (Level AA)) Report

More information

JavaScript and Ajax.

JavaScript and Ajax. JavaScript and Ajax http://www.w3schools.com/js/js_examples.asp Unless otherwise noted, the content of this course material is licensed under a Creative Commons Attribution 3.0 License. http://creativecommons.org/licenses/by/3.0/.

More information

Instructions Integration of the Location search map application

Instructions Integration of the Location search map application Instructions Integration of the Location search map application This document is a guideline for integrators and describes how Swiss Post s location search can be successfully integrated into a website.

More information

Unit Notes. ICAWEB411A Produce basic client-side script for dynamic web pages Topic 1 Introduction to JavaScript

Unit Notes. ICAWEB411A Produce basic client-side script for dynamic web pages Topic 1 Introduction to JavaScript Unit Notes ICAWEB411A Produce basic client-side script for dynamic web pages Topic 1 Introduction to JavaScript Copyright, 2013 by TAFE NSW - North Coast Institute Date last saved: 18 September 2013 by

More information

Decibel Insight Implementation Guide v4.1.6

Decibel Insight Implementation Guide v4.1.6 Decibel Insight Implementation Guide v4.1.6 Decibel Insight Implementation Guide This guide explains the process of implementing Decibel Insight on your website. The guide assumes that you have a Decibel

More information

Document for Consuming Web-Service In.NET & JAVA

Document for Consuming Web-Service In.NET & JAVA Document for Consuming Web-Service In.NET & JAVA Delhi e-governance Society, Department of Information Technology, Government of Delhi 9 th Level B Wing Delhi Secretariat 1 Background: Ministry of Electronics

More information

Presenter: Richard Merrill, Autograff Inc.

Presenter: Richard Merrill, Autograff Inc. Presenter: Richard Merrill, Autograff Inc. File and Folder Naming Meta tags controlled and standardized Semantically-rich spider searchable menus Moving pages while preserving menus Common folder and page

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

Create a cool image gallery using CSS visibility and positioning property

Create a cool image gallery using CSS visibility and positioning property GRC 275 A8 Create a cool image gallery using CSS visibility and positioning property 1. Create a cool image gallery, having thumbnails which when moused over display larger images 2. Gallery must provide

More information

Custom Builder Help WebSphere Portlet Factory 6.1

Custom Builder Help WebSphere Portlet Factory 6.1 Custom Builder Help WebSphere Portlet Factory 6.1 IBM Table of Contents Section 1. Introduction...2 Section 2. Create a new Eclipse Help Plug-in...3 Section 3. Help Content...4 Section 4. Update the Insert

More information

TRAINING GUIDE. Rebranding Lucity Web

TRAINING GUIDE. Rebranding Lucity Web TRAINING GUIDE Rebranding Lucity Web Rebranding Lucity Web Applications In this booklet, we ll show how to make the Lucity web applications your own by matching your agency s style. Table of Contents Web

More information

SNC-RZ30 Web pages customization documentation

SNC-RZ30 Web pages customization documentation SNC-RZ30 Web pages customization documentation version 1 12 / Aug / 2002 SONY Corporation 1. General description This documentation explains the way to display the live images in the other web site and

More information

Dr. S. Sreekanth, Ph.D Professor, Dept of CSE, SITAMS, Chittoor (Dist.), Andhra Pradesh, India

Dr. S. Sreekanth, Ph.D Professor, Dept of CSE, SITAMS, Chittoor (Dist.), Andhra Pradesh, India Volume 6, Issue 5, May 2016 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Student Assessment

More information

JavaScript (5A) JavaScript

JavaScript (5A) JavaScript JavaScript (5A) JavaScript Copyright (c) 2012 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any

More information

Overview... 4 JavaScript Charting and Metric Insights... 5

Overview... 4 JavaScript Charting and Metric Insights... 5 JAVASCRIPT CHARTING Table of Contents Overview... 4 and Metric Insights... 5 Chart Types...11 Overview of JavaScript chart types...12 d3...13 Highcharts...16 Highstock...18 Google...19 nvd3...21 Dynamic

More information

GIMP WEB 2.0 MENUS. Before we begin this tutorial let s visually compare a standard navigation bar and a web 2.0 navigation bar.

GIMP WEB 2.0 MENUS. Before we begin this tutorial let s visually compare a standard navigation bar and a web 2.0 navigation bar. GIMP WEB 2.0 MENUS Before we begin this tutorial let s visually compare a standard navigation bar and a web 2.0 navigation bar. Standard Navigation Bar Web 2.0 Navigation Bar Now the all-important question

More information

SocialMiner Configuration

SocialMiner Configuration This section outlines the initial setup that must be performed when SocialMiner is first installed as well as the ongoing user-configurable options that can be used once the system is up and running. The

More information

Consider the following file A_Q1.html.

Consider the following file A_Q1.html. Consider the following file A_Q1.html. 1 2 3 Q1A 4 5 6 7 function check () { 8 } 9 10 11

More information

SEEM4570 System Design and Implementation. Lecture 4 AJAX and Demo

SEEM4570 System Design and Implementation. Lecture 4 AJAX and Demo SEEM4570 System Design and Implementation Lecture 4 AJAX and Demo Prerequisite Please follow lecture note 3 up to P. 19 to set up your app environment. We build everything on top of it. In index.html,

More information

Meet Mojo. Jesse Donaldson Sr. Manager, Mojo Framework

Meet Mojo. Jesse Donaldson Sr. Manager, Mojo Framework Meet Mojo Jesse Donaldson Sr. Manager, Mojo Framework Goals webos UI overview Mojo apps are like web pages Development model is accessible App structure & basic framework usage Head start when you download

More information

Phishing attempt 1. 2. 3. 4.

More information

Produced by. Agile Software Development. Eamonn de Leastar

Produced by. Agile Software Development. Eamonn de Leastar Agile Software Development Produced by Eamonn de Leastar (edeleastar@wit.ie) Department of Computing, Maths & Physics Waterford Institute of Technology http://www.wit.ie http://elearning.wit.ie Pacemaker

More information

Scripting for Multimedia LECTURE 5: INTRODUCING CSS3

Scripting for Multimedia LECTURE 5: INTRODUCING CSS3 Scripting for Multimedia LECTURE 5: INTRODUCING CSS3 CSS introduction CSS Level 1 --> CSS Level 2 --> CSS Level 3 (in modules) More than 50 modules are published Cascading style sheets (CSS) defines how

More information

Exam II CIS 228: The Internet Prof. St. John Lehman College City University of New York 5 November 2009

Exam II CIS 228: The Internet Prof. St. John Lehman College City University of New York 5 November 2009 Exam II CIS 228: The Internet Prof. St. John Lehman College City University of New York 5 November 2009 NAME (Printed) NAME (Signed) E-mail Exam Rules Show all your work. Your grade will be based on the

More information

Sample Exam 2 (Version 1) CIS 228: The Internet Prof. St. John Lehman College City University of New York 7 November 2007

Sample Exam 2 (Version 1) CIS 228: The Internet Prof. St. John Lehman College City University of New York 7 November 2007 Sample Exam 2 (Version 1) CIS 228: The Internet Prof. St. John Lehman College City University of New York 7 November 2007 NAME (Printed) NAME (Signed) E-mail Exam Rules Show all your work. Your grade will

More information

Create HTML subscription and unsubscription pages

Create HTML subscription and unsubscription pages How to Create HTML subscription and unsubscription pages This How-to shows how to create your own HTML forms for newsletter subscription and unsubscription. You will find examples of confirmation and error

More information

Anser Technology Block Curriculum. Anser TechBlock. Part II: Introduction to Software. Oliver Fritsch Aubrey Miles

Anser Technology Block Curriculum. Anser TechBlock. Part II: Introduction to Software. Oliver Fritsch Aubrey Miles Anser Technology Block Curriculum Part II: Introduction to Software Oliver Fritsch Aubrey Miles 1.11.2005 Schedule Date October 25 November 1 November 8 November 15 November 22 December 6 Group A (Persi

More information

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space.

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space. HTML Summary Structure All of the following are containers. Structure Contains the entire web page. Contains information

More information

Form Processing in PHP

Form Processing in PHP Form Processing in PHP Forms Forms are special components which allow your site visitors to supply various information on the HTML page. We have previously talked about creating HTML forms. Forms typically

More information

Manual Html A Href Onclick Submit Button

Manual Html A Href Onclick Submit Button Manual Html A Href Onclick Submit Button When you submit the form via clicking the radio button, it inserts properly into Doing a manual refresh (F5 or refresh button) will then display the new updated

More information

Hacking ASUS Routers: A Case Study. By Yakov Shafranovich October 8th, 2017

Hacking ASUS Routers: A Case Study. By Yakov Shafranovich October 8th, 2017 Hacking ASUS Routers: A Case Study By Yakov Shafranovich yakov@nightwatchcybersecurity.com October 8th, 2017 About Me I was a software developer most of my career Security bug bounty hunter on the side

More information

PHP & My SQL Duration-4-6 Months

PHP & My SQL Duration-4-6 Months PHP & My SQL Duration-4-6 Months Overview of the PHP & My SQL Introduction of different Web Technology Working with the web Client / Server Programs Server Communication Sessions Cookies Typed Languages

More information

Applications & Application-Layer Protocols: The Web & HTTP

Applications & Application-Layer Protocols: The Web & HTTP CPSC 360 Network Programming Applications & Application-Layer Protocols: The Web & HTTP Michele Weigle Department of Computer Science Clemson University mweigle@cs.clemson.edu http://www.cs.clemson.edu/~mweigle/courses/cpsc360

More information

wemx WebService V1.0

wemx WebService V1.0 wemx WebService 2 wemx WebService WEMX WEBSERVICE... 1 1. WEB SERVICE INTRODUCTION... 6 1.1. SYSTEM PAGE... 6 1.2. USER PAGE... 7 1.3. WEB SERVICE API... 8 2. SYSTEM PAGE PROVIDED BY THE WEB SERVICE...

More information

SEEM4570 System Design and Implementation. Lecture 3 Events

SEEM4570 System Design and Implementation. Lecture 3 Events SEEM4570 System Design and Implementation Lecture 3 Events Preparation Install all necessary software and packages. Follow Tutorial Note 2. Initialize a new project. Follow Lecture Note 2 Page 2. Reset

More information

Guest Access Portal Integration

Guest Access Portal Integration Integrate the cnpilot enterprise Access Points with an external Guest Access Portal Guest Access Portal Integration cnpilot E400, E500, epmp1000 Hotspot Cambium Networks Ltd. All rights reserved. Table

More information

UI Plugins. Extending ovirt Web Admin. Vojtech Szöcs Software Engineer, Red Hat January 23, ovirt UI Plugins VOJTECH SZÖCS

UI Plugins. Extending ovirt Web Admin. Vojtech Szöcs Software Engineer, Red Hat January 23, ovirt UI Plugins VOJTECH SZÖCS UI Plugins Extending ovirt Web Admin Vojtech Szöcs Software Engineer, Red Hat January 23, 2013 About the speaker ovirt UI maintainer Web Admin User Portal Deals with front-end application architecture

More information

UX/UI Controller Component

UX/UI Controller Component http://www.egovframe.go.kr/wiki/doku.php?id=egovframework:mrte:ux_ui:ux_ui_controller_component_3.5 UX/UI Controller Component Outline egovframework offers the user an experience to enjoy one of the most

More information

Cordova - Guide - App Development - Basics

Cordova - Guide - App Development - Basics Cordova - Guide - App Development - Basics Dr Nick Hayward A brief overview and introduction to Apache Cordova application development and design. Contents intro Cordova CLI - build initial project Cordova

More information

Part 4: Creating a Drill-down Interface

Part 4: Creating a Drill-down Interface Part 4: Creating a Drill-down Interface In this section you will learn to Pass Variables through a link Receive Variables passed through the URL Passing Variables between Pages Variables may be passed

More information

First Version Web 1.0: customer.jsp

First Version Web 1.0: customer.jsp First Version Web 1.0: customer.jsp

More information

SMS GATEWAY API INTEGRATION GUIDE

SMS GATEWAY API INTEGRATION GUIDE SMS GATEWAY API INTEGRATION GUIDE For PHP Developers Are you a developer or bulk SMS reseller? You can interface your application, website or system with our 247 reliable messaging gateway by using our

More information