7.1
Table Of Contents
- Table of Content
- Overview
- Understanding PrintShop Mail Web
- Getting Started
- The PrintShop Mail Web Interface
- Publishing Workflow
- Ordering Workflow
- New Document
- Order Manager
- Checkout
- Companies
- Users
- Publication Types
- Collections
- Settings
- About
- License
- Roles
- Languages
- Web Design
- Maintenance
- Settings
- Currencies
- Tax Rates
- Shipping Rates
- Calendar
- Production Settings
- User Input Field Defaults
- Output Folders
- Job options
- Printers
- E-mail Settings
- E-mail Addressees
- Managing E-mail Templates
- Modules Settings
- Enabling a MIS connector
- Installed modules
- Properties
- Enabling a Print Production connector
- Installed modules
- Properties
- Requirements
- Configuring the module
- The PayPal Sandbox
- Processing orders
- Requirements
- Configuring the Authorize.net module
- Test mode
- AVS and CCV checks
- Payment page
- Requirements
- Requesting a test account
- Configuring the iDEAL test dashboard
- Configuring the iDeal module
- Requirements
- Configuring the Moneris module
- Test mode
- Requesting a live account
- AVS and CVD checks
- Payment page
- Add a new Module
- Configure a module
- Delete a Module
- XML (eXtensible Markup Language)
- Options
- Sample POST receive script
- Interaction With PrintShop Mail Design
- Introduction to Regular Expressions
- Introduction
- Skinning Guide
- Getting started
- Creating your own skin
- The template file
- HMTL Outline
- Styling
- Key Concepts
- Style organization
- Header
- User information
- Menu bar
- Background
- Overview tables
- Edit forms
- Sub menus
- Special variables
- Variables for template files
- Variables for style files
- Creating page exceptions
- Creating a page specific template file
- Modifying a page specific template file
- DOM manipulation using jQuery
- Launching code on Document Ready
- Populating fields with computed values
- Removing elements from the DOM
- Adding information to the DOM
- Customizing the store front
- Storefront class
- Creating a hierarchical tree
- Adding a live search option
- Copyright Information
- Index
</table>
</div>
The content is enclosed by a <div> element. Each page contains a <form> tag, which is used to catch information entered by
the user or to perform an action when the user clicks a button.
The <form> tag has two main components: the actual table and the toolbar/buttons to perform specific actions. A page will
only contain a single overview table.
Head
The <th> tag indicates that the table cell(s) of the first row is a header cell, in this case the title for the table. In the Style.php
file an id selector with a subselector of <th> is created to avoid styling conflicts with other tables.
#tableOverview th {
background-color: <? generateSkinMainColor(); ?>;
padding: 2px;
font-weight: bold;
text-align: left;
border-width: 0 0 1px 0;
border-color: #FFFFFF #FFFFFF #FFFFFF #FFFFFF;
border-style: solid;
color: #FFFFFF
}
Subhead
The second row shows the names for the columns. Often the first column contains a check box to select and deselect (toggle)
the records of the current page in the overview.
Content
The rows (<tr> tag) that form the body of the table have the record class selector. In hierarchical overviews a second class
selector is used to specify the level in the hierarchy. The <td> tags contained by the table row can have different class selec-
tors. This depends on the type of content, examples are: text, icon and check box.
In the skins supplied with PSW the background color for the element is set when the user places the cursor over a specific row
(hovers).
#tableOverview tr.level0:hover,
#tableOverview tr.level1:hover,
#tableOverview tr.record:hover {
background-color: #E6E6FF;
}
Footer
The last table row is used to display navigation options. The navigation options become visible when the overview contains
more than the number of records set in the setRowsPerPagevariable (default 15). Please refer to setRowsPerPage for more
information about this function.
#tableOverview tr.level0:hover,
#tableOverview tr.level1:hover,
©2010 Objectif Lune Inc - 234 -