Difference between revisions of "HowTo Guides"
From AgileApps Support Wiki
imported>Aeric |
imported>Aeric |
||
Line 71: | Line 71: | ||
===Customize Application Pages=== | ===Customize Application Pages=== | ||
:* | :* Future:Create a Simple JSP [[Page]] using Java | ||
:* | :* Future:Create an HTML [[Page]] using [[JavaScript Functions]] and the [[REST API]] | ||
::* | ::* Future:Make a JSP Page into a [[Web Tab]] | ||
::* | ::* Future:Make a JSP Page into a [[Widget]] | ||
::* | ::* Future:Use a JSP Page to Create a Custom [[Action]] Button <!--email--> | ||
:* [[HowTo:Use a SQL Query to List Records in a Custom Page|Use a SQL Query to List Records in a Custom Page]] | :* [[HowTo:Use a SQL Query to List Records in a Custom Page|Use a SQL Query to List Records in a Custom Page]] | ||
: | :Future:Use SQL Queries and Java Sets to Get the Inverse of a Complex Query | ||
:: Notes: | :: Notes: | ||
::* E.g. All orders last month that do ''not'' include product X. (No related OrderItems point to that product.) | ::* E.g. All orders last month that do ''not'' include product X. (No related OrderItems point to that product.) |
Revision as of 23:11, 18 January 2012
Bookmark this page: https://agileappscloud.info/aawiki-src/HowTo
For Users
These guides tell you how to get the most out of the platform. You should be familiar with Navigating the User Interface.
Perform Basic Operations
Perform Specialized Operations
Customize Your Interface
Manage Your Data
- HowTo:Import Data
- HowTo:Remove Recently Imported Records
- HowTo:Send an email when a record is created or updated, using a Data Policy
For Application Designers
These guides tell you how to create and customize applications. You should be familiar with one or more of HTML coding, CSS formatting, or JavaScript, and be adept at Navigating the User Interface.
Customize the Application Interface
- Create a Custom Sidebar Using Graphic Images
- HowTo:Use a Custom Web Page to make a Personalized Widget
- Display the Widget in the Home Page
- Display the Widget in the Sidebar
Build and Customize Applications
- HowTo:Use the Application Wizard to Build a Sample Order Processing System
- Note: DONE FOR YOU: List view of records, forms to add and update data, basic reports
- Create an Object
- HowTo:Calculate values using data in Related Records (Subforms)
- HowTo:Automate a standard business process by creating a Workflow
- HowTo:Automatically take action when Object data changes (event-Based Data Policy)
- HowTo:Automatically take action on specified dates (calendar-Based Data Policy)
Build Custom Web Pages
For Platform Developers
These guides tell you how to program the platform APIs to take advantage of advanced platform features. You should be familiar with one or more of Java, JavaScript, AJAX, SQL, or REST.
Set up Your Environment
- HowTo:Develop Safely Using Sandboxes (and use them for backups)
- HowTo:Deploy Your Work Using Packages (and use them for backups)
- HowTo:Do Unit Testing in the Platform
- HowTo:Develop in Eclipse
- HowTo:Develop in Teams Using a Version Control System
- HowTo:Debug using Eclipse
Customize Application Pages
- Future:Create a Simple JSP Page using Java
- Future:Create an HTML Page using JavaScript Functions and the REST API
- Future:Use SQL Queries and Java Sets to Get the Inverse of a Complex Query
- Notes:
- E.g. All orders last month that do not include product X. (No related OrderItems point to that product.)
- Easier to query for orders that do, set-subtract from all orders using HashSet(HashMap) constructors and the set.removeAll(set) method.
- Similarly: Use Set Intersection to find all orders that include product X and product Y, using the set.retainAll(set) method.
- Notes:
Tackle Advanced Projects
- Handle Incoming Emails Programmatically
- Create a Data Handler to Add Data to a Package
- HowTo:Write Programs using the REST APIs
- Write Java Code for Data Policies