Ext JS Designer Preview
We are very excited to share our latest version of the Ext JS Designer. This new version adds many new features to improve your efficiency creating application designs. Once you get accustomed to these features its difficult to live without them. For those of you that don't have the time or ability to download and play around with the Designer, we have created a Preview screencast in which we mock up some interfaces. We have tried to show off as much features and functionality as possible.
New Features
- Duplicating Components
- Transforming Components
- Undo/Redo
- Configuration Searching
- Auto Updating
- Screenshots
Duplicating Components
How many times have you copied and pasted a set of source code and/or configuration and modify a couple of values to save on some keystrokes? The designer now has the same ability by providing you the ability to duplicate sets of components and then modify their values.
Take a look at this quick sample where I've leveraged the duplicate functionality to quickly build a form without dragging and dropping the components and setting up common configurations over and over.
Building a simple form:
Transforming Components
When developing you are capable of quickly changing a component from one class to another without losing your configurations by changing the class that you are extending from or instantiating.
For Example:
MyGrid = Ext.extend(Ext.grid.EditorGridPanel, { }); // or new Ext.grid.EditorGridPanel({ });
Developing in the Designer should not be any different. If after creating a GridPanel I decide that I really meant to use an EditorGridPanel. I can right click on the component within the inspector and see which transformation options are available.
A GridPanel can be transformed to an EditorGridPanel and vice-versa.
Let's put together a GridPanel. When we drag out a field for a particular column the designer intelligently knows that in order to use a TextField within a column it must convert itself to an EditorGrid. The designer will automatically perform this transformation for you.
Another interesting transformation is converting a TabPanel to a Panel and then setting the layout to accordion. Fields are capable of transforming between types.
Component Undo/Redo
If you make a mistake while putting together your application you can undo/redo the last change that was made via the Undo and Redo buttons in the top toolbar. A current limitation of this feature is that if you perform a transform on a top level component then the history is reset.
Configuration Searching
A critical feature missing in prior releases was the ability to search configurations which are available to the component you have currently selected. In the past, if you were searching for a component configuration you had to look through the entire list available! The screenshot to the right demonstrates searching for the 'la' configuration in a FormPanel.
You can now unset configurations by clicking on the x on the right hand side of the configuration. This is useful when you want to remove setting a configuration and not just set it to "".
Newly Added Components
Some of the exciting new components added are:
- EditorGrid
- ButtonGroup
- BoxComponent
- Slider
Auto-Update
We are using Adobe AIR's Auto Update framework to provide updates to the designer as we push out new public releases. When we release a new version you will be prompted to update to the latest version. You can expand out the "Release Notes" to see what enhancements and bug fixes have been made. Adobe AIR provides us the ability to quickly deploy updates to all of you as new versions are released seamlessly.
Auto Updating the Designer via Adobe AIR
Screenshots - Leveraging ActionScript within Ext JS
One feature we wanted to implement within the designer was taking screenshots of your budding prototype directly within the application. Imagine this, you quickly mock up a borderlayout complete with tabs, a grid, and a form and then click the screenshot button. You can then choose to save the screenshot of the component you've just created as a PNG. We thought that this would probably be a simple task within AIR but ended up having to do quite some digging to figure out how to accomplish it.
In order to create a screenshot of the applications current state we can use air.BitmapData to retrieve the raw bitmap data of the current screen by calling the draw method.
var capture = new air.BitmapData( window.htmlLoader.stage.stageWidth, window.htmlLoader.stage.stageHeight); capture.draw( window.htmlLoader );
The contents of the variable capture now has the raw bitmap data of our entire application. We'd like to convert this into a modern format like PNG and save it to the file system. We will use PNGEncoder from as3corelib. You can compile and use any arbitrary actionscript code to a SWF and expose it to JavaScript within Adobe AIR by including it in the page by giving it a type of application/x-shockwave-flash.
Use the mxmlc compiler from the Flex SDK to compile the code:
aaron@aaron-desktop:~/as3corelib-.92.1/src$ mxmlc -source-path=. com/adobe/images/PNGEncoder.as Loading configuration file /home/aaron/FlexSDK/frameworks/flex-config.xml /home/aaron/as3corelib-.92.1/src/com/adobe/images/PNGEncoder.swf (1242 bytes)
You can then copy the file into your project and include the file:
We can now encode the raw bitmap data and write it to the file system:
var file = air.File.documentsDirectory.resolvePath('screenshot.png');
var stream = new air.FileStream();
// Encode image captured from air.BitmapData
var png = window.runtime.com.adobe.images.PNGEncoder.encode( capture );
stream.open( file, air.FileMode.WRITE );
stream.writeBytes( png, 0, 0 );
stream.close();
When you import classes from ActionScript into your HTML App they will immediately be placed in the window.runtime namespace with their appropriate package namespaces.
Therefore our class com.adobe.images.PNGEncoder is placed in window.runtime.com.adobe.images.PNGEncoder. (As an aside this is all AIRAliases.js file which you include simply provides smaller aliases from window.runtime into the air namespace.)
When taking the screenshot we also use a clipping rectangle and the copyPixels method to to grab only the bounding rectangle of the currently active component.
Summary
We've added lots of features which should improve your productivity when building user interfaces with the designer. We hope you like our progress and as always we greatly appreciate your feedback. For those of you that have suggestions, questions, found bugs, or just want to make a remark—we are listening.


There are 201 responses. Add yours.
Tweets that mention Ext JS - Blog -- Topsy.com
4 years ago[...] This post was mentioned on Twitter by Aaron Conran. Aaron Conran said: @extjs New blog post: Ext JS Designer Preview http://bit.ly/1VkQwv #ext #xds New Features to improve productivity [...]
Medvedev
4 years agoHello, Aaron! It’s awesome app. How can I save project in JavaScript in this designer?
prometheus
4 years agoHi Medvedev, project saving ability will come in the stable release, in the time when ExtJS 3.1 released, if I knows as right.
Sergey Popov
4 years agoLooks great, looking forward to see demo with import/export and save/load functionality.
Mats
4 years agoLooks fantastic, can’t wait for the release!!
IntelliJ IDEA??????? » Blog Archive »
4 years ago[...] ExtJS??Blog??http://www.extjs.com/blog/2009/10/08/ext-js-designer-preview/????Ext JS Designer????????1.0.5???????????????????title?config??????????????????????????????????????????????????????????????? [...]
Henry
4 years agoExt JS FTW!
Troy McCabe
4 years agoIncredible upgrades to 1.0 that was previously out. Makes it _so_ much easier to do tedious tasks, or templated configs. Excited for what else is in the pipes too, you guys do great stuff!
Nickolay
4 years agoGreat work!
Will it support user extensions of different kinds (for example layouts)?
Aaron Conran
4 years agoNickolay -
Yes, it’s in the works to support user extensions of all kinds (Components, Plugins and Layouts). When we complete the marketplace infrastructure more details will follow on how to implement your own user extensions for use in the designer.
Crysfel
4 years agoAwesome!! really impressive. thank you for this update.
Eric Berens
4 years agoVery nice work Aaron and team. I have to say using the designer has helped in prototyping and debugging complex layouts. I look forward to future functionality and work on the project. Keep it up!
Paul
4 years agoNothing major but just pointing out that the “download” link above doesn’t work in Safari on the Mac. Firefox is fine.
Jonathan Griffin
4 years agoSpeechless as always!
Brian Deacon
4 years agoI’ll bite. Even after learning what a .cpgz is and figuring out how to crack it open… I still don’t see how to install this. It’s an Air app, yes? Link to some intall instructions?
Eric Berens
4 years ago@Brian
If you have Adobe Air installed (http://get.adobe.com/air/) you should be able to download the file and run it. The installer will automatically start.
Ian
4 years agoIs it just my AIR environment…but how do you actual see the JS code that gets generated from the UI you create by all the dragging and dropping? I don’t see any place or button that says view code, neither does any JS file get created in my install dirs (I’m assuming my environment is restricting this). Has anyone been able to see the generated code for their components?
Brian Deacon
4 years ago@Eric
Dunno if this happens automagically in a windows environment, but on my mac, I had to rename the .air.zip to just .air and then the extension association picked it up. (And now I just learned that .air files are just zip files with a different name…)
Claude
4 years agoGreat job Aaron!
It’s great to see Designer make so much progress. Designer has helped us complete prototypes much faster than before since we are able to visualize the components and use real data.
Keep up the god work!
Claude
4 years agoGod-like work or good work, your choice. :D
Aaron Conran
4 years ago@Ian
Code generation is not currently in the designer. This will come in the ‘Pro’ version release in a month’s time. If you’d like to take a look at what the code will look like:
http://www.extjs.com/forum/showthread.php?p=378242#post378242
@Clause lol
@Brian Did this only happen with Safari? How about Firefox?
Tof
4 years agoGood stuff!
Can we download it without Air packaging like a tar or zip file?
??
4 years ago??????????????????
Mark
4 years agoThis is fantastic. Look forward to the release!
Mark
4 years agoThis is fantastic. I look forward to the release!
nickevin
4 years ago?? ???????? ??????
friends, the generated code features are fee-charging
Gisma
4 years ago?????, ?????, ?????
Jason
4 years agoAaron you are a genius! Great stuff man.
Murat Çorlu
4 years agoThis will be great with saving or viewing design code support. Great job!
Burivuh
4 years agoThis is awesome! =)
FashionPRG
4 years ago????? ??????? ??????. ?????????? ???????????. ???????? ?? ?? ? ???????? ??????????... ????????? ??? ??????? )))
tamsuper
4 years agoi will test it now.
Ext Designer Preview | ExtDesenv
4 years ago[...] o mais novo preview do Ext Designer para deixar os membros da comunidade ainda mais ansiosos! Devo confessar que a cada lançamento de [...]
josé mauricio
4 years agoWOW!!! ExtJs rules!
josé mauricio
4 years agoextjs magic!!!
Matt Bittner
4 years agoWhen the Pro version is released, will it too require Air?
Daily del.icio.us for October 2nd through October
4 years ago[...] Ext JS Designer Preview Release – We are very excited to share our latest version of the Ext JS Designer. This new version adds many new features to improve your efficiency creating application designs. Once you get accustomed to these features its difficult to live without them. [...]
Aaron Conran
4 years ago@Matt Bittner - Yes, it will always require an install. A web version is not an option as we need to be able to write/read to the file system. It also enables us to do some pretty slick things given that we know our users *always* will have a WebKit browser and lightning fast JavaScript.
Ethan Brooks
4 years agoWill the production release be in available as in browser JavaScript that can be modified and incorporated other applications?
Nuke
4 years agoI am playing around sigma builder, it’s simple but easy to use.
But when I go deeply into programming, documentation is poor.
Anyway, this builder&it’s source could be used under LGPL license.
http://www.sigmawidgets.com/products/sigma_visual/VisualJS/index.html
Ajaxian » Ext JS Designer Preview
4 years ago[...] Conran has published a new preview of Ext JS Designer which includes the new [...]
Matt Bittner
4 years agoThanks, Aaron.
Also one thing to keep in mind. I’m not sure about others, but I know the project I’m on resides not on the “internet”, per se, but instead a different, stand-alone network. If there are others, maybe there needs to be a way to “disconnect” the designer from automatically checking whatever Ext site for updates, etc. Maybe this is already within the app and if so, my apologies for wasting time.
Aaron Conran
4 years ago@Ethan Brooks - No, we took the desktop approach which allows us to read/write to the file system and be guaranteed that we know the environment that you are running in.
@Nuke - Thanks for the link. It’s interesting to see what other people are doing in the same space.
@Matt Bittner - This shouldn’t be a problem at this point. However, we are intending to add authentication to Ext so that you can dynamically get pro features and/or access to any components that you’ve purchased in the upcoming marketplace. That may pose an issue if you are in a secure financial/government environment as you are describing.
Chester James
4 years agoMusic credits would of been nice, that’s a cool tune.
Oh yeah and the designer is looking very slick. Rock on!
Jordan Lee
4 years agoWow, looks like this will help to prototype new designs quickly. Looking forward to trying it out.
NaYi - Programación y Herramientas online »
4 years ago[...] Enlace | Ext Designer [...]
Aaron Conran
4 years ago@Chester James - Music is Pony Pony Run Run - Hey You
Dan Schad
4 years agoNice concept but the download did yield a very good experience. The layout did not run correctly in firefox and wouldn’t start at all in explorer. Very interesting to see what this will finally work like.
Aaron Conran
4 years ago@Dan Schad - You need to install the Adobe AIR runtime to use the Designer. http://get.adobe.com/air/
Ext JS Designer Preview « Articles
4 years ago[...] Conran has published a new preview of Ext JS Designer which includes the new [...]
?
4 years ago??
bill
4 years agoit feel so good ,and i like it
Joel
4 years agoLike Dan, i have Adobe Air installed but designer wont run on IE8. Running on firefox though. Love it.
chamika somasiri
4 years agocan you develop this as a EXTJS development tool
this is useless tool i don’t want to get screen shots i want to build a working application
please improve this in to EXTJS Development Tool like EXTJS IDE…
Tommy Maintz
4 years ago@Joel
The Designer is not meant to run in the browser! It is an actual desktop application that you install locally. Adobe AIR is a platform that allows you to install applications written in HTML/Javascript. It allows us to open/write to files on the filesystem, and many other things that we need to provide certain functionality. If you have Adobe Air installed, and you run the .air file we have provided, it will ask you if you want to install the Designer, where you want to install it, etc.
@chamika somasiri
Taking screenshots is just one of the functionalities that we provide. I don’t know if you have actually read anything we have explained in our blogposts, but the Designer will of course allow you to build a working UI. It will generate Javascript classes for you, not just take screenshots.
Ash
4 years agoAm new to ext-js the designer preview looks great and seems ideal for a newbie like myself, would love to install and have a play around. Are there any installation instructions around.
giuspel
4 years agoFantastic ... I look forward to the release of version 3.1.
Stupid question : The button “Load Data” for JsonStore doesn’t work? Bye
GREAT work
Cristian
4 years agoHi. Congratulation for the great work! Impressive!
A question: I want to integrate a designer in a web tool. It is possible to have a particular license (paying a fee of course) to embed ExtJs Designer in my application?
Thank you,
Cristian
man
4 years ago??????? ?????, ???????? ?????? ?????????? ? ????? ?????? ?????
Friday video: Ext JS Designer Preview « Posi
4 years ago[...] More information can be found here. [...]
Chris
4 years agoI was checking out the preview via the download. What’s up with the viewport -> borderlayout? I don’t see any regions and nothing in the component properties related to regions…
TriPToNe
4 years agoGreat stuff!
But,
- i cat’t save/load my designs,
- when I change the component layout, (especially form -> table) the new layouts component config do not appear (OSX 10.5.8, Air 1.5.2, Ext Dp 1.0.5)
- ext direct support?
I’m also glad for a form to grid transform. I’m waiting for this tool very long time… It will be part of ExtJs distribution or a separated like JSBuilderX?
ExtJs rocks! Keep good work!
xxx
4 years agoDon’t you think this is like becoming VS ASP.NET components now
Aaron Conran
4 years ago@ash - Install Adobe AIR and then download/install the .air file linked above.
@giuspel - Did you specify a url for the JsonStore? Did you specify what fields would be in the response?
@Christian - We haven’t made any decisions yet about OEMing the designer for integration with other products.
@Chris - Viewport is just a specialized container. It does not immediately mean that it is a borderlayout. Change the layout configuration to ‘border’. Then drag and drop additional panel’s into the container. They will be auto-assigned regions which you can manipulate afterwards.
@nicksaint - Yes, we will have a service that is capable of generating classes for what you design.
@TripToNe - Code generation will be part of an additional service that plugs into the designer. Could you tell us more about your problem changing layouts from form to table? Ext Direct support is coming! :D It will be a separate tool like JSBuilder. We will distribute both a free and a paid version.
Steve
4 years agoTrying to use the jsonstore and it says url has not been set. i have a local server with some json i want to use in the grid. How would i go about setting the url? I set the url to http://localhost/employees.json and it still doesn’t work what am i doing wront?
Michael
4 years agoNice job guys! Can’t wait until release. Currently, using Coolite.com for ASP.NET. Looking forward to an agnostic visual designer! Any idea when you guys will be ready for beta! I’m in!
PS - Funky bg music! Heheh
Ben
4 years agoAaron is the man! Keep up the great work. The designer is coming along nicely, can’t wait until I can see the code it generates.
Ext JS Designer IDE ??? | ???
4 years ago[...] ExtJS??Blog??http://www.extjs.com/blog/2009/10/08/ext-js-designer- preview/????Ext JS Designer????????1.0.5? [...]
Ext JS Designer 1.0.5?? | ???
4 years ago[...] ??Ext JS Designer?????http://www.extjs.com/blog/2009/10/08/ext-js-designer-preview/ [...]
Eddy
4 years agoBravo, voilà un super outil!
Ext JS Designer 1.0.5 (Preview) | ExtJS????RIA????
4 years ago[...] ExtJS???????????????????????? http://www.extjs.com/blog/2009/10/08/ext-js-designer-preview/ ExtJS Designer ? [...]
Abner
4 years agoIts getting very mature, I just tried this new version and I rellly enjoyed, but I see it’s just some demo cuz I can’t save or export the code. Anyway very nice job!
g13013
4 years agopity that it is payant, i understand why it is, seen the tremendous work that it represents and at the same time it is sad!. good work
kriz
4 years agoThere is a bug….......
While I’m adding a jsonstore to a gridpanel,then quickadding the fields,I can not add any more fields.It doesn’t work.
Tony Galfano
4 years agoThis is very impressive. I’m new to Extjs and have been exploring the various libraries hoping to find one that I can sink my teeth into and learn to integrate into my projects. This designer puts Extjs way out front for me.
I do have a question about database connectivity. Is it possible to incorporate database connectivity and field binding into the designer? For example, when setting up the project you could select the database and have the fields available for inclusion in grids, forms and other data bound elements?
Great work and I’ll most likely by a license for this great library….hope the designer release is coming soon too.
Scott Hathaway
4 years agoHello - just wanted to give feedback on your visual designer. I really like the product. I work for Bell Helicopter and we would be purchasing it along with ext js support and licenses. We would much rather pay for the tool upfront instead of a yearly fee.
Just my perspective.
Scott
jlhs5
4 years ago3 questions.
1.- When is release a version?
2.- What will it cost?
coldsore information
4 years agoLooks fantastic, can’t wait for the release!!
CA
4 years agoThe install is confusing because in IE the download link ends up saving a file named xds-1.0.5.zip, instead of the correct name of xds-1.0.5.air. A simple rename fixes this up but I suspect many people attempted to open and work with the contents of the zip.
Download and install instructions when using IE:
- Install Adobe Air: http://get.adobe.com/air/
- Save download link file with a .air extension http://extjs.com/products/extjs/download.php?dl=xds
- Run .air file
?????
4 years ago???? ?????? ???
Chris Dawes
4 years agoAt the moment it’s a little annoying not to be able to quickly add json snippets in various places to speed up things, but I guess as you mentioned, it’s coming.
You could add another tab to edit the json then click update and be back in the designer… kind of like ‘code’, ‘split’ and ‘design’ views in Dreamweaver.
Surely the community version should allow you to actually get ‘something’ out of the designer… if so what? Can I whip up layouts for free? Are you going to charge per component or by a block of components? I like to own what I pay for… so I recon you should offer pricing for both models.
Alfvin
4 years agoHi, nice app!
I created a viewport, panel, grid panel, array store and data fields
Inside Component Inspector panel (on the right), right clicking on data field.. then the context menu is stuck there forever, can’t close it. clicking new project, it’s still there..
Brent
4 years agoDesigner looks cool. But I’m not familiar with EXT JS so I’ve got a newbie question. How easy is it to link your controls to a database like MySQL? I’m from a Delphi background and would like to see controls that have a datasource so it can connect to a database table. This will allow it to display and save the contents back to the database. How easy is it to do this?
TIA
Brent
Kobyn
4 years agoIs anyway to buy the code generator for Ext JS designer preview?
Tom
4 years agoHow download Ext JS Designer Preview?
np
4 years agoquestion - how do i run / install the extjs designer?
Andrew Jones
4 years ago@Tom, @np: There is a download link in the first paragraph.
Thierry
4 years agoJust amazing, there will be no more reasons for beginners to say I dont know ExtJS enough to start a project (great example, great doc, and now great designer)
you are the best !
?
4 years ago????
?
4 years ago??????
anishanc
4 years agoCode generation is not currently in the designer.
When ‘Pro’ version will release ?
Emernet
4 years agoWhen will be available the new version?
thanks
Alex
4 years agoWhen do you plan to generate EXT GWT code from this designer?
Maybe some file.designer.java code?
Serious, efficient, complex and MVC based apps with unit testing have to use such technology or you will be in trouble ...
james
4 years agodownload?
Chris
4 years agoI read in a previous post where the guy said he would like the cost to be an up front charge and not a yearly charge. I agree with that.
lylyliu
4 years agoIt’s very great
Arno Nyhm
4 years agoit works also for GXT?
Johnson
4 years agoGreat stuff! awasome
l
4 years agoSo when is this going to be released?
kdemon
4 years agoExtjs, the best framework of javascript that I know, excelent!!!
Michael
4 years agoHello,
So is this due to be released at the end of November or in December? Very impressive product.
Michael
George
4 years agoAwesome! Great song, great framework! Great blog!!!
Ext JS Designer Preview « Mas Husni
4 years ago[...] Hingga saat ini, Ext JS hanya menyediakan aplikasi preview-nya saja, yang dapat diunduh di blog Ext JS. Atau untuk lebih singkatnya klik di sini untuk mengunduhnya.Aplikasi preview ini hanya dapat [...]
SkullTraill
3 years agoIt downloaded in the .air format… Isn’t it a program? If so, how do I use it then?
husni
3 years agoTry downloading Adobe Air runtime at here: http://get.adobe.com/air/
manfeng
3 years agoExt.fly()??????
Arul
3 years agoUsing Ext JS Designer to design a form finally how to get the source file
any one explain..
Isaias
3 years agoHello Aaron,
I did a test with this new version and found it very good. How do I save the source code and use in my applications? Do I need to buy the version to have this functionality?
Thank you.
3xc3ption
3 years agoqutoe Aaron Conran:
“Code generation is not currently in the designer. This will come in the ‘Pro’ version release in a month’s time. If you’d like to take a look at what the code will look like:
http://www.extjs.com/forum/showthread.php?p=378242#post378242”
best regards
3xc3ption
amsaid
3 years agoGreat tool! the sad part is that ExtJs license makes tool and library unusable for small companies in small countries (the license will cost me more than i can earn with it). Only the rich can get richer
Oscar
3 years agoCongratulations, great work. Thank you
Giuseppe
3 years agoWhat a great tool! Did you plan to support treeview(s)?
bruglur
3 years agoWhen will be available the PRO version with the code generation?
l
3 years agoReally, when is it going to be availabe? Can we at least have a rough date?
Ext JS - Blog
3 years ago[...] while supporting faster, more robust applications. We are also still hard at work on the Ext Designer, which we hope to debut in the next few months. Make sure to update your version today and check [...]
hguhf
3 years agoCongratulations, good job. Thank you
jeux gratuit
3 years agoplz can i copie this article to my blog???????????,
Frank
3 years agoDesigner looks good!
I did a translation of this blog post, for Chinese readers. the url???????????:
http://blog.csdn.net/zhangxin09/archive/2009/12/19/5035733.aspx
Florian
3 years agoWhat i dont get is, how can i save what i have just designed?
is there now way to get the code (config, components) out of the designer, or is this all about taking screenshots of them?
Robert
3 years agoNice Video, Terrible Song. Perhaps I’m a little conservative to listen this crap.
Sonic
3 years agoIncredible upgrades to 1.0 that was previously out. Makes it _so_ much easier to do tedious tasks, or templated configs. Excited for what else is in the pipes too, you guys do great stuff!
sam
3 years agoWe’re considering using ExtJs for new products, but we find writing user interfaces in code a time consuming and tedious task. Is there a timeframe for the release of the designer?
limin
3 years agoIt’s very good!
limin
3 years agogood!
Gabbay tecnologia desenvolvimento de sistemas
3 years agoThis is amazing. It´ll help for fast conding with greatful visual.
Gastón
3 years agoGreat job! When will be released a version with a saving option?
yaseen
3 years agoGreat work…....awesome…I am waiting for releas
Courtney
3 years agoany update on how soon this will b released. Looks amazing,
a rough idea would be cool, eg feb/march ish
anything?
this teaser is torture!
Tomy Adams
3 years agoExt JS Designer, a high-quality product. This quality of the product designers to easily access required. For this, there are various promotional and marketing methods. These result in the easiest one is the Google Ad. For this, I would recommend this site.
GoogleAds
far
3 years agowhat is the name of the song and artist?
Leon
3 years ago??-?? ?????:
http://www.sigmawidgets.com/products/sigma_visual/VisualJS/index.html
lambert
3 years agocomo puedo hacer una consulta sql y mostrar los datos en un combo
Bassam
3 years agoHow to use Array Store?
2010: The year Ext JS takes over : Ed Spencer
3 years ago[...] is being placed on helping developers create their applications much more quickly, with the help of advanced creation tools and a standardised application architecture right out of the [...]
Darwin Naranjo
3 years agoSimplemente maravilloso!
Harrison Clarity
3 years agoI could not really watch the first video I see how much I’ve gained momentum on this issue serious projects and those who want to share information please visit the website Astosoft
Tweets that mention Ext JS Designer Preview - Ext
3 years ago[...] This post was mentioned on Twitter by Sofiane HASSINE, Nils Abegg. Nils Abegg said: wysiwyg editor for web app gui using ext js library http://bit.ly/8fP1hh [...]
xiaomao101
3 years ago??????????????????
??
3 years ago????Ext
Jeff Kesselman
3 years agoIs this going to be part of the Extjs 3.x package or will it require a seperate license fee?
Jeff Kesselman
3 years agoOne more question…. I coudl not find a way to make a tree view. Is this still in development or did i miss something?
Peter
3 years ago????????????
tony
3 years agoCool! If this can run on web, that would be the best. I did find something like this, http://www.projectspace.nl/ but i,t doesn’t work well.
extjs dev
3 years agoi don’t know how to build code, i have build PNGEncoder.swf but i don’t know use it
bee
3 years ago?????????????????????????????
Bernd
3 years agoFrom another post in forum, it said the price could be $200 (per year?).
How much is it?
When will it be released?
Thanks.
Alexey
3 years agoAWESOME!
I really impressed guys, i have seen a lot of in computing technologies, but you are real gurus!!!
Good luck for you!!
Druckertinte
3 years agoYea, that´s right Alexey. Thanks for the Video and for the many usefully Questions and Answers
Anish
3 years agoWow good tool… Please add export and import facility.
Jesus Manuel Olivas
3 years agoThis tool will be released any soon ?
Jesus Manuel Olivas
Werbeagentur Regensburg
3 years agoInteresting tool i Think about to get it. greets robert
Ext JS Designer Preview | ICSOCIAL BLOG
3 years ago[...] Preview and solution click here!!! [...]
Chear
3 years agogood tool.
totti
3 years agovery good!
Softdownload
3 years agoI think this is a wonderful idea to talk about it, and I am really grateful I found your website
Sean
3 years agoAny thoughts on making a version for GXT?
Nounou
3 years agoJust discovered Ext-JS and really impressed by the product!
Bernard
3 years agoIs the tool built with ExtJS or ExtGWT?
sasaki
3 years agoWhen do you release it?
wktk
Josh Owen
3 years agoAny release date?
Rogerio
3 years agoPlease,
I just need when do you release it?
When do you release it?
William Mansfield
3 years agoI concur; Give us an estimated release date! Can’t very well plan to include it in any upcoming project expenses if we don’t have an idea on when we can have it.
Diseño Web
3 years agowow es fantástico el potencial de esta aplicación.
Vish
3 years agoHi,
can you please tell me how I can get this tool?
cars
3 years agoc’est interessant , merci pour l’info !
Laxmikant
3 years agoWhen is this product will be launched..
Anurak Ravirojana
3 years ago???????????? Very good!!!
David Winnup
3 years agoI have Pre-Ordered and my money has been taken, surely we deserve a release date emailed to us for pre-ordering?
crashT
3 years agoWhen is this product will be launched ... Can you say a Date?
Edgar
3 years agoI have bought a preorder but i deserve an mail confirmation and at least the release day :s
scabies pictures
3 years agoNice product. I’ve already view the preview and it’s a very good software must have for ajax lover.
Gigi
3 years agoI check here everyday to see if a release date has been announced. As someone said earlier, how can we include it in project expenses if we don’t know when it will be released? My boss is having me evaluate UI prototyping tools at the moment. This seems like it would be an even better candidate than a straight UI mockup tool but unless this is to release imminently, we will have to go another direction.
Gigi
3 years agoActually, looking a little closer at the demo above, I don’t see on the widgets list on the left a tree, a spinner, or even a combo box. Will these be included in the product?
Michael
3 years agoI testet the Designer preview and miss some things like the combo box, a tree. I´m thinking about the Pre-Order - does anybody know something about the release date?
herpes photos
3 years agoExcellent product should have for web developer. Thanks for your effort.
dp
3 years agoHas anyone got the release version(released today) and tried?
Looking for more details / screen shots / features before I buy this. No further information available here except a link to buy..
Waiting..
Henry_James
3 years agocool~
Air Jordan
3 years agoNice blog! There have a chance that we can have an furthur exchanges. May be we have common interests. Let’s keep in touch. Also I will always pay attention to your blog.
Rafael
3 years agoHi There,
Great tool, but the pricing for single developer is very expensive. Unfortunatelly here in Brazil there’s no way for one developer pay 219USD for a piece of software.
Leo
3 years agoHi,
I agree with Rafael, is very expensive for brazilian people =(
I’m student and want to use this great tool.
Zahnimplantate
3 years agoThanks for the fantastic Article
Feng
3 years agoI have been using the preview version and expected to use the update function to get the final release. However it looks like the packaging has changed from Adobe AIR to Qt so have to download the full installer. Any reason for the switch?
asd
3 years agoI really don’t think this will have a stand in compare to the visual studio and php editors.
Anyways good attemp.
djnGO
3 years agovery exciting indeed
JavaScript????
3 years agoQQ??84507704
Javascript????/jQuery/ExtJS
silk pajamas
3 years agoyour blog is so hot, there are so many replies. this method is so worked for me, i want to design my website. maybe i can get something for your blog. i will come here frenqutly, and learn more.
LED TV
3 years agoGreat articles & Nice a site….
??
3 years agogigirdfdf gread music~....
women's sexy pajama
3 years agoyour ground music is good
Giochi per ragazze
3 years agoI have been using the preview version and expected to use the update function to get the final release. However it looks like the packaging has changed from Adobe AIR to Qt so have to download the full installer. Any reason for the switch?
Webstandard-Blog
3 years agoAwesome, I didn’t know that it is so easy. Thx for publishing the screencast!
free 3d wallpapers
3 years ago???? ?????? ???!!
air jordam
3 years agoI have been using the preview version and expected to use the update function to get the final release. However it looks like the packaging has changed from Adobe AIR to Qt so have to download the full installer. Any reason for the
treatment for heart disease
2 years agoI ran across this post book-marked and that i definitely loved things i understand. will certainly book mark it too and in addition go through the other blogposts later on.
Juegos
2 years agoI like the interface of Ext JS Designer, looks great. Best wishes to you.
Fayaz
2 years agocan i use the ext designer for making mobile app which can be done by sencha touch…sinces snecha touch can be done with full of code and i dnt have any time…to code…so i just need an drag n drop designer for iphone apps… .
can ext designer help me?
Siki?
2 years agohttp://www.sencha.com/blog/2009/10/08/ext-js-designer-preview/
pozycjonowanie
2 years agoValuable info. Lucky me I found your site by accident, and I am shocked why this accident didn’t happened earlier! I bookmarked it.
Boat Cover
2 years agoNice website, I agree with you 100%!
tadalafil achat en Mulhouse
2 years ago<a >tadalafil achat en Limoges</a>, tadalafil 10mg en Mulhouse , tadalafil 10mg en Tours
tadalafil 10mg en Nantes , tadalafil acheter en Dijon, <a >tadalafil 10mg en Villeurbanne</a>
yavuz
2 years agothanks
Comments are Gravatar enabled. Your email address will not be shown.
Commenting is not available in this channel entry.