Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Scout/Tutorial/minicrm"

Line 4: Line 4:
 
With this tutorial, you'll create a little example application with [[Scout/SDK|Scout SDK]], where you can enter and edit companies.
 
With this tutorial, you'll create a little example application with [[Scout/SDK|Scout SDK]], where you can enter and edit companies.
 
== Requirements ==
 
== Requirements ==
This tutorial assumes that you have installed Scout SDK as described in [[Scout_Install|Download and Install Scout SDK ]]
+
This tutorial assumes that you have installed Scout SDK as described in [[Scout/HowTo/Install Scout SDK|Download and Install Scout SDK ]]
 
== Create New Scout Project ==
 
== Create New Scout Project ==
 
Creating new scout projects is described [[Scout/Tutorial/minicrm/new_Eclipse_Scout_Project|here]]. That page also shows how to launch the server and the client.
 
Creating new scout projects is described [[Scout/Tutorial/minicrm/new_Eclipse_Scout_Project|here]]. That page also shows how to launch the server and the client.

Revision as of 08:09, 19 May 2011

The Scout documentation has been moved to https://eclipsescout.github.io/. Mini CRM Tutorial

With this tutorial, you'll create a little example application with Scout SDK, where you can enter and edit companies.

Requirements

This tutorial assumes that you have installed Scout SDK as described in Download and Install Scout SDK

Create New Scout Project

Creating new scout projects is described here. That page also shows how to launch the server and the client.

Get example Database

Follow the instructions on this page to get our small Apache Derby example database.

Set up SQL Service

Now we need to tell the application how to contact the database. How this works is described here.

Write the first Page

A standard Eclipse Scout application consists of pages in a tree structure. A page typically shows data in some sort of table. If you write an application, you need to start with a page. Learn more

You should have a tiny Eclipse Scout application running at the end of this step!

You will end up with the following tree structure for your application:

Standard Outline
 │
 └─Company Table Page

Very simple indeed!

Add a search form

We created a page with a table listing all the companies in the database. Add a search form that allows users to limit the number of rows returned. Learn more

Add a form to edit the data

Note.png
Under construction
This part is under construction

Link

Write the second page

Note.png
Under construction
This part is under construction

Link

Reorganize the tree and add a webservice

Note.png
Under construction
This part is under construction

Link

Code Types

Note.png
Under construction
This part is under construction

Link

Back to the top