Questions tagged [eclipse-rap]

The Eclipse Remote Application Platform lets you build rich, Ajax-enabled Web applications by using the Eclipse development model/ Use this tag for questions which are specific to RAP rather than general SWT questions.

The Remote Application Platform lets you build rich, Ajax-enabled Web applications by using the Eclipse development model, plug-ins with the well known Eclipse workbench extension points and a widget toolkit with SWT API. RAP provides an implementation of the SWT API called the RAP Widget Toolkit, which makes using the same code basis for Eclipse RCP and Eclipse RAP development possible.

See http://eclipse.org/rap/ for more information and on github https://github.com/eclipse-rap

Related tags

194 questions
2
votes
1 answer

JFace wizard root category

How to create a wizard that will be display on the same level and "New interface", "new class", "New java project" etc. I was using category id org.eclipse.pde.PDE but seems it doesn't work and all the time my wizard appears into "Others" folder.
yu.pitomets
  • 1,660
  • 2
  • 17
  • 44
2
votes
1 answer

Navigation in a simple Eclipse RAP web-application

I have a feeling that I'm about to ask something obvous/basic here, but I'm a novice when it comes the technologies and have not figured out the "correct" way of doing things so here it goes. Background I am currently developing a web-application as…
FableBlaze
  • 1,785
  • 3
  • 16
  • 21
2
votes
1 answer

Eclipse RAP multi-window/tab

I would like to have a multi-tab/windowed Eclipse RAP application. I am able to open a second window using UrlLauncher launcher = RWT.getClient().getService(UrlLauncher.class); launcher.openURL("/gasf?foo=other_perspective"); Where I use the foo…
Jarod
  • 35
  • 4
2
votes
2 answers

Tycho build with optional dependencies to SWT and RAP

I have an application with two versions: swt and rap. Therefore in my plugins I have optional dependencies on both of them and when there is missing one, the other is present and vice versa. Problem is, that in Tycho I can only require or ignore…
Belovoj
  • 818
  • 13
  • 22
2
votes
1 answer

How to change the padding of TableItems in Eclipse RAP

I have next situation, look at the picture, please. How can I change this padding value? I need reduce it.
Paul
  • 580
  • 1
  • 7
  • 22
2
votes
1 answer

How to add html code to the table column header in Eclipse RAP

I'm trying to add a div to the table column header, but this does not affected. TableColumn column = table.getColumn(columnIndex); column.setData(RWT.MARKUP_ENABLED,…
Paul
  • 580
  • 1
  • 7
  • 22
2
votes
1 answer

How to align image to center of table cell (SWT Table) RAP Platform

I found some solutions for this question, but they are for RCP Platform only. I'm using RAP Platform and I can't find a solution.
Paul
  • 580
  • 1
  • 7
  • 22
2
votes
2 answers

Eclipse RCP and RAP customizable table control

I am looking for a table control that is customizable and works both on RCP and RAP, single source. By customizable I mean this: a cell from this table can also be splitted again in rows and columns. Or should be possible for the cell renderer to…
Gheo
  • 98
  • 6
2
votes
1 answer

RWT TableViewer doesn't refresh cell colors sometimes

I have a TableViewer component in my RWT 2.2.0 application which represents a matrix of values over time (columns) and products (rows). The tableviewer is in virtual/lazy mode and the items are just in an ArrayList set via setInput and…
akarnokd
  • 69,132
  • 14
  • 157
  • 192
2
votes
1 answer

How to use spring-roo entities from Eclipse RCP/RAP project

I have created a domain model using spring-roo, which makes heavy use of Spring and AspectJ. My model is deploying nicely as a OSGi bundle, and from the Spring STS (eclipse-based) IDE, I can call the entity classes, etc. I need to access these…
Herman Lintvelt
  • 1,791
  • 1
  • 12
  • 14
2
votes
1 answer

Show local HTML file with JavaScript in SWT Browser widget in RAP

For my RAP-project I need to show some charts. Because I haven't found any widget for this purpose, my plan was to use the browser widget, so I can use JavaScript-Plugins like Highcharts or Chartsjs. But I can't get it working. If I set an HTML-File…
2
votes
1 answer

How do you detect when a JFace Dialog (or other modal component) has been opened in an Eclipse RAP application?

In my Eclipse RAP application, I need to have a component change the way it looks whenever any other component opens a dialog box (or any other element in the foreground). How do I have my component detect when this happens? I have tried using…
Phoebe
  • 2,774
  • 3
  • 22
  • 27
2
votes
1 answer

org.eclipse.swt.browser.Browser does not open in Eclipse RAP application

Wonder if somebody can help me with this. I am trying to open an embedded browser in an Eclipse RAP applications. All examples I have seen look something like: link.addSelectionListener(new SelectionAdapter() { @Override public void…
2
votes
1 answer

Possibility to pass command line arguments via URL to RAP-Application

Is there a possibility to pass command line arguments via URL to RAP-Application? I'm using RAP 1.4.
Michael K.
  • 1,738
  • 2
  • 17
  • 35
2
votes
2 answers

Remove or disable the "X" close button shown on a RAP/RCP EditorPart

Im working on a RAP application that shows both ViewParts and EditorParts. Im trying to find a way to prevent "All" Editor parts from closing. Is there a way to either remove or disable the "X" close button shown on a Editor part?
archik
  • 455
  • 1
  • 5
  • 22
1
2
3
12 13