Questions tagged [eclipse-scout]

Eclipse Scout is a framework to create business applications.

Eclipse Scout is a framework to create business applications on top of the Eclipse stack.

It is an open-source project (EPL licence) hosted by the Eclipse Foundation.

146 questions
1
vote
1 answer

Eclipse Scout client unit tests with ScoutClientTestRunner

I am trying to create unit test with scout context and I can't find proper tutorial or example for it. When I create test with ScoutClientTestRunner, I get error java.lang.Exception: Client session class is not set. Either set the default client…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
2 answers

Eclipse Scout client unit tests

I am trying to create some unit test for scout client elements. I have template for AbstractGroupBox, let say AbstractMyBox. I see that I need to have ScoutClientTestRunner for this, so I create simple example…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
1 answer

Scout Eclipse TablePage Template

I want to create AbstractTemplatePageWithTable as template. My problem is that when you create template : MyPageTemplateTablePage | ---> MyTable Extends AbstractTable or in code public abstract class MyPageTemplateTablePage…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
2 answers

In Eclipse Scout Luna how to add a page in extension to outline in parent?

Since Scout supports modularity in projects we decided to modularize things. Problem is when we add an Outline to a project: how to add a page to that outline, but when page is present in child project. Function that adds pages to outline lives…
Neikius
  • 173
  • 2
  • 9
1
vote
1 answer

Total row in Scout Eclipse

I want to add total row in Table in scout eclipse. I know that I can add new row and add sum at the end but what I want is that row will float at the bottom of table. This mean that total would not be last row but always at the bottom. (even if…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
1 answer

Generic Form Data in Scout Eclips

I would like to know how to set generic form data on class. I have class like this : @FormData(value = AbstractMoreSmartFieldFormData.class, sdkCommand = FormData.SdkCommand.CREATE, defaultSubtypeSdkCommand =…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
1 answer

Extends Form Data in scout eclipse

I have some abstract form : @FormData(value = AbstractMyFormData.class, sdkCommand = FormData.SdkCommand.CREATE) public abstract class AbstractMyForm extends AbstractForm { ... @Order(10.0) @ClassId("MyForm.MyTable") public class…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
1 answer

Scout eclipse form template

I see in the tree representing my applications in the Scout Explorer view that I have two subfolders under the template node : Forms Form Fields I know how to add form fields and its pretty simple, but I don't know how to create a form template…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
1 answer

Position of BooleanField is odd on RAP target in Eclipse Scout

I have one problem. I make Boolean Field in Eclipse Scout and I positioned it : - Lable Width In Pixel = 1 - Fill Horizontal : NO - Grid Weight X = 1 - Width in Pixel = 160 On Swing it looks ok : (Field Margin) but on RAP it look odd like those…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
1 answer

Eclipse Scout call getDataByKey too many times

I have form with Table. This table has some smart fields. My problem is that when I fill data in table (by initialization) all smart fields call getDataByKey with id (what it right) but it is not called once what I would expect but 30 times. I dig a…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
1 answer

override a text entry from the framework in an Eclipse Scout application

I am using the eclipse-scout framework. How can I override a Text entry in my application to replace an entry provided by the framework?
user3819526
1
vote
1 answer

Eclipse Scout: form.doOk() does not call ModifyHandler#execStore()

I am trying to write integration tests for my Eclipse Scout application. My tests method looks like this: AForm form = new AForm(); form.setPersonId(3L); form.startNew(); form.doOk(); //assertions on the form. My problem is that the code in…
user3819526
1
vote
2 answers

Prerequistes knowledge of doing RCP projects

I have done .NET Win32 projects and from Java well I can adopt my knowledge to its classes and you know the language itself but as far as technologies based on Java ..for example I mean SWT?, JFace,Hibernate, etc... I have zero experience with…
Bohn
  • 26,091
  • 61
  • 167
  • 254
0
votes
1 answer

What are the differences between Spring Boot and Eclipse Scout? Is it not nearly the same?

Based on my research it is nearly the same. They are both frameworks to create java based microservices and web apps. Eclipse scout is more based in business applications? When does it make sense to use one or the other?
joules22
  • 1
  • 1
0
votes
0 answers

Eclipse Scout BuilderParts createConstraints() take string input for search query

I'm learning customer relationship management framework Eclipse Scout right now and would like to use text input from the UI for my search query. It goes something like this: public IContribution createConstraints(){ int ageInput = ....; return…
1 2
3
9 10