4D Ajax Framework 1.1 ADDENDUM

Size: px
Start display at page:

Download "4D Ajax Framework 1.1 ADDENDUM"

Transcription

1 ADDENDUM The 4D Ajax Framework has undergone significant enhancement in version 1.1, with new features added, enhancements made to existing features, performance improvement, as well as bug fixes. This document details the new features and major changes for the 4D Ajax Framework. Additional information on these features can be found at the 4D Web 2.0 Pack wiki, New in Version 1.1 New Selection Object: Data / Image Matrix Two new objects were added to the 4D Ajax Framework - Data Matrix and Image Matrix. Internally they are the same object, but vary slightly based on parameters. Both objects allow you to organize and integrate different data types and fields into a user-friendly display. We drew our inspiration for these objects from the Outlook Contacts interface, but these objects can be used to organize many other kinds of data, including graphics, documents, videos, and more. As Administrator, you can define your selection to be displayed as Data Matrix or Picture Matrix. In conjunction with a picture field, you can display your selection as an image gallery. Click on the SetUp button to define the view. You can display or choose any available picture fields, select any field as title and display or not other fields next to the picture. However, a picture field is not required to use these window types. Available Layouts: There are 2 main layouts for the matrix objects: Browse (top/bottom) and Detail (left/right). Browse layout displays data in the form of thumbnails. It is the default layout when selecting the Image Matrix for a selection. With this matrix type, only two fields value can be displayed in the matrix cell. Addendum 1

2 The first picture field in the selection The first non-picture field in the selection. 2 Addendum

3 New in Version 1.1 Detail layout displays data in a form of a label. Once the Data Matrix is set to a selection, the selection is displayed with the Left-Detail layout by default. Addendum 3

4 If the selection has no picture field or the picture field is invisible, the Left-Detail and Right-Detail layout will appear the same way. Changing the Number of Cells Displayed The matrix objects also give the end user the ability to increase or decrease the number of cells in each matrix window. Click the "Less" button at the top of the window if you want to decrease the number of cells in the matrix window. Click "More" to increase the number of cells. 4 Addendum

5 New in Version 1.1 Changing the Default Layout The user can overwrite the default layout at any time while they are in the same login session. Any changes made by the user will be overwritten the next time the user logs in. To view the setup option, click on the "Setup" button at the top of the matrix window to display or hide the layout option bar. The Header field will always be displayed, but the Image field is not required. To deselect the picture, select "None" from the Image dropdown list. Data Matrix API Summary Here are some key commands in the new Data Matrix API. Create a new object: mydatamatrix = new datamatrix(targetnode, selectionname, header, imagefield, contents, zoomcontents, layout, margin, zoomlevel, scrollmode, forcerows, forcecolumns, allowcellmouseinteraction); Reapply settings (will use the existing object and resubmit those same settings to be used when a new object is created): mydatamatrix.reinit(selectionname, header, imagefield, contents, zoom- Contents, layout, margin, zoomlevel, scrollmode, forcerows, forcecolumns, allowcellmouseinteraction); Hibernate and wake up will suspend object operations (such as automatic data update) or resume them: mydatamatrix.hibernate(); mydatamatrix.wakeup(); ZoomCell will magnify the cell up to the size of the entire object: mydatamatrix.zoomcell(cellref); Customize toolbar to show or hide parts of the toolbar: mydatamatrix.customize(showtoolbar, showauxtoolbar, useeditor, createbtn, deletebtn, zoombtn, setupbtn, displaybtn, layoutbtn, searchbtn, headerdropdown, ImageDropdown, sortdropdown); Addendum 5

6 For full customization and API documentation, please refer to: Choice Lists 4D Ajax Framework version 1.1 introduces a new 'choice lists' feature. When a choice list is assigned to a field, the browser will display the input for that field as a pop-up menu (instead of a text entry area). To assign a choice list to a field: 1 Define a list in the 4D list Editor. 2 Open the Structure window and double-click on the field you wish to assign the list to. 3 In the Inspector window select the Choices & Help tab. 4 Place a check in the checkbox Allow Choice List. 5 Select your list from the pop-up menu and click the Apply button. You can use the developer hook DAX_DevHook_ListContents (defined elsewhere in this document) to modify the contents of the list before it is sent to the browser. You can also define an empty list in the List Editor and use the developer hook to define the full contents of the list. Note: Only flat lists are supported. Hierarchical lists are not supported by this feature; only the first level of the list will be visible in the pop-up menu if used. Preset Queries 4D Ajax Framework version 1.1 introduces a new 'preset queries' feature. Preset queries are queries formulated by the 4D Developer for the purpose of presenting information in an organized manner once users log on. It allows the admin to filter the data before the users can access it. The Query Manager in the administrative control panel allows the developer to create or edit the preset queries for his application. Unlike 6 Addendum

7 New in Version 1.1 saved queries, a user cannot delete preset queries; these can only be deleted from the control panel. When a preset query is assigned to a selection, the browser will add a tab to the data view window that will display the result of the preset query. Each query will tell the browser to create a tab in the data view window. These tabs can be reordered in the query manager and the default 'all records' tab can be hidden. This preference can be set for each selection. When multiple tab controls are displayed, two new tabs Previous and Next will appear to assist you in navigating. Preset queries can be created: from scratch from a template Addendum 7

8 as a dynamic query Creating a query from scratch In order to create a preset query from scratch, you will need to assign it to a selection and specify its name (the name will need to be unique for that selection). You will then need to set or not a sorting order and sorting field. A maximum number of records can also be preset. This allows you to create Top N type queries (such as top 10 customers). You will then need to assign conditions to your query. Conditions can be static (with a static value) or dynamic if the 'is a method' attribute is checked (with a value that will be generated by the specified method) 8 Addendum

9 New in Version 1.1 Creating a query from a template You will have to specify the selection and the field you want to associate the queries with. Templates can generate several queries at once. The templates are defined in an XML document in the extras/support folder and can be customized by the developer to meet his application needs. Creating a query as a dynamic query Dynamic queries allow the developer to create dynamic tabs. If a dynamic query is associated with a field, a tab will be created in the data view window for each unique value of the specified field. The browser will automatically update these tabs in order to reflect the changes of the data. Addendum 9

10 DAX_DevHook _QueryAdd 4D Ajax Framework version 1.1 also introduces a new Developer Hook to programmatically create a new preset query. This hook is DAX_DevHook_QueryAdd. DAX_DevHook_QueryAdd is used by the developer to create preset queries and assign them to a selection. These saved queries then appear as tabs in a Grid view. For instance you could create a saved query for each letter of the alphabet and assign it to the last name field of a Contacts table. Then the user would see 26 tabs that each return the results for the associated letter. Adding a custom query is done by calling DAX_Dev_QueryCreate and passing nine (9) parameters: Passed Parameters $1 TEXT - Name of the Query to Add $2 TEXT - Name of the selection (table ) the Query is for $3 TEXT - Name of the field to use for sorting $4 TEXT - Sort order to use. It must be either 'asc' or 'desc' (for ascending or descending). $5 POINTER - Pointer to a Text Array to set the line links. Determines if multiple lines are processed as AND or OR. The values must be either 'and' or 'or' $6 POINTER - Pointer to a Text Array to set the query field names. This is an array of field names that are to be used for the query $7 POINTER - Pointer to a Text Array to set the query operators. This is an array of operators that are to be used for the query $8 POINTER - Pointer to a Text Array to set the query conditions. This is an array of conditions (value to search for) that are to be used f or the query $9 POINTER - Pointer to a Boolean Array to set the condition is method flag. This is a Boolean array that indicates if the condition is to be treated as text or is the name of a method that is to be executed. If it is a method, the method must return a text value. Example C_TEXT($queryName_t;$tableName_t;$sortFieldName_t;$sortOrder_t) C_BOOLEAN($added_b) C_LONGINT($size_l) $queryname_t:="atestquery" 10 Addendum

11 New in Version 1.1 $tablename_t:="album" ` Table name(->[album]) $sortfieldname_t:="album_name" ` Field name(->[album]album_name) $sortorder_t:="asc" $size_l:=3 ARRAY TEXT($links_at;$size_l) ARRAY TEXT($fields_at;$size_l) ARRAY TEXT($operators_at;$size_l) ARRAY TEXT($conditions_at;$size_l) ARRAY BOOLEAN($flags_ab;$size_l) $links_at{1}:="or" $fields_at{1}:="album_name" $operators_at{1}:="starts With" $conditions_at{1}:="a" $flags_ab{1}:=false $links_at{2}:="or" $fields_at{2}:="album_name" $operators_at{2}:="starts With" $conditions_at{2}:="b" $flags_ab{2}:=false $links_at{3}:="or" $fields_at{3}:="album_name" $operators_at{3}:="starts With" $conditions_at{3}:="c" $flags_ab{3}:=false $added_b:=dax_dev_querycreate($queryname_t;$tablename_t; $sortfieldname_t;$sortorder_t;->$links_at;->$fields_at; ->$operators_at;->$conditions_at;->$flags_ab) DAX_DevHook _QueryFilter DAX_DevHook_QueryFilter is used by the developer to change the selection when it is about to be sent to the browser. This method is always called whenever 4D Ajax Framework is about to display a selection. A pointer to a longint array of table numbers and a pointer to a text array of set names are passed. The developer can then remove records that are not valid. For instance, if you have a 'Deleted' flag field, you could remove all of the records that are flagged as deleted. DAX_DevHook_QueryFilter receives two pointer parameters: Passed Parameters $1 POINTER - Pointer to a longint array of Table Numbers $2 POINTER - Pointer to a Text array of Set Names Addendum 11

12 By default $1 is assigned to the local variable $settableids_p and $2 is assigned to the local variable $setnames_p. For every table in the $settableids_p array there is a corresponding Set in the $setnames_p array. If you need to modify the selection you should: 1 Use Set ($setnames_p{$index}->) 2 Modify the selection 3 Update the set by clearing and recreating it (or using Union, Intersection, etc.) Note: The passed sets must still exist after this call. If you use CLEAR SET, be sure to use CREATE SET with an identical set name. Example For ($i;1;size of array($settableids_p->)) Case of : ($settableids_p->{$i}=table(->[my_table])) USE SET($setTableIDs_p->{$i}) CLEAR SET($setNames_p->{$i}) QUERY SELECTION([My_Table];[My_Table]My_Field="My_Value") CREATE SET([My_Table];$setNames_p->{$i}) End case End for DAX_DevHook _ListContents DAX_DevHook_ListContents is provided for the Developer to override a list before it is sent to the browser. Every time the 4D Ajax Framework is about to send a list to the browser the developer is given the opportunity to modify the list. This allows you to remove items from the list or create the list completely in code. The list itself is assigned to a field using the structure editor and the field properties inspector. Simply assign a list defined in the Lists editor to a field using the Choices & Help tab. Note that you can create an empty list in the List editor and assign it to the field and then create the list in code using this hook. DAX_DevHook_ListContents receives two parameters. Passed Parameters $1 TEXT - Name of the list that has been requested $2 POINTER - Pointer to a Text array containing the list items 12 Addendum

13 New in Version 1.1 By default $1 is assigned to the local variable $list_t and $2 is assigned to the local variable $listitems_p. This method receives the name of the list and the contents that will be returned to the browser. For every list you wish to modify, create a case to catch it and then add the code that is necessary for your situation. This might consist of removing items from the list or creating the complete list from scratch. Example Case of ` EXAMPLE - remove a value from the list :($list_t="my_list") C_LONGINT($find_l) $find_l:=find in array($listitems_p->;"remove_value") If ($find_l#-1) DELETE ELEMENT($listItems_p->;$find_l;1) End if ` EXAMPLE - Completely create the list :($list_t="another_list") READ ONLY([My_Table]) ALL RECORDS([My_Table]) DISTINCT VALUES([My_Table]List_Items;$listItems_p->) UNLOAD RECORD([My_Table]) End case Data Filler This command populates a designated area on the web page with the contents from a designated record. Data Filler is integrated with the other 4DAF objects. Data Filler API Summary placerecorddata populates a specific HTML area with record data. For 4DAF objects, only the first two parameters are used. For generic calls, specify the html area, table, and record id. placerecorddata (html area to populate, 4DAF record, table, record id); Data Filler Example This sample code will populate the data filler area with a selected row in the data grid. Addendum 13

14 HTML code <div id="recorddetail"> Field1: <input class="4daf_[table]field1" /> Image Field: <img class="4daf_[tablename]imagefield" /> </div> JavaScript code // on data window row click, populate 'recorddetail' area with clicked record mydatawindow.grid.grid.onrowselect.onrowselected = function (rowref) { placerecorddata($('recorddetail'), rowref); } For full customization and API documentation, please visit: Modified in Version 1.1 DAX_Dev_SetCall BackExeStatus A method named DAX_Dev_SetCallBackExeStatus has been added to version 1.1 to further control callbacks. This method sets a flag to let the browser know if the Call Back method's execution is successful. It must be executed for every callback execution. In each of your Call Back methods, add a call to DAX_Dev_SetCallBackExeStatus with a LONGINT parameter of either 1 for success or 0 for failure. Example DAX_Dev_SetCallBackExeStatus(1) 14 Addendum

15 Modified in Version 1.1 Boolean Formatting: Checkbox A new format option for Boolean is 'checkbox', which will display the Boolean value as a checkbox in data views. This format can be set in field list in Admin window. Note that a Boolean will always be displayed as checkbox in the editor, regardless of the format used. Data Grid: Save Column Width Users set as administrators now have the ability to save the current column width in a data grid that will be used every time that data grid is displayed. These settings are saved on the back-end. To save column widths, click on the 'save column width' button on data window title bar. Performance Optimization Application performance has been improved tremendously in version 1.1. This is due to both a refactoring of the grid component, and to the addition of compression to the CSS and JavaScript files sent to the browser. A more thorough discussion on the compression technique can be found in the Daxipedia here: In addition, since we no longer need pre-caching to maintain speed, applications developed using this feature can remove it without any noticeable loss of performance. Addendum 15

Creating dependent menus with Moodle Database activity. William Lu

Creating dependent menus with Moodle Database activity. William Lu Creating dependent menus with Moodle Database activity William Lu Hello, everyone My name is William. In this session, I will show you how to create a dependent menu with Moodle Database activity. 2 Sometimes,

More information

Virto SharePoint Forms Designer for Office 365. Installation and User Guide

Virto SharePoint Forms Designer for Office 365. Installation and User Guide Virto SharePoint Forms Designer for Office 365 Installation and User Guide 2 Table of Contents KEY FEATURES... 3 SYSTEM REQUIREMENTS... 3 INSTALLING VIRTO SHAREPOINT FORMS FOR OFFICE 365...3 LICENSE ACTIVATION...4

More information

QPack Release Notes. SP Reviewing the changes between SP to November 2012

QPack Release Notes. SP Reviewing the changes between SP to November 2012 QPack Release Notes SP 6.2.0.35 Reviewing the changes between SP 6.2.0.29 to 6.2.0.35 November 2012 1 QPack Web: 2.0.0.164 Client Setup: 1.3.1.2 Upgrade Setup: 4.0.0.8 QPack Alert Service: 1.0.0.30 Word

More information

User Guide. Web Intelligence Rich Client. Business Objects 4.1

User Guide. Web Intelligence Rich Client. Business Objects 4.1 User Guide Web Intelligence Rich Client Business Objects 4.1 2 P a g e Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence 4.1... 5 Log into EDDIE...

More information

Virto SharePoint Forms Designer for Office 365. Installation and User Guide

Virto SharePoint Forms Designer for Office 365. Installation and User Guide Virto SharePoint Forms Designer for Office 365 Installation and User Guide 2 Table of Contents KEY FEATURES... 3 SYSTEM REQUIREMENTS... 3 INSTALLING VIRTO SHAREPOINT FORMS FOR OFFICE 365... 3 LICENSE ACTIVATION...

More information

Getting Started with CSS Sculptor 3

Getting Started with CSS Sculptor 3 Getting Started with CSS Sculptor 3 With CSS Sculptor, you can quickly create a cross-browser compatible layout with custom widths, margins, padding, background images and more. Additionally, you can use

More information

Numbers Basics Website:

Numbers Basics Website: Website: http://etc.usf.edu/te/ Numbers is Apple's new spreadsheet application. It is installed as part of the iwork suite, which also includes the word processing program Pages and the presentation program

More information

Login: Quick Guide for Qualtrics May 2018 Training:

Login:   Quick Guide for Qualtrics May 2018 Training: Qualtrics Basics Creating a New Qualtrics Account Note: Anyone with a Purdue career account can create a Qualtrics account. 1. In a Web browser, navigate to purdue.qualtrics.com. 2. Enter your Purdue Career

More information

UTAS CMS. Easy Edit Suite Workshop V3 UNIVERSITY OF TASMANIA. Web Services Service Delivery & Support

UTAS CMS. Easy Edit Suite Workshop V3 UNIVERSITY OF TASMANIA. Web Services Service Delivery & Support Web Services Service Delivery & Support UNIVERSITY OF TASMANIA UTAS CMS Easy Edit Suite Workshop V3 Web Service, Service Delivery & Support UWCMS Easy Edit Suite Workshop: v3 Contents What is Easy Edit

More information

Advanced Dreamweaver CS6

Advanced Dreamweaver CS6 Advanced Dreamweaver CS6 Overview This advanced Dreamweaver CS6 training class teaches you to become more efficient with Dreamweaver by taking advantage of Dreamweaver's more advanced features. After this

More information

Fish Eye Menu DMXzone.com Fish Eye Menu Manual

Fish Eye Menu DMXzone.com Fish Eye Menu Manual Fish Eye Menu Manual Page 1 of 33 Index Fish Eye Menu Manual... 1 Index... 2 About Fish Eye Menu... 3 Features in Detail... 4 Integrated in Dreamweaver... 6 Before you begin... 7 Installing the extension...

More information

Adobe Dreamweaver CS6 Digital Classroom

Adobe Dreamweaver CS6 Digital Classroom Adobe Dreamweaver CS6 Digital Classroom Osborn, J ISBN-13: 9781118124093 Table of Contents Starting Up About Dreamweaver Digital Classroom 1 Prerequisites 1 System requirements 1 Starting Adobe Dreamweaver

More information

Tabular Building Template Manager (BTM)

Tabular Building Template Manager (BTM) Tabular Building Template Manager (BTM) User Guide IES Vi rtual Environment Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. No part of the manual is to be copied or reproduced

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

User Manual. Administrator s guide for mass managing VirtueMart products. using. VM Mass Update 1.0

User Manual. Administrator s guide for mass managing VirtueMart products. using. VM Mass Update 1.0 User Manual Administrator s guide for mass managing VirtueMart products using VM Mass Update 1.0 The ultimate product management solution for VirtueMart! Contents Product Overview... 3 Feature List...

More information

How to lay out a web page with CSS

How to lay out a web page with CSS How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS3 to create a simple page layout. However, a more powerful technique is to use Cascading Style Sheets (CSS).

More information

ACHieve Access 4.3 USER GUIDE

ACHieve Access 4.3 USER GUIDE ACHieve Access 4.3 USER GUIDE TABLE OF CONTENTS SECTION 1: OVERVIEW...3 Chapter 1: Introduction...3 How to Use This Manual...3 Overview of ACHieve Access Administrative Functions...3 System Access and

More information

Reporting and Printing Guide

Reporting and Printing Guide Enterprise Studio Reporting and Printing Guide 2017-03-17 Applies to: Enterprise Studio 2.3 and Team Server 2.3 Table of contents 1 About reporting and printing models 4 2 Reporting models to HTML and

More information

SPECIFICATIONS Insert Client Name

SPECIFICATIONS Insert Client Name ESSENTIAL LMS BRANDING SPECIFICATIONS Insert Client Name Creation Date: June 23, 2011 Last Updated: July 11, 2017 Version: 16.5 Page 1 Contents Branding Elements... 3 Theme Management... 3 Header Images...

More information

Learn about the Display options Complete Review Questions and Activities Complete Training Survey

Learn about the Display options Complete Review Questions and Activities Complete Training Survey Intended Audience: Staff members who will be using the AdHoc reporting tools to query the Campus database. Description: To learn filter and report design capabilities available in Campus. Time: 3 hours

More information

REPORTING Copyright Framework Private Equity Investment Data Management Ltd

REPORTING Copyright Framework Private Equity Investment Data Management Ltd REPORTING Copyright Framework Private Equity Investment Data Management Ltd - 2016 Table of Contents Standard Reports... 3 Standard Report Pack... 4 General Data Protection and Framework... 7 Partner Bank

More information

ImageNow eforms. Getting Started Guide. ImageNow Version: 6.7. x

ImageNow eforms. Getting Started Guide. ImageNow Version: 6.7. x ImageNow eforms Getting Started Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: September 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

Intellicus Enterprise Reporting and BI Platform

Intellicus Enterprise Reporting and BI Platform Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Designing Adhoc Reports i Copyright 2012 Intellicus Technologies This

More information

IHS Enerdeq Desktop International Training Guide

IHS Enerdeq Desktop International Training Guide IHS > Decision Support Tool IHS Enerdeq Desktop International Training Guide May 2009 Version 1.5.2 2009 IHS, All Rights Reserved. All trademarks belong to IHS or its affiliated and subsidiary companies,

More information

Getting Started With the Cisco PAM Desktop Software

Getting Started With the Cisco PAM Desktop Software CHAPTER 3 Getting Started With the Cisco PAM Desktop Software This chapter describes how to install the Cisco PAM desktop client software, log on to Cisco PAM, and begin configuring access control features

More information

Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved.

Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. Tabular Room Data User Guide IES Virtual Environment Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. No part of the manual is to be copied or reproduced in any form without

More information

Microsoft Access 2010

Microsoft Access 2010 2013\2014 Microsoft Access 2010 Tamer Farkouh M i c r o s o f t A c c e s s 2 0 1 0 P a g e 1 Definitions Microsoft Access 2010 What is a database? A database is defined as an organized collection of data

More information

Creating & Modifying Tables in Word 2003

Creating & Modifying Tables in Word 2003 Creating & Modifying Tables in Word 2003 This bookl LaTonya Motley Trainer / Instructional Technology Specialist Staff Development 660-6452 Table of Contents Overview... 1 Inserting Tables... 1 Using Pre-Set

More information

Modern Requirements4TFS 2018 Release Notes

Modern Requirements4TFS 2018 Release Notes Modern Requirements4TFS 2018 Release Notes Modern Requirements 3/7/2018 Table of Contents 1. INTRODUCTION... 3 2. SYSTEM REQUIREMENTS... 3 3. APPLICATION SETUP... 3 GENERAL... 4 1. FEATURES... 4 2. ENHANCEMENT...

More information

Web Page Basics. FRSD Elementary Technology Workshop. February Presented by Lisa Stewart, Tammy Gianvito, and Diane Kaufmann

Web Page Basics. FRSD Elementary Technology Workshop. February Presented by Lisa Stewart, Tammy Gianvito, and Diane Kaufmann Web Page Basics FRSD Elementary Technology Workshop February 2014 Presented by Lisa Stewart, Tammy Gianvito, and Diane Kaufmann Please save this booklet for future reference. 2 P a g e Notes and Questions

More information

Web logs (blogs. blogs) Feed support BLOGS) WEB LOGS (BLOGS

Web logs (blogs. blogs) Feed support BLOGS) WEB LOGS (BLOGS Web logs (blogs blogs) You can create your own personal Web logs (blogs) using IBM Lotus Notes. Using the blog template (dominoblog.ntf), you create a blog application, such as myblog.nsf, which you can

More information

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions.

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions. USER GUIDE This guide is intended for users of all levels of expertise. The guide describes in detail Sitefinity user interface - from logging to completing a project. Use it to learn how to create pages

More information

How to set up a local root folder and site structure

How to set up a local root folder and site structure Activity 2.1 guide How to set up a local root folder and site structure The first thing to do when creating a new website with Adobe Dreamweaver CS3 is to define a site and identify a root folder where

More information

Reporting Center. Primary (Stand-Alone) Interface

Reporting Center. Primary (Stand-Alone) Interface Reporting Center The Reporting Center is where you will go to run or create reports on projects. It can be accessed in any of the follow ways, each with a slightly different user interface and functionality.

More information

Asset Arena InvestOne

Asset Arena InvestOne Asset Arena InvestOne 1 21 AD HOC REPORTING 21.1 OVERVIEW Ad Hoc reporting supports a range of functionality from quick querying of data to more advanced features: publishing reports with complex features

More information

S-Drive Lightning User Guide v2.1

S-Drive Lightning User Guide v2.1 S-Drive Lightning User Guide v2.1 Important Note This user guide contains detailed information about S-Drive for Salesforce Lightning usage. Refer to the S-Drive User Guide for more information about S-Drive

More information

Release Notes for ExtraView Date: Sep 5, 2017

Release Notes for ExtraView Date: Sep 5, 2017 Release Notes for ExtraView 11.2 Date: Sep 5, 2017 Module: Add & Edit 349107 Autosizing of HTML Area fields When entering multiple lines of text into an HTML Area field, the height of the field will grow

More information

Contents. Xweb User Manual

Contents. Xweb User Manual USER MANUAL Contents 1. Website/Pages/Sections/Items/Elements...2 2. Click & Edit, Mix & Match (Drag & Drop)...3 3. Adding a Section...4 4. Managing Sections...5 5. Adding a Page...8 6. Managing Pages

More information

Secure Guard Central Management System

Secure Guard Central Management System Speco Technologies, Inc. Secure Guard Central Management System Usage Information Contents 1 Overview... 7 2 Installation... 7 2.1 System Requirements... 7 2.2 System Installation... 7 2.3 Command Line

More information

Kendo UI Builder by Progress : Using Kendo UI Designer

Kendo UI Builder by Progress : Using Kendo UI Designer Kendo UI Builder by Progress : Using Kendo UI Designer Notices 2016 Telerik AD. All rights reserved. November 2016 Last updated with new content: Version 1.1 3 Notices 4 Contents Table of Contents Chapter

More information

Getting Started with Eric Meyer's CSS Sculptor 1.0

Getting Started with Eric Meyer's CSS Sculptor 1.0 Getting Started with Eric Meyer's CSS Sculptor 1.0 Eric Meyer s CSS Sculptor is a flexible, powerful tool for generating highly customized Web standards based CSS layouts. With CSS Sculptor, you can quickly

More information

Getting Started with Penn State WikiSpaces

Getting Started with Penn State WikiSpaces Getting Started with Penn State WikiSpaces About Penn State WikiSpaces Penn State WikiSpaces is a platform intended to support Penn State-associated collaboration. Wikis are websites that allow for the

More information

User Guide. v7.5. September 4, For the most recent version of this document, visit kcura's Documentation Site.

User Guide. v7.5. September 4, For the most recent version of this document, visit kcura's Documentation Site. User Guide v7.5 September 4, 2013 For the most recent version of this document, visit kcura's Documentation Site. Table of Contents 1 User guide overview 4 2 Relativity objects 4 3 Workspace 6 3.1 Workspaces

More information

Fusion. CBR Fusion MLS Level 1 Core Functions. Class Handout

Fusion. CBR Fusion MLS Level 1 Core Functions. Class Handout Fusion 1 CBR Fusion MLS Level 1 Core Functions Class Handout GETTING STARTED IN FUSION Logging On and Off To log on to Fusion MLS: 1. Type your user name in the User ID box. 2. Type your password in the

More information

Report Overview An explanation of the report overview page and how it assists in creating and manipulating your report

Report Overview An explanation of the report overview page and how it assists in creating and manipulating your report Informer Reports Excerpted from Entrinsik Documentation Revision 2 March 30, 2010 Creating a Report The reporting engine is the core of your Informer Application, allowing you to execute reports based

More information

Jet Data Manager 2014 SR2 Product Enhancements

Jet Data Manager 2014 SR2 Product Enhancements Jet Data Manager 2014 SR2 Product Enhancements Table of Contents Overview of New Features... 3 New Features in Jet Data Manager 2014 SR2... 3 Improved Features in Jet Data Manager 2014 SR2... 5 New Features

More information

Filtering - Zimbra

Filtering  - Zimbra Filtering Email - Zimbra Email filtering allows you to definite rules to manage incoming email. For instance, you may apply a filter on incoming email to route particular emails into folders or delete

More information

C1 CMS User Guide Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone

C1 CMS User Guide Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone 2017-02-13 Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.orckestra.com Content 1 INTRODUCTION... 4 1.1 Page-based systems versus item-based systems 4 1.2 Browser support 5

More information

Read the Docs Template Documentation

Read the Docs Template Documentation Read the Docs Template Documentation Release 1.0 Read the Docs Jun 27, 2017 KNOWLEDGE BASE 1 Support 1 2 AdminExtra 3 2.1 Compatibility............................................... 3 2.2 Features..................................................

More information

Microsoft Windows SharePoint Services

Microsoft Windows SharePoint Services Microsoft Windows SharePoint Services SITE ADMIN USER TRAINING 1 Introduction What is Microsoft Windows SharePoint Services? Windows SharePoint Services (referred to generically as SharePoint) is a tool

More information

MadeSimple Media Gallery

MadeSimple Media Gallery madesimpleforme.com MadeSimple Media Gallery USER GUIDE MadeSimple Media Gallery (Photo/Video) is a rich software package designed to make managing your media and posting it online, convenient, and efficient.

More information

Professional Course in Web Designing & Development 5-6 Months

Professional Course in Web Designing & Development 5-6 Months Professional Course in Web Designing & Development 5-6 Months BASIC HTML Basic HTML Tags Hyperlink Images Form Table CSS 2 Basic use of css Formatting the page with CSS Understanding DIV Make a simple

More information

eschoolplus+ Cognos Query Studio Training Guide Version 2.4

eschoolplus+ Cognos Query Studio Training Guide Version 2.4 + Training Guide Version 2.4 May 2015 Arkansas Public School Computer Network This page was intentionally left blank Page 2 of 68 Table of Contents... 5 Accessing... 5 Working in Query Studio... 8 Query

More information

Dynamic Web Templates

Dynamic Web Templates Dynamic Web Templates This section describes how to create and implement a Dynamic Web Template to ensure consistent design throughout your site and to simplify the creation, updating, and management of

More information

Roxen Content Provider

Roxen Content Provider Roxen Content Provider Generation 3 Templates Purpose This workbook is designed to provide a training and reference tool for placing University of Alaska information on the World Wide Web (WWW) using the

More information

Administrative Training Mura CMS Version 5.6

Administrative Training Mura CMS Version 5.6 Administrative Training Mura CMS Version 5.6 Published: March 9, 2012 Table of Contents Mura CMS Overview! 6 Dashboard!... 6 Site Manager!... 6 Drafts!... 6 Components!... 6 Categories!... 6 Content Collections:

More information

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE SERVICE PACK 1 PART NO. E

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE SERVICE PACK 1 PART NO. E ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6.1 SERVICE PACK 1 PART NO. E17383-01 MARCH 2010 COPYRIGHT Copyright 1998, 2010, Oracle and/or its affiliates. All rights

More information

Word Tutorial 3. Creating a Multiple- Page Report COMPREHENSIVE

Word Tutorial 3. Creating a Multiple- Page Report COMPREHENSIVE Word Tutorial 3 Creating a Multiple- Page Report COMPREHENSIVE Objectives Format headings with Quick Styles Insert a manual page break Create and edit a table Sort rows in a table Modify a table s structure

More information

Dynamic Product Options extension for Magento2. User Guide

Dynamic Product Options extension for Magento2. User Guide Dynamic Product Options extension for Magento2 User Guide version 2.0 Website: http://www.itoris.com Page 1 Contents 1. Introduction... 4 2. Installation... 5 2.1. System Requirements... 5 2.2. Installation...

More information

PowerPoint 2016 Building a Presentation

PowerPoint 2016 Building a Presentation PowerPoint 2016 Building a Presentation What is PowerPoint? PowerPoint is presentation software that helps users quickly and efficiently create dynamic, professional-looking presentations through the use

More information

Survey Creation Workflow These are the high level steps that are followed to successfully create and deploy a new survey:

Survey Creation Workflow These are the high level steps that are followed to successfully create and deploy a new survey: Overview of Survey Administration The first thing you see when you open up your browser to the Ultimate Survey Software is the Login Page. You will find that you see three icons at the top of the page,

More information

CenterStone. Reports User Guide. Manhattan Software Inc. World Leading Real Estate, Asset & Facilities Management Software.

CenterStone. Reports User Guide. Manhattan Software Inc. World Leading Real Estate, Asset & Facilities Management Software. CenterStone Reports User Guide Version 1 Manhattan Software Inc. World Leading Real Estate, Asset & Facilities Management Software The information contained herein is the property of Manhattan Software,

More information

NetAdvantage for jquery SR Release Notes

NetAdvantage for jquery SR Release Notes NetAdvantage for jquery 2012.1 SR Release Notes Create the best Web experiences in browsers and devices with our user interface controls designed expressly for jquery, ASP.NET MVC, HTML 5 and CSS 3. You

More information

User Guide Ahmad Bilal [Type the company name] 1/1/2009

User Guide Ahmad Bilal [Type the company name] 1/1/2009 User Guide Ahmad Bilal [Type the company name] 1/1/2009 Contents 1 LOGGING IN... 1 1.1 REMEMBER ME... 1 1.2 FORGOT PASSWORD... 2 2 HOME PAGE... 3 2.1 CABINETS... 4 2.2 SEARCH HISTORY... 5 2.2.1 Recent

More information

Configuring Ad hoc Reporting. Version: 16.0

Configuring Ad hoc Reporting. Version: 16.0 Configuring Ad hoc Reporting Version: 16.0 Copyright 2018 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived

More information

PHPRad. PHPRad At a Glance. This tutorial will show you basic functionalities in PHPRad and

PHPRad. PHPRad At a Glance. This tutorial will show you basic functionalities in PHPRad and PHPRad PHPRad At a Glance. This tutorial will show you basic functionalities in PHPRad and Getting Started Creating New Project To create new Project. Just click on the button. Fill In Project properties

More information

Nexio G-Scribe Data Source Wizard

Nexio G-Scribe Data Source Wizard Nexio G-Scribe Data Source Wizard 6/17/2014 175-100330-00 Publication Information 2014 Imagine Communications. Proprietary and Confidential. Imagine Communications considers this document and its contents

More information

The following instructions cover how to edit an existing report in IBM Cognos Analytics.

The following instructions cover how to edit an existing report in IBM Cognos Analytics. IBM Cognos Analytics Edit a Report The following instructions cover how to edit an existing report in IBM Cognos Analytics. Navigate to Cognos Cognos Analytics supports all browsers with the exception

More information

ver Wfl Adobe lif Sams Teach Yourself Betsy Bruce Robyn Ness SAMS 800 East 96th Street, Indianapolis, Indiana, USA WlM John Ray ^lg^

ver Wfl Adobe lif Sams Teach Yourself Betsy Bruce Robyn Ness SAMS 800 East 96th Street, Indianapolis, Indiana, USA WlM John Ray ^lg^ Betsy Bruce John Ray Robyn Ness Sams Teach Yourself Adobe Wfl lif ver W ^msssi^ mm WlM ^lg^ SAMS 800 East 96th Street, Indianapolis, Indiana, 46240 USA Table of Contents Introduction What Is Dreamweaver

More information

Getting Started with Access

Getting Started with Access MS Access Chapter 2 Getting Started with Access Course Guide 2 Getting Started with Access The Ribbon The strip across the top of the program window that contains groups of commands is a component of the

More information

Introduction. User: IMS Password: imsuser. (case sensitive!) 2014, Innovative Maintenance Systems, all rights reserved

Introduction. User: IMS Password: imsuser. (case sensitive!) 2014, Innovative Maintenance Systems, all rights reserved Introduction With the security module, you can define users/passwords for the program and set individual permissions to main menu items, screen accessibility, and record operations (add, edit, delete)

More information

To configure the extension please go to System Configuration Order Attributes in the admin panel.

To configure the extension please go to System Configuration Order Attributes in the admin panel. For more details see the Order Attributes extension page. Order Attributes Order Attributes extension allows you to collect additional order related information that may be important for shopping experience

More information

S-Drive User Guide v1.27

S-Drive User Guide v1.27 S-Drive User Guide v1.27 Important Note This user guide contains detailed information about S-Drive usage. Refer to the S-Drive Installation Guide and S-Drive Advanced Configuration Guide for more information

More information

Doc. Version 1.0 Updated:

Doc. Version 1.0 Updated: OneStop Reporting Report Designer/Player 3.5 User Guide Doc. Version 1.0 Updated: 2012-01-02 Table of Contents Introduction... 3 Who should read this manual... 3 What s included in this manual... 3 Symbols

More information

edev Technologies integreat4tfs 2015 Update 2 Release Notes

edev Technologies integreat4tfs 2015 Update 2 Release Notes edev Technologies integreat4tfs 2015 Update 2 Release Notes edev Technologies 11/18/2015 Table of Contents 1. INTRODUCTION... 2 2. SYSTEM REQUIREMENTS... 3 3. APPLICATION SETUP... 3 DASHBOARD... 4 1. FEATURES...

More information

The main differences with other open source reporting solutions such as JasperReports or mondrian are:

The main differences with other open source reporting solutions such as JasperReports or mondrian are: WYSIWYG Reporting Including Introduction: Content at a glance. Create A New Report: Steps to start the creation of a new report. Manage Data Blocks: Add, edit or remove data blocks in a report. General

More information

KWizCom Corporation. Data View Plus App. User Guide

KWizCom Corporation. Data View Plus App. User Guide KWizCom Corporation Data View Plus App User Guide Copyright 2005-2018 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2 Canada

More information

2 The Stata user interface

2 The Stata user interface 2 The Stata user interface The windows This chapter introduces the core of Stata s interface: its main windows, its toolbar, its menus, and its dialogs. The five main windows are the Review, Results, Command,

More information

Introduction Accessing MICS Compiler Learning MICS Compiler CHAPTER 1: Searching for Data Surveys Indicators...

Introduction Accessing MICS Compiler Learning MICS Compiler CHAPTER 1: Searching for Data Surveys Indicators... Acknowledgement MICS Compiler is a web application that has been developed by UNICEF to provide access to Multiple Indicator Cluster Survey data. The system is built on DevInfo technology. 3 Contents Introduction...

More information

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1

Using the VMware vcenter Orchestrator Client. vrealize Orchestrator 5.5.1 Using the VMware vcenter Orchestrator Client vrealize Orchestrator 5.5.1 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

Excel 2013 Getting Started

Excel 2013 Getting Started Excel 2013 Getting Started Introduction Excel 2013 is a spreadsheet program that allows you to store, organize, and analyze information. While you may think that Excel is only used by certain people to

More information

WEST TEXAS A&M UNIVERSITY

WEST TEXAS A&M UNIVERSITY WEST TEXAS A&M UNIVERSITY Instructional Technology Services WTClass Training Manual Grade Center July 2014 WTClass Blackboard 9.1 For technical support call (806) 651-4357 Support website: http://angel.wtamu.edu/online

More information

Tabs, Tables & Columns

Tabs, Tables & Columns Tabs, Tables & Columns What we will cover Creating tables Formatting tables Sorting information in tables Using columns Using tabs Tables You can insert a table several: Insert Table button This will open

More information

OTOsuite REPORTS. User Guide. Doc. No EN/03 Part No EN

OTOsuite REPORTS. User Guide. Doc. No EN/03 Part No EN OTOsuite REPORTS User Guide Doc. No. 7-50-1740-EN/03 Part No. 7-50-17400-EN Copyright notice 2016, 2017 GN Otometrics A/S. All rights reserved. Otometrics, the Otometrics Icon, AURICAL, MADSEN, ICS and

More information

NetAdvantage for ASP.NET Release Notes

NetAdvantage for ASP.NET Release Notes NetAdvantage for ASP.NET 2011.1 Release Notes Accelerate your application development with ASP.NET AJAX controls built on the Aikido Framework to be the fastest, lightest and most complete toolset for

More information

Working with Actions Stratum.Viewer 6

Working with Actions Stratum.Viewer 6 Working with Actions Stratum.Viewer 6 Getting Started Access to Actions Accessing Actions Functionality Introduction to Actions Quick Start Set up an Action Tasks Add an Email Action Add a File Share Action

More information

Microsoft Excel 2010 Part 2: Intermediate Excel

Microsoft Excel 2010 Part 2: Intermediate Excel CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 2: Intermediate Excel Spring 2014, Version 1.0 Table of Contents Introduction...3 Working with Rows and

More information

Flash Image Enhancer Manual DMXzone.com Flash Image Enhancer Manual

Flash Image Enhancer Manual DMXzone.com Flash Image Enhancer Manual Flash Image Enhancer Manual Copyright 2009 All Rights Reserved Page 1 of 62 Index Flash Image Enhancer Manual... 1 Index... 2 About Flash Image Enhancer... 3 Features in Detail... 3 Before you begin...

More information

From the Insert Tab (1), highlight Picture (2) drop down and finally choose From Computer to insert a new image

From the Insert Tab (1), highlight Picture (2) drop down and finally choose From Computer to insert a new image Inserting Image To make your page more striking visually you can add images. There are three ways of loading images, one from your computer as you edit the page or you can preload them in an image library

More information

JSN PageBuilder 3 Configuration Manual Introduction

JSN PageBuilder 3 Configuration Manual Introduction JSN PageBuilder 3 Configuration Manual Introduction About JSN PageBuilder 3 JSN PageBuilder 3 is the latest innovation of Joomla! PageBuilder with great improvements in the interface, features, and user

More information

Basic Query for Human Resources

Basic Query for Human Resources Basic Query for Human Resources Open browser Log into PeopleSoft Human Resources: Go to: https://cubshr9.clemson.edu/psp/hpprd/?cmd=login Enter your Novell ID and Password Click Sign In Navigation into

More information

Contents. Common Site Operations. Home actions. Using SharePoint

Contents. Common Site Operations. Home actions. Using SharePoint This is a companion document to About Share-Point. That document describes the features of a SharePoint website in as much detail as possible with an emphasis on the relationships between features. This

More information

Website Creating Content

Website Creating Content CREATING WEBSITE CONTENT As an administrator, you will need to know how to create content pages within your website. This document will help you learn how to: Create Custom Pages Edit Content Areas Creating

More information

Modern Requirements4TFS 2018 Update 1 Release Notes

Modern Requirements4TFS 2018 Update 1 Release Notes Modern Requirements4TFS 2018 Update 1 Release Notes Modern Requirements 6/22/2018 Table of Contents 1. INTRODUCTION... 3 2. SYSTEM REQUIREMENTS... 3 3. APPLICATION SETUP... 3 GENERAL... 4 1. FEATURES...

More information

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager Vector Issue Tracker and License Manager - Administrator s Guide Configuring and Maintaining Vector Issue Tracker and License Manager Copyright Vector Networks Limited, MetaQuest Software Inc. and NetSupport

More information

Main Window. Overview. Do this Click the New Report link. Create a New Report.

Main Window. Overview. Do this Click the New Report link. Create a New Report. Overview Main Window Create a new report from a table or existing view Create a new report by defining a custom join Work with your custom reports Open a recently accessed custom report Work with reports

More information

Cobra Navigation Release 2011

Cobra Navigation Release 2011 Cobra Navigation Release 2011 Cobra Navigation - Rev.0.2 Date: November 27 2012 jmaas@flowserve.com Page 1 of 34 Contents Contents 1 Revision History... 5 2 Introduction.... 6 3 Cobra Login... 7 3.1 Initial

More information

Large images added to a webpage can have a detrimental effect to your site.

Large images added to a webpage can have a detrimental effect to your site. 1. Photo Resizing Large images added to a webpage can have a detrimental effect to your site. Large images are slow to load and can frustrate users of your site who may leave your site rather than wait

More information

Logi Ad Hoc Reporting System Administration Guide

Logi Ad Hoc Reporting System Administration Guide Logi Ad Hoc Reporting System Administration Guide Version 10.3 Last Updated: August 2012 Page 2 Table of Contents INTRODUCTION... 4 Target Audience... 4 Application Architecture... 5 Document Overview...

More information

Clip Art and Graphics. Inserting Clip Art. Inserting Other Graphics. Creating Your Own Shapes. Formatting the Shape

Clip Art and Graphics. Inserting Clip Art. Inserting Other Graphics. Creating Your Own Shapes. Formatting the Shape 1 of 1 Clip Art and Graphics Inserting Clip Art Click where you want the picture to go (you can change its position later.) From the Insert tab, find the Illustrations Area and click on the Clip Art button

More information