Recent Posts
Area Charts in Iceberg Charts
March 11th, 2018
It is now possible to create area charts in Iceberg Charts that look something like this : Th[...]
Mandelbrot Set in Java
March 12th, 2017
Mandelbrot Set in Java with Iceberg Charts The Mandelbrot Set is one of the most famous images in a[...]
The Problem with Extjs these days
February 7th, 2017
I really like Extjs. But I have found myself struggling with Extjs in recent times and questioning t[...]
Simple Navigation Menu in AngularJS
May 5th, 2016
I struggled for about half a day trying to get some sort of menu system in AngularJS working. It see[...]
-
Browse Netbeans Tutorial
April 2018 M T W T F S S « Mar 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 Blogroll
My links
Other Java Rich Client Blogs
UML
clustr
Meta
Posts on UML
Categories
- angularjs (1)
- Design Pattern (7)
- Eclipse (1)
- extjs (4)
- Iceberg Charts (4)
- JavaScript (9)
- Netbeans RCP (2)
- Netbeans Tutorial (2)
- Refactoring (2)
- RIA (2)
- Swing (18)
- Swing Components (13)
- Swing Design Pattern (4)
- Tutorial (7)
- UML (3)
- Uncategorized (9)
- Usability (1)
Java Desktop
Archives
- March 2018
- March 2017
- February 2017
- November 2016
- May 2016
- March 2016
- February 2016
- May 2015
- April 2015
- March 2015
- February 2015
- January 2015
- December 2014
- October 2014
- September 2014
- August 2014
- June 2014
- April 2014
- March 2014
- January 2014
- September 2013
- August 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- December 2012
- September 2012
- August 2012
- June 2012
- January 2012
- December 2011
- November 2011
- October 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- December 2010
- November 2010
Category Archives: extjs
The Problem with Extjs these days
I really like Extjs. But I have found myself struggling with Extjs in recent times and questioning the overall philosophy and direction of the framework. Configuration over convention? There is this sense to me that Extjs is becoming too over-configurable. … Continue reading
Extjs Widget Factory
What every good extjs application needs is a Widget Factory. Over time our project team gravitated naturally to this pattern, and suspect it is a common pattern in the community. Let me break it down.. When developing an extjs GUI … Continue reading
Layouts in Extjs
This is a quick overview of layouts in ExtJS. absolute The absolute layout positions an element using x,y coordinates.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
layout: 'absolute', width:250, height:250, items: [{ x: 50, y: 50, width:50, height:50, html: '50 50 ' }, { x: 70, y: 70, width:50, height:50, html: '70 70 ' } ] |
This type of layout should be avoided, as resizing the panel will not resize the components. Only … Continue reading
ExtJS Filter Across All Grid Cells
ExtJS offers the ability to filter rows based on a column. By setting filters features in grid like so :
1 2 3 4 5 |
this.features = { ftype: 'filters', encode: false, local: true }; |
and defining filters on your columns like so :
1 2 3 4 5 |
dataIndex: 'myColumnId', text: 'My Column', filter: { type: 'string' } |
You can get some pretty cool filtering functionality in … Continue reading