Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Remote Application Platform (RAP) » Nebula Grid plug-in(JAR) Download Address?
Nebula Grid plug-in(JAR) Download Address? [message #896834] Fri, 20 July 2012 02:29 Go to next message
ocean xue is currently offline ocean xueFriend
Messages: 107
Registered: November 2011
Senior Member
Nebula Grid plug-in Download Address? jar?

thank you

[Updated on: Fri, 20 July 2012 03:38]

Report message to a moderator

Re: Nebula Grid plug-in Download Address? [message #896843 is a reply to message #896834] Fri, 20 July 2012 06:14 Go to previous messageGo to next message
Ivan Furnadjiev is currently offline Ivan FurnadjievFriend
Messages: 2426
Registered: July 2009
Location: Sofia, Bulgaria
Senior Member
Hi,
the work on the nightly build is still in progress. For now, use it a
source bundle from the following incubator Git repository:
http://git.eclipse.org/c/rap/incubator/org.eclipse.rap.incubator.nebula-grid.git/
HTH,
Ivan


On 7/20/2012 5:29 AM, ocean Mising name wrote:
> Nebula Grid plug-in Download Address?
>
> thank you

--
Ivan Furnadjiev

Twitter: @EclipseRAP
Blog: http://eclipsesource.com/blogs/

Professional services for RAP and RCP?
http://eclipsesource.com/services/rap/
Re: Nebula Grid plug-in Download Address? [message #896847 is a reply to message #896843] Fri, 20 July 2012 06:44 Go to previous messageGo to next message
ocean xue is currently offline ocean xueFriend
Messages: 107
Registered: November 2011
Senior Member
Hi, Ivan

org.eclipse.rap.nebula.widgets.grid add to the dependencies, run error?
rap runtime to 1.5 release.

snippet:

package com.yidatec.eoffice.om.project.form.dialogs;

import org.eclipse.nebula.widgets.grid.Grid;
import org.eclipse.nebula.widgets.grid.GridColumn;
import org.eclipse.nebula.widgets.grid.GridColumnGroup;
import org.eclipse.nebula.widgets.grid.GridItem;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;

public class OP003Step04Dialog extends Composite {

/**
*
*/
private static final long serialVersionUID = 1L;

/**
* Create the composite.
*
* @param parent
* @param style
*/
public OP003Step04Dialog(Composite parent, int style) {
super(parent, style);
setLayout(new GridLayout(1, false));

Grid grid = new Grid(this, SWT.BORDER | SWT.V_SCROLL | SWT.H_SCROLL);
grid.setHeaderVisible(true);
GridColumn column = new GridColumn(grid, SWT.NONE);
column.setText("Column 1");
column.setWidth(100);
GridColumnGroup columnGroup = new GridColumnGroup(grid, SWT.NONE);
columnGroup.setText("Column Group");
GridColumn column2 = new GridColumn(columnGroup, SWT.NONE);
column2.setText("Column 2");
column2.setWidth(60);
GridColumn column3 = new GridColumn(columnGroup, SWT.NONE);
column3.setText("Column 3");
column3.setWidth(60);
GridItem item1 = new GridItem(grid, SWT.NONE);
item1.setText("First Item");
item1.setText(1, "abc");
GridItem item2 = new GridItem(grid, SWT.NONE);
item2.setText("Second Item");
item2.setText(2, "def");
GridItem item3 = new GridItem(grid, SWT.NONE);
item3.setText("Third Item");
item3.setText(1, "xyz");

}

@Override
protected void checkSubclass() {
// Disable the check that prevents subclassing of SWT components
}

}

error msg:
Could not process server response:
Error: Error: Operation "create" on target "w501" of type "null" failed:
No Adapter for type rwt.widgets.Grid
Properties:
parent = w296
style = FULL_SELECTION,BORDER
appearance = tree
indentionWidth = 16
markupEnabled = false
bounds = 5,5,232,134
children =
tabIndex = 85
itemCount = 3
itemHeight = 26
itemMetrics = 0,0,100,5,0,5,90,5,0,1,100,60,105,0,105,50,105,0,2,160,60,165,0,165,50,165,0
columnCount = 3
headerHeight = 44
headerVisible = true
linesVisible = true
.....
.....

[Updated on: Fri, 20 July 2012 06:49]

Report message to a moderator

Re: Nebula Grid plug-in Download Address? [message #896850 is a reply to message #896847] Fri, 20 July 2012 07:00 Go to previous messageGo to next message
Ivan Furnadjiev is currently offline Ivan FurnadjievFriend
Messages: 2426
Registered: July 2009
Location: Sofia, Bulgaria
Senior Member
Hi,
Grid requires RAP from Git master (nightly build). Grid does not work
with RAP 1.5.
Best,
Ivan

On 7/20/2012 9:44 AM, ocean xue wrote:
> Hi, Ivan
>
> org.eclipse.rap.nebula.widgets.grid add to the dependencies, run error
>
> snippet:
>
> package com.yidatec.eoffice.om.project.form.dialogs;
>
> import org.eclipse.nebula.widgets.grid.Grid;
> import org.eclipse.nebula.widgets.grid.GridColumn;
> import org.eclipse.nebula.widgets.grid.GridColumnGroup;
> import org.eclipse.nebula.widgets.grid.GridItem;
> import org.eclipse.swt.SWT;
> import org.eclipse.swt.layout.GridLayout;
> import org.eclipse.swt.widgets.Composite;
>
> public class OP003Step04Dialog extends Composite {
>
> /**
> * */
> private static final long serialVersionUID = 1L;
>
> /**
> * Create the composite.
> * * @param parent
> * @param style
> */
> public OP003Step04Dialog(Composite parent, int style) {
> super(parent, style);
> setLayout(new GridLayout(1, false));
>
> Grid grid = new Grid(this, SWT.BORDER | SWT.V_SCROLL |
> SWT.H_SCROLL);
> grid.setHeaderVisible(true);
> GridColumn column = new GridColumn(grid, SWT.NONE);
> column.setText("Column 1");
> column.setWidth(100);
> GridColumnGroup columnGroup = new GridColumnGroup(grid,
> SWT.NONE);
> columnGroup.setText("Column Group");
> GridColumn column2 = new GridColumn(columnGroup, SWT.NONE);
> column2.setText("Column 2");
> column2.setWidth(60);
> GridColumn column3 = new GridColumn(columnGroup, SWT.NONE);
> column3.setText("Column 3");
> column3.setWidth(60);
> GridItem item1 = new GridItem(grid, SWT.NONE);
> item1.setText("First Item");
> item1.setText(1, "abc");
> GridItem item2 = new GridItem(grid, SWT.NONE);
> item2.setText("Second Item");
> item2.setText(2, "def");
> GridItem item3 = new GridItem(grid, SWT.NONE);
> item3.setText("Third Item");
> item3.setText(1, "xyz");
>
> }
>
> @Override
> protected void checkSubclass() {
> // Disable the check that prevents subclassing of SWT components
> }
>
> }
>
> error msg:
> Could not process server response:
> Error: Error: Operation "create" on target "w501" of type "null" failed:
> No Adapter for type rwt.widgets.Grid
> Properties: parent = w296
> style = FULL_SELECTION,BORDER
> appearance = tree
> indentionWidth = 16
> markupEnabled = false
> bounds = 5,5,232,134
> children = tabIndex = 85
> itemCount = 3
> itemHeight = 26
> itemMetrics =
> 0,0,100,5,0,5,90,5,0,1,100,60,105,0,105,50,105,0,2,160,60,165,0,165,50,165,0
> columnCount = 3
> headerHeight = 44
> headerVisible = true
> linesVisible = true
> ....
> ....
>

--
Ivan Furnadjiev

Twitter: @EclipseRAP
Blog: http://eclipsesource.com/blogs/

Professional services for RAP and RCP?
http://eclipsesource.com/services/rap/
Re: Nebula Grid plug-in Download Address? [message #896856 is a reply to message #896850] Fri, 20 July 2012 07:26 Go to previous messageGo to next message
ocean xue is currently offline ocean xueFriend
Messages: 107
Registered: November 2011
Senior Member
RAP Nebula Grid in the next version (rap-runtime-1.5.1) to use, do work?
Re: Nebula Grid plug-in Download Address? [message #897000 is a reply to message #896856] Fri, 20 July 2012 18:16 Go to previous messageGo to next message
Ivan Furnadjiev is currently offline Ivan FurnadjievFriend
Messages: 2426
Registered: July 2009
Location: Sofia, Bulgaria
Senior Member
Hi,
No... Nebula Grid requires RAP 2.0.
Best,
Ivan

On 7/20/2012 10:26 AM, ocean xue wrote:
> RAP Nebula Grid in the next version (rap-runtime-1.5.1) to use, do work?

--
Ivan Furnadjiev

Twitter: @EclipseRAP
Blog: http://eclipsesource.com/blogs/

Professional services for RAP and RCP?
http://eclipsesource.com/services/rap/
Re: Nebula Grid plug-in Download Address? [message #900468 is a reply to message #897000] Tue, 07 August 2012 08:27 Go to previous messageGo to next message
ocean xue is currently offline ocean xueFriend
Messages: 107
Registered: November 2011
Senior Member
Hi, Ivan

Nebula Grid is based on the 1.5 version,yes or no?

thank a lot.
Re: Nebula Grid plug-in Download Address? [message #900473 is a reply to message #900468] Tue, 07 August 2012 08:50 Go to previous message
Ivan Furnadjiev is currently offline Ivan FurnadjievFriend
Messages: 2426
Registered: July 2009
Location: Sofia, Bulgaria
Senior Member
Hi,
no... Nebula Grid port requires RAP 2.0, because of needed client-side
widget changes.
Best,
Ivan

On 8/7/2012 11:27 AM, ocean xue wrote:
> Hi, Ivan
>
> Nebula Grid is based on the 1.5 version,yes or no?
>
> thank a lot.

--
Ivan Furnadjiev

Twitter: @EclipseRAP
Blog: http://eclipsesource.com/blogs/

Professional services for RAP and RCP?
http://eclipsesource.com/services/rap/
Previous Topic:Eclipse 3.8/rap 1.5 helpSystem problem
Next Topic:Deploying on RAP 1.5
Goto Forum:
  


Current Time: Tue Apr 16 22:39:57 GMT 2024

Powered by FUDForum. Page generated in 0.36475 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top