Blog

Ext JS 3.0 - Be Outstanding

August 10, 2009 | Abraham Elias

On behalf of the Ext Team, I am pleased to announce the final release of Ext JS 3.0. This release is the culmination of tens of thousands of hours of architecture, development and community feedback. A change log and online documentation can be found on the download page. Together we've accomplished a level of excellence to be proud of, but we want to enable you to be even better. We want you to be Outstanding.

Excellence

My all-time favorite quote is from Aristotle: "We are what we repeatedly do. Excellence, then, is not an act, but a habit." Sometimes, however, to reach new heights we need new habits. As one of the world's greatest golfers, Tiger Woods underwent an extensive swing change when he was already ranked number one in the sport. While Tiger struggled through the process, he would emerge as the greatest that ever played. Tiger would go on to a record-setting season, where he would win three consecutive majors, nine PGA Tour events, and set or tie 27 Tour records - and that was just the beginning. Tiger's decision to modify his swing, at the top of his game, enabled him to be outstanding. Likewise, Ext has spent the past few months modifying our "swing" so you can achieve a new level of greatness.

Assurance

For quite some time we have offered SVN access to our support subscribers. This enabled many of you to access the latest and greatest features of Ext JS for your project. At the same time, it also introduced some unforeseen bugs due to ongoing development. While this might have been exciting to some, many of us with existing projects wanted just the "fixes" without the "feature enhancements". In order to accommodate this level of quality, we've had to make a significant investment in our internal processes.

Ext JS Public Commit Log

In an effort to have more transparency with our community we have created a Public Commit Log reflecting recent commits by the team. Our community can expect to have these commits in our next public release. Our new commit template will assist us in building more interactive change logs for future releases. Component authors that extend existing Ext base components will be able to sort and locate fixes to improve their extensions stability faster using a grouping grid. In addition, the convention "ref #" and "fixes #" within the commit allow us to automate our internal QA ticket workflow.

Release Cycle

As we continue to grow our product offering, not adhering to a strict release schedule has presented issues. We want to exceed your expectations by releasing software you've helped support. We want to "Release Soon, Release Often." Therefore the Ext Team will be releasing Quarterly public releases of Minor Revisions. To strengthen our support offering, we are now introducing "Monthly Patch Builds" to our support subscribers with just the "fixes".

JS Builder 2

We have created a new build tool along with a new file format for Ext 3.0. JS Builder was a great tool for managing your Ext projects but it had a severe limitation that it could only run on Windows. We have implemented a cross-platform Java application named JS Builder 2 to replace JS Builder. In the past, you had to build multiple jsb files in order to build an entire Ext build. This process was repetitive and could become quickly time consuming if you did not write a batch script. The new jsb2 file format is able to handle multiple build targets in a single file and makes building a breeze.

Consistency

There have been some changes to the folder structure of Ext JS to be more consistent with our development going forward. Within the Ext 3.0.0 download you will now find that the "source/" directory has been renamed to "src/". This change was made to mirror what is retrieved from the SVN repository is what you will find in a packaged download.

CSS Refactor & Improvements

Theming has now become easier than ever due to the separation of structural and visual CSS. Each component now has its own visual CSS file which describes its appearance. To create your own complete theme, simply override each rule for colors and images in the visual css directory.

Ext JS Theme

CSS Scoping

Placing standard HTML into an Ext.Panel has become easier with the new configuration preventBodyReset. When preventBodyReset is set to true your HTML will get the standard W3C suggested styling. This means that your standard HTML items will look the way you would expect them to if you loaded them up within a browser without any custom CSS.

Layout Managers

Up until now we have demonstrated only the user interface specific features which are new to Ext JS 3.0. There are also many features which aren't UI specific. First off, both Menu and Toolbar have been updated to be proper containers with their own custom layout managers. By implementing these custom layout managers we were able to achieve the complex overflow enhancements. We have also introduced 2 new layout managers for general use named hbox and vbox. The hbox and vbox layouts enable developers to layout components horizontally and vertically based on ratios for incredibly complex interfaces.

Ext.data Improvements

The Ext.data package has been improved to incorporate Ext.data.DataWriters which can write back changes which occur client side back to the server-side. Writers are configured similarly to a DataReader and are now one of the constituent pieces of a store. The store exposes several methods like save and create which will trigger communication with the server-side based on the configuration of the writer.

 
// The new DataWriter component.  Elegance in simplicity.
var writer = new Ext.data.JsonWriter({
    encode: true,
    writeAllFields: false
});
 

Memory Management Improvements

Ext 3.0 has a new memory management model for Ext Components. This new approach eliminates many of memory consumptions issues encountered in long running Ext 1.x and 2.x applications. This new model exposes a function, mon(), which you can use to bind listeners to external objects which will be automatically cleaned up at the end of the component's lifecycle. This new method to Ext.Component called mon(), which you can use to bind events to external objects, either DOM elements or Ext classes. mon() adds the listener to an internal collection which is destroyed when the object is destroyed, assisting you in memory management. All Ext Components have been changed to use this method where appropriate.

//Old Style
this.el.on('click', this.onClick, this);
 
//New Style
this.mon(this.el, 'click', this.onClick, this);

Innovation

In order to stay at the top of our game, we will to continue innovate. We will continue to provide elegant solutions to existing problems and lead where others have faltered. This is our promise to you and to ourselves.

Accessibility

We are 100% committed to supporting and incorporating improvements to help you build accessible applications by offering keyboard navigation, screen reader support, and a new high contrast theme for your entire application.

While Ext has always had native support for key binding for our most popular components, traversing your application using a keyboard was left up you to develop. With the new Focus Manager component, coupled with the new class inspection, you won't need to write a line of code.

ARIA support is an evolving standard. Ext is working on adding ARIA support to the major components like Panel, Tree, Menu, Window, Grid. Using a screen reader like NVDA, with this tree example, will show how elegant accessibility can be for everyone.

Designer Preview

Constructing your interfaces in code will be a thing of the past. We are releasing a Designer Preview that will allow you to experiment with the designer interface and to explore how configs affect your layout. Soon, you will be able to build your application components using base Ext components and Certified User Extensions.

Code generation is currently not available. Our intentions are to charge a fee for this service and to enable our community to create and sell their creations on our marketplace. Our goals are lofty. We want to be the iTunes of Web App Development.

Summary

While many of the features of Ext JS 3.0 have been covered in previous posts, we've really just touched the surface of the power of Ext JS 3. Its been an amazing journey thus far, and we have a clear view of where we are going. We aim to provide you the tools to be Outstanding.

There are 117 responses. Add yours.

Eric Berens

3 years ago

Nice work on the release. I’ve been following Ext JS for a while now and it has definitely come a long way. Its saved us countless hours of development time using it here at Best Buy. The Designer looks pretty promising as well. Will have to try it out.

Luca Servalli

3 years ago

Compliments to ExtJS Team, every release it’s a beatiful surprise.

Thorsten Suckow-Homberg

3 years ago

This is some great stuff.  I have to admit that I have not found a use case for the new Ext.Direct stuff in my current apps, but other than that the framework just improved in the best ways and migrating from 2.0 to 3.0 was as easy as can be.

Ext JS 3.0 Final Released!

3 years ago

[...] really excited that the final release of Ext JS 3/ is here, along with a preview of the Ext JS Designer application. This is built on top of Adobe AIR [...]

Mateus

3 years ago

Hey Great Work, it’s seams very powerefull!
I can see like a Visual Studio Development, keep working on this project.
Congrats!

Great job ExtJS Team!!!

David Davis

3 years ago

Congrats to the whole team!

Lucian Lature

3 years ago

Well done ExtJS Team!...Excellent stuff!

Kris

3 years ago

Are there any plans to integrate with GWT?

manduks

3 years ago

omg, exelent job, guys keep making exjs the state of art in js, XD gl, and happy coding! to all

Ext Japan - ???

3 years ago

[...] ?????????????Ext JS 3.0???????????????? [...]

qooleot

3 years ago

“Code generation is currently not available. Our intentions are to charge a fee for this service”

Does that mean I cannot create something in the designer and get the javascript results out?  I’ve got to submit a designer file or something to Ext and pay to get the code back?  Hopefully I’m reading that wrong…

Frank Mayer

3 years ago

I have been using extjs since 1.0 and I am happy that 3.0 has had that much of an improvement.
Designer looks nice. Have to try it out.

Jay garcia

3 years ago

Many thanks to the ext team and the community members (animal, condor, etc) for your time and persistence.  This is the best version of extjs to date.  I look forward to 3.1.

Ethan H

3 years ago

I am new to Ext and had a hard time understanding some of the concepts presented. Fortunately, I spent the past hour or so playing around with the Designer.  It’s helped me tremendously.  You guys deserve all your success!  Thank you.

Yi Yang

3 years ago

???????????????????????store??????????????????????????????

??????

3 years ago

how much

Heimo

3 years ago

it will be good to have a try on the Designer :>

Jonathan

3 years ago

The Designer rocks!  Great work guys.

Animal

3 years ago

Great news. Good plans for different types of release.

What about releases of the API doc page?

The API comments in the code are continually updated in response to questions and misunderstandings that arise during development. Is each release going to have its own http://extjs.com/deploy/ext-n.n.n/docs/ page?

Ext’ten güzellikler devam ediyor

3 years ago

[...] geli?tiricileri güzel haberler vermeye devam [...]

Gafitescu Daniel

3 years ago

The Desiger was a neccesary.Looking forward to working with it

Eli

3 years ago

Great work guys. Looking forward to saving some time by using this tool.

Not sure if this is the place to post bugs but here are a couple I found:

1. Selecting a component does not accurately show properties eg: a panel has a border, however the properties inspector show border property unchecked. Checking then unchecking turns border off.

2. Float values not allowed in fields that it should eg. in column layout columnWidth only allows int values.

Cheers,
Eli

LudoO

3 years ago

Great to see that quality is still a major key for the team.
This first version of the long-waited designer is impressive.

Very good job !!

Andrea Giammarchi

3 years ago

@qooleot I guess you properly got their point. I’ve tested the designer and it does not allow you to retrieve the code. I wonder when this payable version will be out, any info about it?

Gary Gilbert

3 years ago

Looking forward to seeing the designer in action, especially when you have the code generation working smile

Great work!

Rob

3 years ago

Are you going to update/release an extensive set of tutorials?

tobias

3 years ago

wow that looks really good i like the style!

Ajaxian » Ext Designer Preview tool, to go w

3 years ago

[...] Ext folks released Ext version 3 a few weeks back, but we were holding back for their blog post on the matter. There is a lot of [...]

links for 2009-08-11 « pabloidz

3 years ago

[...] Ext JS 3.0 – Be Outstanding (tags: extjs javascript) [...]

Jay Garcia

3 years ago

@Heimo   Seriously!?  The image is a LINK!

Praveen Ray

3 years ago

I’ve been with Ext since 1.0. It just keeps getting better. The entire component architecture is exemplary. For best mileage, one should spend time understanding Ext’s big picture architecture and model their application similarly. It takes time but is totally worth it.

Timothy

3 years ago

I’m glad to see 3.0 finally hit release.  I’m not sure I understand the purpose of charging for the code that we generate in the designer other than finding another route to monetize your efforts.  I like free a lot but I don’t mind paying for a product.  I would be much more inclined to purchase the designer outright for unlimited use.

Marcelo

3 years ago

Is it right? You guys will release the designer but there will be a fee for getting the code generated on it???

“...Code generation is currently not available. Our intentions are to charge a fee for this service…”

OMG… if its real i’ll continue using GuiDesigner.

Crysfel

3 years ago

Awesome work!! i love the Ext JS framework!! i really like the way it is, thanks for this one :D

Abraham Elias

3 years ago

To clarify “charging a fee for this service”  is nothing more than “We plan to charge for the Designer when it comes out with this feature.”

Pipax

3 years ago

hi all peoples. it`s wonderfulproject, the best told for designer web. I’m begining cince extjs1.0 reight now i’m migrate to extjs3.0.
congratolation to people builders

Joeri

3 years ago

Will ExtJS 3 commercial license buyers have to pay for the designer as well?

Abraham Elias

3 years ago

@Joeri

As with every release, we will take care of our community and customers that has supported us, but there will be a fee for commercial license holders (expect a heavy discount).

Raffael L Cambodya

3 years ago

how… much….?

Tommy Maintz

3 years ago

@Marcelo and others with questions about why we want to charge for the advanced functionality in the Designer.

It’s very common for software to have a paid “Pro” version and a free “Lite” version available. For users that just want to prototype an interface and play around with different components/layouts/configuration/extentions options available for the library, the “Lite” version is a very handy tool. Imagine discussing several ways of implementing an interface with your team, and having the ability to quickly try them out without having to touch any code. Another use case might be for new Ext developers to quickly see the differences between layouts, and see what effect different configuration options have on layouts and components.

If you want to use the Designer with the more powerful options (like generation to Ext JS, Ext GWT etc), you will have to buy the “Pro” license for it. We invest a great deal of time building and refining this Designer, and in our opinion its nothing less then fair to charge a small fee for the more advanced features of it.

@Raffael
We are still in discussion internally if and how the pricing would be affected for commercial license holders of Ext. Once we are in a further stage, we will publicly discuss our thoughts on this, and we will be open to all feedback.

@Everyone with questions about what will be generated
First I would like to explain how a project is saved. This will be done in the form of a json configuration/project file. This gives us the ability to quickly open any project saved this way in the designer. This will probably also have the very nice side affect of being able to mail/share an interface/project with a colleague or other community members.

About the generation. There will be two files generated. This first will be a js file that will contain an Ext JS base class representation of what you created in the designer. The second will be a js file in which you would place your event handlers, etc.

Ext Designer Preview tool, to go with Ext 3.0 - Pr

3 years ago

[...] Ext folks released Ext version 3 a few weeks back, but we were holding back for their blog post on the matter. There is a lot of [...]

????

3 years ago

?????? ? ?????? ?????? ?extjs ??? ??????????????????? ????????

Chris

3 years ago

Look forward to using the GUI,  don’t mind paying for it,  as long as its not to much.  Also the market place sounds like a very nice IDEA!  getting apps cetified and being able to sell right here on ExtJS!

lifh

3 years ago

??,?????? ?

??????????

3 years ago

????????????????????????????????

Ted

3 years ago

Hi!, I have compiled a list of the top Ajax blogs, and yours was included! check it out at

http://thedailyreviewer.com/top/Ajax

You can claim your link badge at http://thedailyreviewer.com/pages/badges

broutard

3 years ago

Great job ExtJS Team!!!

frank

3 years ago

Good job, Man?

ExtJS 3.0 released | Ramoonus.nl

3 years ago

[...] Release announcement (bit shortened) (source) [...]

Linkdump for August 12th at found_drama

3 years ago

[...] Ext JS 3.0 – Be Outstanding 3.0 released (tagged: Ext javascript work blog ) [...]

The Ashes » Blog Archive » Ext Designe

3 years ago

[...] Ext folks released Ext version 3 a few weeks back, but we were holding back for their blog post on the matter. There is a lot of [...]

jamesjara

3 years ago

Omg, this is soo goooddd!!

extjs costa rica

Fomly » Blog Archive » Ext Designer

3 years ago

[...] Link: extjs 3.0 be outstanding [...]

lambet liu

2 years ago

good!i hope that it is Open source?

Daily del.icio.us for August 4th through August 13

2 years ago

[...] Ext JS 3.0 – Be Outstanding – On behalf of the Ext Team, I am pleased to announce the final release of Ext JS 3.0. This release is the culmination of tens of thousands of hours of architecture, development and community feedback. [...]

MD

2 years ago

Outstanding, indeed! Congratulations to the Ext JS Team, and my thanks to all those who contribute to the Forums. From yui-ext beta to Ext JS 3.0, every year, every month, every day, it just continues to get better! I’m also thoroughly pleased to see the changes regarding release cycle!

Vivekanand

2 years ago

Great Job done here, looking out for the release….

TheBerliner

2 years ago

My experiences as a newbie to EXTJS and JavaScript after about 4 weeks with EXT 3 and while building an interface code generator in our pure o-o environment at the same time:

1) Product is excellent (although I cannot compare to others)
2) The EXT architect(s) knew o-o design very well (I can judge after >20 yrs in Obj-J and Smalltalk)
3) Documentation is lausy, sparse, partially wrong (misleading wording), missing important facts, no full inheritance tree. Doc is totally inacceptable for a non-JS expert. MUST BE IMPROVED (unless this is part of your business model?). Doc was written by programmers. Never good!
4) Forum’s support is good though some members don’t want to hear the truth (3).

Wish list:
a) ***Very much better documentation!***
b) More complete documentation with even more examples!
c) More precise documentation!
d) Easily changeable colors (at least)
e) Complete encapsulation of *all* DOM stuff to avoid all low-level DOM handling.

The lausy doc has cost >50% of my time!

TheBerliner

2 years ago

Typo: Obj-C, of course

Mike Sickler

2 years ago

You should definitely turn this designer into a product. How about a Javascript editor with autocomplete and some validation? That would be a killer value-add for ExtJS.

An sysadmin lost in Tokyo

2 years ago

Ext JS and the magic designer or .... not…

I was just reading this on ExtJS blog and I particulary disliked the part about the designer ....

Constructing your interfaces in code will be a thing of the past. We are releasing a Designer Previ…...

Monterey Web Design

2 years ago

Wow! You guys have come along way! Congratulations to the whole team. I will defenitely be trying this out. Thank you all for your hard work. =)

DSM

2 years ago

First off - you guys rock!  Hands down the best JS platform out there.  I am a bit confused and it seems that I am not the only one on the thread with the same question…  what is the difference between PRO and Lite on the designer?

Does the lite version provide you with a designer, but the pro allows you to gen the code?  Please explain and put us at rest, as this understanding is causing issues.  The company I work for would not be interested in this model…  I would have to think this would go for many. 

ExtJS - We need some guidance on this - please.

Steve

2 years ago

I’m fired up to use the designer! Hopefully it will have code generation too.

hh_king

2 years ago

?????????!

gepangtsai

2 years ago

It’s so great!!!

Aleksandar Cajic

2 years ago

This is so cool, ExtJS is already a new standard…. great job!!!

ntulip

2 years ago

Charging to export the code will suck! Ohh and someone might just find their way around that.

Wesley

2 years ago

With any code generation the code previewer is really a waste of disk space.

jamesjara

2 years ago

saveAs: function(options, cb, scope){
    options = options || {};
    cb = cb || options.callback;
    scope = scope || options.scope;
       
    var file = new air.File(
    options.fullPath ? options.fullPath :
    ((options.path || air.File.documentsDirectory.nativePath) +
    (options.name ? air.File.separator + options.name : ‘’))
    );
 
    file.addEventListener(‘select’, function(e){
    var target = e.target;
    var stream = new air.FileStream();
        stream.open(target, air.FileMode.WRITE);
    stream.writeUTFBytes(options.contents);
        stream.close();
    Ext.callback(cb, scope, [target]);
    });
   
    file.browseForSave(options.text || ‘Save As’);
    },

RickH

2 years ago

I am also a newbie but do have a bit of javascript experience and have spent a considerable amount of time with EXT. I would say I have to agree with many of the posts about documentation, samples, etc. I’ve been searching the net for the last 3+ weeks to find the right (AJAX) combination for a new project I am undertaking and have basically come up dry. Many others have builders like you are proposing (tibco GI [FREE], morfik, etc.) but ALL of them make what should be easy, difficult. Yes, they all do a great job on WYSIWYG layout of components, but none of them make it easy to connect to data. As an example: I want the grid columns to be built dynamically from the result set. If I have to do an update, like add a field, why do I need to change it in 10 places. Just change the table and that update should just show up. Any applications we would build would have 30 plus screens. Most all samples are one screen apps. Can we get a multi-screen demo (load/unload screens) with a simple login function please? The bottom line is that most all of these AJAX libraries do a great job on building components, they need to focus more on how the end user works with their code and how to make it easier for them to implement. Until that happens, no one is a winner. I would be more than happy to spend $$ on a builder if it worked that way. BTW, the Designer must be using an old version of Air. Won’t run here…

Helen Hunt

2 years ago

Thanks guys for the amazing job. We looked around for frameworks bases on Javascript but was worried as no developer on our team had Javascript experience. This seems to fit perfectly with what are looking for.

Chris

2 years ago

There is no mention of a Designer ETA. Can someone from the ExtJS team provide some guidance here. I am new to ExtJS and want to determine how that ETA would impact my first proof-of-concept project using ExtJS. Thanks.

Henry Dominik

2 years ago

We’ve been experimenting with various Javascript frameworks, this seems to be the exact tool we need. We’ll have to explore it further.

Will let you know how it goes.

mayanyun

2 years ago

?Extjs?????????

frank

2 years ago

to ??????
????????
?????Ext????????

mbahsomo

2 years ago

Thanks for ExtJS team
BTW I can using this tool but ican’t get json code or source
what can I do

To Ext-JS ?????? ??? ?????? 3.0 « Java Helle

2 years ago

[...] ???? ??????????? Javascript Toolkit Ext-JS ??????????? ??? ?????? [...]

Ext Designer Preview e post oficial

2 years ago

[...] ontem oficialmente o lançamento do Ext JS 3.0 no blog do framework. A equipe ressaltou a qualidade do trabalho e parabenizou a todos pelo [...]

Mr.?

2 years ago

???EXT??????????????????????????????????????????????????????????

Andrew

2 years ago

Well done yet again!  I’m still a Java noob so this tool will help

Burn Your To Do List

2 years ago

Great job! Hope to learn more from you.

Thanks..

todd

2 years ago

I heard EXT-JS haqs significant performance issues compared to previous releases (particularly in IE); is that true?  IF So, What is being done to address those issues

PC Repair

2 years ago

Wow, it’s amazing what people can do with Javascript. I didn’t think things like these would be possible with Javascript.

Thanks guys we shall get one of our developers to give it a go.

Ramanathan

2 years ago

Where can i download designer for EXT JS. i am new to ext js.

Amila thennakoon

2 years ago

how can i download this designer is it free

cesar p

2 years ago

I will like to get the version 3.0.0 instead of the 3.x.x to use with extpascal, but can’t find any archive information to get older versions once the new one comes out.. Does anyone know how to get a hold on the plain old 3.0.0?

Thanks

mariuz

2 years ago

The same question as above , i need to test the extpascal with extjs 3.0.0
the only version i have found is 3.1

Virgie Gair

2 years ago

Simply want to say your article is stunning. The clearness in your post is simply striking and i can take for granted you are an expert on this subject. Well with your permission allow me to grab your rss feed to keep up to date with incoming post. Thanks a million and please keep up the delightful work

les jeux gratuit

2 years ago

Look forward to using the GUI, don’t mind paying for it, as long as its not to much. Also the market place sounds like a very nice IDEA! getting apps cetified and being able to sell right here on ExtJS!

Ben 10 Mania ?zle Oyna

2 years ago

Good article and blog.

Helen Dangote

2 years ago

Thanks guys, I just put up a sample app with Extjs and would like your comments

VideoFan

2 years ago

I’ll try it. Thanks!

Site Dizini

2 years ago

Yes. Good share.

Blogcu

2 years ago

Useful.
Thanks.

Alice Lee

2 years ago

That’s very useful to me, but i have to study it to use. Thanks for your effort.

Türk Mal? ?zle

2 years ago

Realy useful.
Thanks

JenniferB

2 years ago

Great info! Saved me time

vinay

2 years ago

hey.. really nice one… thanks very useful…

??

2 years ago

Hopefully it will have code generation too.

Kennith Dresch

2 years ago

Hey, very nice website. I actually came across this on Bing, and I am really happy I did. I will definately be returning here more often. Wish I could add to the conversation and bring a bit more to the table, but am just absorbing as much info as I can at the moment.

Thank You

Houses for Sale in Drogheda

Deeanna Serandos

2 years ago

Damn, very nice website. I actually came across this on Ask Jeeves, and I am happy I did. I will definately be coming back here more often. Wish I could add to the post and bring a bit more to the table, but am just absorbing as much info as I can at the moment.

Thank You

Property For Sale Ireland

car wallpaper

2 years ago

As with every release, we will take care of our community and customers that has supported us, but there will be a fee for commercial license holders (expect a heavy discount).

online review

2 years ago

That’s very useful to me, but i have to study it to use. Thanks for your effort.

Technology meets news

2 years ago

Thanks guys, I just put up a sample app with Extjs and would like your comments

gerodoy

2 years ago

look at this site, this is one of the best files store in all internet with 15 tb of video, music and many otherfiles search . very good searching system. good luck

Yemek Tarifleri

2 years ago

Thanks.
Thats useful.

Hero 108 Oyunlar?

2 years ago

Ext Js is best man!

Gssl

2 years ago

have some problems when display the code in IE~

vasanth

1 year ago

Team, u r doing Good Work .

Barcelona Golf

8 months ago

Once you have chosen your area, selected an architect, obtained permits and received your financing it’s finally time for the construction phase. The construction phase is more than just moving land from one place to another. All decisions made at this point can affect ever aspect of the courses appeal and playability.

Comments are Gravatar enabled. Your email address will not be shown.

Commenting is not available in this channel entry.