org.eclipse.rap icon indicating copy to clipboard operation
org.eclipse.rap copied to clipboard

Eclipse RAP Runtime (Remote Application Platform)

Results 58 org.eclipse.rap issues
Sort by recently updated
recently updated
newest added

The current JavaScriptExecutor only contains a single method, `execute`, which does not allow the return value of the given JavaScript code to be captured. This change adds a new method,...

I encounter exactly this (closed) issue with RAP 3.29.0: https://bugs.eclipse.org/bugs/show_bug.cgi?id=396172 The problem is that `Table.updateScrollBars()` is called for each item that is disposed via `Table.destroyItem()`: ![Image](https://github.com/user-attachments/assets/d2d89ed8-bddc-439b-a934-f99b6c9359b5) After investigating https://github.com/eclipse-rap/org.eclipse.rap/blob/70285aa63c2a4ff312cc27b33df66db1c8990ff3/bundles/org.eclipse.rap.rwt/src/org/eclipse/swt/widgets/Table.java#L2546 I've...

In hop-web issue: https://github.com/apache/hop/issues/3508 in GuiResource.java#loadAsResource method ```java SwtUniversalImage img = SwtSvgImageUtil.getUniversalImage(display, getClass().getClassLoader(), location); Image image; if (size > 0) { int newSize = (int) Math.round(size * zoomFactor); image =...

help wanted

Hello, We are migrating our RAP based application to RAP v4.1.0 (from RAP3.X) as we needed the RAP compatibility to JBoss EAP 8. The application is now successfully deployed, but...

question

Hello, We are migrating our RAP 3.x application to RAP 4.x on JBoss EAP 8.0 As of now, we are getting deployment issue related to equinox and BridgeServlet. Is there...

question

When the application explicitly catches (to rethrow) `java.lang.ThreadDeath`, upgrading to `JavaSE-21` on the compiler level introduces a warning about `ThreadDeath` being deprecated for removal. Are there any plans already on...

enhancement
deprecation

This seems to be the same as https://bugs.eclipse.org/bugs/show_bug.cgi?id=360630 which is a very old bug, but we are encountering it again. We are running a RAP UI in a Jetty server....

How can keyboard type be specified for a Text widget in RAP? This is for browser running on mobile/touch device with an on-screen keyboard. I tried setting type="email" as an...