What is the best option for creating an in-browser UI-editor? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T16:43:06Zhttp://stackoverflow.com/feeds/question/413056http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/413056/what-is-the-best-option-for-creating-an-in-browser-ui-editor1What is the best option for creating an in-browser UI-editor?Juve2009-01-05T13:16:20Z2009-01-05T15:00:58Z
<p>I want to create an simple UI-editor that can be used within the browser. It basically should have a UI-control palette and a canvas to layout and modify the controls. The resulting user-created UI model should be stored in some kind of backend and comply to an (abstract) UI description language (e.g. XForms). The UI-model should be downloadable as file (e.g. XForms document). A visual in-browser XForms-designer is probably a good example of what I want to achieve. The UI-editor should be usable cross browser.</p>
<p>Please keep in mind that i mentioned XForms only as an example. I don't want to rely on the browsers capabilities wrt. my target model. The target model (e.g. XForms) should only be used as storage format. The cross browser rendering of the desgin-time UIs in the editor should be ensured by the toolkit/framework.</p>
<p>Possible canditates are probably:</p>
<ul>
<li>GWT</li>
<li>Adobe Flex 3</li>
<li>Eclipse RAP</li>
</ul>
<p>The UI-editor will not be used in production. My focus lies on a rapid development of the editor.</p>
http://stackoverflow.com/questions/413056/what-is-the-best-option-for-creating-an-in-browser-ui-editor/413365#4133651Answer by Jeff M for What is the best option for creating an in-browser UI-editor?Jeff M2009-01-05T15:00:58Z2009-01-05T15:00:58Z<p>The <a href="http://extjs.com/" rel="nofollow">extjs</a> JavaScript library is good for implementing GUIs in JavaScript. It can also be used with Adobe AIR or Google Gears for creating offline applications, and works well with different browsers.</p>
<p>Here is an example of a GUI editor for extjs: <a href="http://tof2k.com/ext/formbuilder/" rel="nofollow">http://tof2k.com/ext/formbuilder/</a></p>