Background Patron's Copyright Agreement for Borrowing Requests

Slides:



Advertisements
Similar presentations
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 6: HTML Tables.
Advertisements

Dreamweaver Forms Overview. Forms – A Little Review Most user/webpage communication is one way, like this: Most user/webpage communication is one way,
Video, audio, embed, iframe, HTML Form
Supplement Creating Forms. Objectives Show how forms are used How to create the Form element HTML elements used for creating input fields.
Tutorial 6 Working with Web Forms
Python and Web Programming
Tutorial 6 Working with Web Forms. XP Objectives Explore how Web forms interact with Web servers Create form elements Create field sets and legends Create.
Session 2 Tables and forms in HTML Adapted by Sophie Peter from original document by Charlie Foulkes.
HTML Tables and Forms Creating Web Pages with HTML CIS 133 Web Programming Concepts 1.
HTML, Third Edition--Illustrated Introductory 1 HTML, Third Edition Illustrated Introductory Unit F Working with Tables.
225 City Avenue, Suite 106 Bala Cynwyd, PA , phone , fax presents… HTML Lists, Tables and Forms v2.0.
HTML - Forms By Joaquin Vila, Ph.D.. Form Tag The FORM tag specifies a fill-out form within an HTML document. More than one fill-out form can be in a.
Robinson_CIS_285_2005 HTML FORMS CIS 285 Winter_2005 Instructor: Mary Robinson.
INTRODUCTORY Tutorial 8 Creating Forms. XP New Perspectives on Blended HTML, XHTML, and CSS2 Objectives Create an HTML form Create fields for text Create.
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
LOGO FORMs in HTML CHAPTER 5 Eastern Mediterranean University School of Computing and Technology Department of Information Technology ITEC229 Client-Side.
HTML - Forms By Joaquin Vila, Ph.D.. Form Tag The FORM tag specifies a fill-out form within an HTML document. More than one fill-out form can be in a.
HTML FORMS GET/POST METHODS. HTML FORMS HTML Forms HTML forms are used to pass data to a server. A form can contain input elements like text fields, checkboxes,
Tutorial 6 Working with Web Forms. XP Objectives Explore how Web forms interact with Web servers Create form elements Create field sets and legends Create.
Tutorial 6 Working with Web Forms. 2New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Objectives Explore how Web forms interact with.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 9 Key Concepts 1 Copyright © Terry Felke-Morris.
1 Review of Form Elements. 2 The tag Used in between tags.  Form elements(text control, buttons, etc.. ) goes here. OR  Form elements(text control,
CIS234A Lecture 8 Instructor Greg D’Andrea. Review Text Table contains only text, evenly spaced on the Web page in rows and columns uses only standard.
HTML Forms a form is a container for input elements on a web page input elements contain data that is sent to the web server for processing.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 9 Key Concepts 1 Copyright © Terry Felke-Morris.
Tutorial 6 Working with Web Forms. 2New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Objectives Explore how Web forms interact with.
ILL & Items v.15 e-Seminar Yifat Lulav
Copyright (c) 2004 Prentice-Hall. All rights reserved. 1 Committed to Shaping the Next Generation of IT Experts. Project 6: Creating XHTML Forms Kelly.
Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
Web Forms. Web Forms: A form allows our web visitors to submit information to us. Some examples uses for forms are to let the web user contact us, fill.
HTML Elements: Forms and Controls Chapter 9 B. Ramamurthy.
INTRODUCTION ABOUT DIV Most websites have put their content in multiple columns. Multiple columns are created by using or elements. The div element is.
2440: 141 Web Site Administration Web Forms Instructor: Joseph Nattey.
Tutorial 6 Working with Web Forms
Web Development Part 2.
Ori Miller, Aleph Support Manager
CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr
Version 20 Feature Developments
CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr
CS3220 Web and Internet Programming HTML Tables and Forms
ITE 115 Creating Web Page Forms
Basic XHTML Tables XHTML tables—a frequently used feature that organizes data into rows and columns. Tables are defined with the table element. Table.
HTML Forms CSC 102 Lecture.
Chapter 5 Introduction to XHTML: Part 2
Tables Tables provide a means of organising the layout of data
Lesson 8 Week 8 Designing Forms
Integrated ILL GUI desktop
H T M L A B E S X P I N D.
TABLES.
HTML Tables CS 1150 Fall 2016.
Introducing Forms.
1.5 FORMS.
Unit I: Collecting Data with Forms
Web Development & Design Foundations with H T M L 5
Forms Data Entry and Capture
Basic HTML and Embed Codes
LESSON Extension Module 2: HTML Basics Tables.
Forms, cont’d.
In Class Programming BIS1523 – Lecture 11.
CNIT 131 HTML5 - Forms.
CS3220 Web and Internet Programming HTML Tables and Forms
Using rowspan and colspan attributes
Using rowspan and colspan attributes
Introduction to HTML.
Site Development Foundations Lesson 6
CS205 Tables & Forms © 2012 D. J. Foreman.
A Title Link 1 Some text A picture Link 2 Link 3 Link 4   Link 1 | Link 2 | Link 3 | Link 4.
CS205 Tables & Forms © 2008 D. J. Foreman.
CS205 Tables & Forms © 2004 D. J. Foreman.
Web Forms.
Presentation transcript:

How to Make the ILL Copyright Agreement Checkbox to be Checked by Default and Hidden

Background Patron's Copyright Agreement for Borrowing Requests Patrons can be required to ‘sign’ a copyright declaration when they submit a new ILL borrowing request. A request that has not been marked as 'copyright signed' when the table’s configuration shows that it is a mandatory issue for the supplier (to whom the request is sent), will be blocked upon the Send' action.

Background By checking the checkbox in the new ILL borrowing request page the patrons ‘sign’ the copyright declaration.

new-ill-r-copyright The “checkbox” parameter in the relevant HTML page www_f_eng/new-ill-r-copyright (as seen in the previous slide) <tr> <td class=td1 id=bold width="20%" nowrap> I have read the above statement and agree to abide by its restrictions. </td> <td class=td1 id=bold width=1% align=center> <span class=text2>*</span> <td class=td1 id=bold> <input type="checkbox" name=Z40___COPYRIGHT_LETTER value="Y" $$3400-C"Y"> </tr> <td class=td1 id=bold colspan=3> <input type=hidden name="COPYRIGHT_MANDATORY" value="Y"> <input type=hidden name="UPDATE_COPYRIGHT_LETTER" value="Y">

html <input type="checkbox“> tag1 Different attributes may be added to the html <input> tag such as: Attribute: type=“checkbox” Attribute: checked=“checked” 1Taken from: http://www.w3schools.com/html/html_forms.asp

new-ill-r-copyright Add attribute - checked="checked“ – to the ILL copyright agreement checkbox Restart the web server <tr> <td class=td1 id=bold width="20%" nowrap> I have read the above statement and agree to abide by its restrictions. </td> <td class=td1 id=bold width=1% align=center> <span class=text2>*</span> <td class=td1 id=bold> <input type="checkbox" checked="checked" name=Z40___COPYRIGHT_LETTER value="Y" $$3400-C"Y"> </tr>

New ILL borrowing request The checkbox will be checked by default

Hiding the checked checkbox A library may prefer to not only have it by default checked but also not even have it appear. In this case they can leave the default as checked and make the checkbox hidden.

new-ill-r-copyright add the parameter ‘hidden’ to the <type> tag and comment out the text. Restart the web server <tr> <!-------------------------------- <td class=td1 id=bold width="20%" nowrap> I have read the above statement and agree to abide by its restrictions. </td> <td class=td1 id=bold width=1% align=center> <span class=text2>*</span> ----> <td class=td1 id=bold> <input type=hidden type="checkbox" checked="checked" name=Z40___COPYRIGHT_LETTER value="Y" $$3400-C"Y"> </tr>

New ILL borrowing request The Copyright Restriction are displayed in the page for the patron to read but the checkbox is not.

Copyright statement is signed The patron did not ‘sign’ the copyright statement but a new ILL borrowing request will be sent to the system as a ‘signed’ one.

Copyright statement is signed We can see via the GUI that the Copyright Statement was signed