Request for an SWT Glazedlists "gentil" tutorial

View: New views
7 Messages — Rating Filter:   Alert me  

Request for an SWT Glazedlists "gentil" tutorial

by Oceanys :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi, I'm new to the good GlazedLists API and I'm using SWT tables.

I was happy when I found the GlazedLists API. I have a problem with SWT GlazedLists integration because the majority of the available tutorials are written for Swing or for other SWT widgets (I mean the pixel example in the link
http://hexapixel.com/2009/01/02/glazed-lists-swt-tables-true).

Is anyone have a simple source code or snippet to start with a simple SWT table and Glazed lists in order to show how we can sort and filter it.
Thanks in advance and cordially.

Re: Request for an SWT Glazedlists "gentil" tutorial

by fab|an :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

 here's something I quickly copy'n'pasted together: http://gist.github.com/224365

HTH
fabian

Oceanys wrote:
Hi, I'm new to the good GlazedLists API and I'm using SWT tables.

I was happy when I found the GlazedLists API. I have a problem with SWT GlazedLists integration because the majority of the available tutorials are written for Swing or for other SWT widgets (I mean the pixel example in the link
http://hexapixel.com/2009/01/02/glazed-lists-swt-tables-true).

Is anyone have a simple source code or snippet to start with a simple SWT table and Glazed lists in order to show how we can sort and filter it.
Thanks in advance and cordially.

Re: Request for an SWT Glazedlists "gentil" tutorial

by Oceanys :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,
Thank you for the replay, but the example is still incomplete (for me as a beginner in the GlazedList API).
All that I need is a clear snippet where an SWT table is created and populated and then the sort and filter feature is added.
Thanks in advance and good luck.

Hi,

 here's something I quickly copy'n'pasted together: http://gist.github.com/224365

HTH
fabian

Oceanys wrote:
Hi, I'm new to the good GlazedLists API and I'm using SWT tables.

I was happy when I found the GlazedLists API. I have a problem with SWT GlazedLists integration because the majority of the available tutorials are written for Swing or for other SWT widgets (I mean the pixel example in the link
http://hexapixel.com/2009/01/02/glazed-lists-swt-tables-true).

Is anyone have a simple source code or snippet to start with a simple SWT table and Glazed lists in order to show how we can sort and filter it.
Thanks in advance and cordially.


Re: Request for an SWT Glazedlists "gentil" tutorial

by Oceanys :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,
Thank you for the replay, but the example is still incomplete (for me as a beginner in the GlazedList API).
All that I need is a clear snippet where an SWT table is created and populated and then the sort and filter feature is added.
Thanks in advance and good luck.

Hi,

 here's something I quickly copy'n'pasted together: http://gist.github.com/224365

HTH
fabian

Oceanys wrote:
Hi, I'm new to the good GlazedLists API and I'm using SWT tables.

I was happy when I found the GlazedLists API. I have a problem with SWT GlazedLists integration because the majority of the available tutorials are written for Swing or for other SWT widgets (I mean the pixel example in the link
http://hexapixel.com/2009/01/02/glazed-lists-swt-tables-true).

Is anyone have a simple source code or snippet to start with a simple SWT table and Glazed lists in order to show how we can sort and filter it.
Thanks in advance and cordially.


Re: Request for an SWT Glazedlists "gentil" tutorial

by fab|an :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Ok, here's a running example.

http://github.com/fab1an/gl-addons/blob/master/src/at/busta/glazedlists/test/swt/EventTableViewerDemo.java

you can checkout the whole repo or just this file to build it.

It shows:
* population of Table via a background thread
* locking which is needed in this case
* "filtering via Buttons"
* filtering by a Text-input
* sorting of the table
* selection

HTH
fabian


Hi,
Thank you for the replay, but the example is still incomplete (for me as a beginner in the GlazedList API).
All that I need is a clear snippet where an SWT table is created and populated and then the sort and filter feature is added.
Thanks in advance and good luck.
fab|an wrote:
Hi,

 here's something I quickly copy'n'pasted together: http://gist.github.com/224365

HTH
fabian

Oceanys wrote:
Hi, I'm new to the good GlazedLists API and I'm using SWT tables.

I was happy when I found the GlazedLists API. I have a problem with SWT GlazedLists integration because the majority of the available tutorials are written for Swing or for other SWT widgets (I mean the pixel example in the link
http://hexapixel.com/2009/01/02/glazed-lists-swt-tables-true).

Is anyone have a simple source code or snippet to start with a simple SWT table and Glazed lists in order to show how we can sort and filter it.
Thanks in advance and cordially.

Re: Request for an SWT Glazedlists "gentil" tutorial

by Oceanys :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,
Thanks a lot for your valuable help.
I'm really happy to find this source code because it's useful for my work.
All my best regards and good luck.
God bless.

Ok, here's a running example.

http://github.com/fab1an/gl-addons/blob/master/src/at/busta/glazedlists/test/swt/EventTableViewerDemo.java

you can checkout the whole repo or just this file to build it.

It shows:
* population of Table via a background thread
* locking which is needed in this case
* "filtering via Buttons"
* filtering by a Text-input
* sorting of the table
* selection

HTH
fabian


Hi,
Thank you for the replay, but the example is still incomplete (for me as a beginner in the GlazedList API).
All that I need is a clear snippet where an SWT table is created and populated and then the sort and filter feature is added.
Thanks in advance and good luck.
fab|an wrote:
Hi,

 here's something I quickly copy'n'pasted together: http://gist.github.com/224365

HTH
fabian

Oceanys wrote:
Hi, I'm new to the good GlazedLists API and I'm using SWT tables.

I was happy when I found the GlazedLists API. I have a problem with SWT GlazedLists integration because the majority of the available tutorials are written for Swing or for other SWT widgets (I mean the pixel example in the link
http://hexapixel.com/2009/01/02/glazed-lists-swt-tables-true).

Is anyone have a simple source code or snippet to start with a simple SWT table and Glazed lists in order to show how we can sort and filter it.
Thanks in advance and cordially.


Re: Request for an SWT Glazedlists "gentil" tutorial

by Oceanys :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,
Thanks a lot for your valuable help.
I'm really happy to find this source code because it's useful for my work.
All my best regards and good luck.
God bless.

Ok, here's a running example.

http://github.com/fab1an/gl-addons/blob/master/src/at/busta/glazedlists/test/swt/EventTableViewerDemo.java

you can checkout the whole repo or just this file to build it.

It shows:
* population of Table via a background thread
* locking which is needed in this case
* "filtering via Buttons"
* filtering by a Text-input
* sorting of the table
* selection

HTH
fabian


Hi,
Thank you for the replay, but the example is still incomplete (for me as a beginner in the GlazedList API).
All that I need is a clear snippet where an SWT table is created and populated and then the sort and filter feature is added.
Thanks in advance and good luck.
fab|an wrote:
Hi,

 here's something I quickly copy'n'pasted together: http://gist.github.com/224365

HTH
fabian

Oceanys wrote:
Hi, I'm new to the good GlazedLists API and I'm using SWT tables.

I was happy when I found the GlazedLists API. I have a problem with SWT GlazedLists integration because the majority of the available tutorials are written for Swing or for other SWT widgets (I mean the pixel example in the link
http://hexapixel.com/2009/01/02/glazed-lists-swt-tables-true).

Is anyone have a simple source code or snippet to start with a simple SWT table and Glazed lists in order to show how we can sort and filter it.
Thanks in advance and cordially.