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
2 answers

Eclipse Scout Neon table cell mouseover

I would like to know how to achieve mouseover on a cell, if a column is too short for full text. So, if I have column with fix width, and text is too long, how to present whole text with mouseover in a cell.
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
1 answer

Scout Eclipse Neon set title of the field label in form data

I am wondering if you could set title of field in form data on server side. Use case for this is that you have one field, and depend on some server logic you would set title of the field. Is it posible to set it on server somehow, to not sending…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
2 answers

Scout Eclipse Neon different url for for different pages

I would like to know if there is a way in Scout to make different forms on different links. Right now all the forms open on same url links. For example if application runs on http://localhost:1808/ that after opening person form, this form open in…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
1 answer

Scout Bean Manager: registerClass(..) or registerBean(..)

In our project we have following modules scout.client, scout.server, scout.shared and backend. backend has no dependencies to scout.server and scout.shared, but scout.server has dependencies to backend. Inside the backend project we have all…
Jmini
  • 9,189
  • 2
  • 55
  • 77
1
vote
2 answers

Eclipse Scout Neon mock backend service

In our project I have modules scout.client, scout.server, scout.shared and backend. Backend has no dependencies to scout.server and scout.shared, but scout.server has dependencies to backend. Inside backend project I have all business logic and…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
1 answer

Eclipse Scout Dialog form X(close) button not clickable

I have one form wth type Dialog. Modality is set to auto. But the "X" button in the upper right corner cannot be clicked (not even rollover gets fired). In Chrome I could change the z-index of the "closable" class and then it start working. Is…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
1 answer

Scout eclipse execStore not markSaved

I Would like to know how to set inside execStore function that "dirty" flag is still on. I see that in scout function for saving markSaved() is called after execStore(). But what if I have some logic in execStore(), that can prevent save. In this…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
2 answers

Eclipse Scout Neon : service registry does not contain a service of type

I try to call scout service from Scout Form, so I create interface in shared folder @TunnelToServer public interface IPersonsFormService extends IService { void test(); } and in server I created implementation of this interface public class…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
1 answer

Authentication via login dialog in Scout (RAP)

I'd like to have an authentication based on scouts default security concept found in https://wiki.eclipse.org/Scout/Concepts/Security. What I've done: I added the BasicSecurityFilter to the servers plugin.xml:
1
vote
1 answer

How to set different log levels in Eclipse Scout framework?

I'm having some trouble configuring proper logging in Eclipse Scout framework. My claims aren't that high as I only want to be able to set different log levels for different parts of my program in a configuration/properties/XML file. The logging…
MannikJ
  • 301
  • 1
  • 15
1
vote
1 answer

Scout Eclipse user Timer

I would like to use Timer inside Scout classes to change UI of scout elements. For example : I have some label and I would like to change value after some time : Timer timer = new Timer(); timer.schedule(new TimerTask() { @Override public…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
1 answer

Eclipse Scount multiple projects

I am new eclipse scout. However I do have some experience in EclipseRCP. I have created an application in eclipse rcp, in which it has four modules which are four plugin projects. Also I am using hibernate in backend for database…
user414967
  • 5,225
  • 10
  • 40
  • 61
1
vote
1 answer

Eclipse Scout custom object in form data

I have some problem. I have some object : public class TestParameter { private Long par1; private Long par2; public Long getPar1() { return par1; } public void setPar1(final Long par1) { this.par1 = par1; } public Long…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
1 answer

Eclipse Scout Tool button not show image on RAP

I see this tutorial, and create abstract form tool button. But in RAP I can't configure the icon image. My tool button is like this : @Order(10.0) public class TestPageTool extends AbstractFormToolButton { @Override protected String…
Marko Zadravec
  • 8,298
  • 10
  • 55
  • 97
1
vote
1 answer

bean array eclipse scout sample

I am learning Eclipse Scout... I have connected to Sql server, fetching data using Object[][]...now, I want to fetch data using beans, beanarray holder... I dont know the process... I have created bean Users! I have populated bean using service,…
sysdba
  • 57
  • 5
1
2
3
9 10