Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Eclipse Scout » OutlinePage with Form only?(Outline Page that has a form in the view part)
OutlinePage with Form only? [message #1593545] Fri, 30 January 2015 18:26 Go to next message
Justin B is currently offline Justin BFriend
Messages: 19
Registered: January 2015
Location: New Jersey, USA
Junior Member
Perhaps I have misunderstood the OutlinePage but should it not be possible to have a outlinepage that displays only a form in the view part and not underlying table? This would be useful to have a page that contains a some field such as a browser field to interact with the web directly from inside a desktop application. Perhaps this is already possible but I see no documentation about this anywhere.

Any help would be appreciated.


[Updated on: Fri, 30 January 2015 19:04]

Report message to a moderator

Re: OutlinePage with Form only? [message #1593599 is a reply to message #1593545] Fri, 30 January 2015 19:18 Go to previous message
Justin B is currently offline Justin BFriend
Messages: 19
Registered: January 2015
Location: New Jersey, USA
Junior Member
For anyone having the same problem I discovered a solution that I tried but didn't work the first time but it now seems to work.

An example is a Dashboard Page.
In the DashboardOutline class I create a child page:
@Override
  protected void execCreateChildPages(List<IPage> pageList) throws ProcessingException {
    DashboardPage dashBoard = new DashboardPage();
    pageList.add(dashBoard);
  }


In the DashboardPage create:
  @Override
  protected void execPageActivated() throws ProcessingException {
    DashboardForm form = new DashboardForm();
    setDetailForm(form);
    form.activate();
  }


Hope this can help someone.
Previous Topic:No way to hide search Form in SWING??
Next Topic:Where it is ( getBackendSubject() );
Goto Forum:
  


Current Time: Sat Apr 27 04:44:39 GMT 2024

Powered by FUDForum. Page generated in 0.03142 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top