Questions tagged [nebula]

Use this tag for questions about Eclipse Nebula which provides custom SWT widgets and other UI components.

Eclipse Nebula is a place where different Eclipse projects and independent developers collaborate on building custom widgets and reusable UI components for applications built using SWT, JFace and Eclipse RCP and RAP.

121 questions
1
vote
1 answer

WIthin nebula/gradle, how can I inject the version being released into the jar being published?

We have a tool that runs from the command line. One of the commands is -version. Before we converted to the nebula release plugin, the version was in the gradle.properties file, and as part of the build we copied it from there to a…
Jim Showalter
  • 550
  • 3
  • 8
  • 20
1
vote
1 answer

How to create user input field in Eclipse plugin using Eclipse Nebula Grid?

I am simply trying to create a Grid plugin that can have each cell be edited by a user. I found Eclipse Nebula and it seems pretty close to what I want to do except I can't figure out a way to make the cells editable. So far I have something simple…
pepe1
  • 205
  • 1
  • 3
  • 18
1
vote
1 answer

How to Install "Nebula" Project into Eclipse

I’m trying to install the Nebula-Software from Eclipse. It seems, I miss a may be little, but very relevant point. My main aim is to test and work with the “Nebula Oscilloscope Widget”. So I did as I got told…
tarik
  • 73
  • 2
  • 10
1
vote
0 answers

how to use Nebula Gird widget in Window Builder

I have installed Nebula Grid widget for RAP in my Eclipse Mars (or Oxygen) which is targeted RAP(Remote Application Platform). I wanted to use nebula Grid widget in Window Builder Editor. But when I place nebula Grid widget in Window Builder…
김정수
  • 11
  • 4
1
vote
2 answers

Automation tool to deal with SWT and NatTable

I have a task to find out best automation tool for my desktop based product. When I discussed with developers, they said, the product uses SWT (Standard Widget Toolkit) for GUI development, and used Nuebula Project (NatTable, tableCombo) for tables…
Mandar Kale
  • 337
  • 2
  • 13
1
vote
1 answer

Remove row numbers in Nattable

I'm using Nattable for a couple of different tables in my application. Now I need to find a way to remove the row numbers in the first column. Is there some way to hide/remove the row numbers from the table? My source to draw the table is: public…
JimmyD
  • 2,629
  • 4
  • 29
  • 58
1
vote
2 answers

Sorting of tree implemented with NatTable

I'm trying to implement sorting of tree implemented with NatTable but I can't really understand how it works. My problem is that after the sorting of any column other than 'tree' column child nodes can move to invalid parent. Though the order of…
Joel
  • 473
  • 2
  • 7
  • 22
1
vote
2 answers

Tree implementation using NatTable

I try to switch from JFace TreeViewer to NatTable. Unfortunately I didn't find a lot of documentation about implementing trees with NatTable. So I have some questions With TreeViewer I used setInput() to provide new input. How can I achieve the…
Joel
  • 473
  • 2
  • 7
  • 22
1
vote
1 answer

Eclipse Plugin IDE frozen / not refreshing during process

I'm developing an Eclipse plugin right now and there's a problem I can't resolve. There's this situation: I have two processes. Process A fills a View (with a Nebula XViewer table). Process B uses the data from the view (results in some kind of…
Jdv
  • 962
  • 10
  • 34
1
vote
0 answers

Test context menu of Grid

I have a org.eclipse.nebula.widgets.grid.Grid. To its header I've added a context menu (which is triggered by right click). I have to create some tests for this grid, using SWTBot (which doesn't support grids). How can I open the context menu? I…
Andrei
  • 19
  • 4
1
vote
2 answers

Delete rows from Nattable

I want to implement a row deletion logic in a Nebula Nattable. This is what I plan to do: Add context menu to the Nattable which is described in http://blog.vogella.com/2015/02/03/nattable-context-menus-with-eclipse-menus/ Add an SWT Action to…
ssdimmanuel
  • 448
  • 10
  • 29
1
vote
1 answer

Nebula GridViewer Selection not working

I am using Nebula Grid to display an excel sheet in my RCP application. I have an requirement to select all rows. My code is as follows: private void addKeyListener() { this.gv.getGrid().addKeyListener(new KeyListener() { @Override …
ssdimmanuel
  • 448
  • 10
  • 29
1
vote
1 answer

Nebula Nattable - Change columns dynamically

I am using a Nattable inside a eclipse ViewPart. My RCP application is such that, each time I open the view, the table can have different columns based on the datamodel(represented by a different POJO) I wish to display.In short, can I do something…
ssdimmanuel
  • 448
  • 10
  • 29
1
vote
1 answer

RowSelectionModel shows all Column Header cells

I have created a NatTable with a RowSelectionModel and a RowSelectionProvider: dataProvider = new ListDataProvider<>(rowData, columnAccessor); bodyDataLayer = new DataLayer(dataProvider); glazedListEventsLayer = new…
Stefan Winkler
  • 3,871
  • 1
  • 18
  • 35
1
vote
1 answer

Need help finding xygraph dependency in Maven

I am trying to use the XYGraph in the Nebula visualization tool from eclipse (http://www.eclipse.org/nebula/widgets/visualization/visualization.php) to create charts and graphs in my Java application, I am using Maven to manage my dependencies as I…
AdM
  • 55
  • 7
1
2
3
8 9