<HTML><BODY style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space; ">I'm very very interested in seeing this happen. Do you have any idea how long before we might see it?<BR><DIV><DIV>On Jun 15, 2007, at 10:59 AM, Burella Juan M. wrote:</DIV><BR class="Apple-interchange-newline"><BLOCKQUOTE type="cite">In order to ease the work with our web application  we have added component support for Seaside. It's what is called "AJAX Framework" out there, although we preferred not to call it "framework" nor toolkit by now. Much of the ideas of this package are based on WindowBuilder Pro, a commercial window builder that enables visual programming.   <BR><BR>Right now we have support for most common web controls (TextField, Panel, RadioButton, TextArea, Label, Button, Anchor, CheckBoxGroup, RadioButtonGroup, ListBox, FieldSet) and we are working on a builder tool for generate Seaside components (pages) dinamically. We call it SeasideBuilder.   <BR><BR>Using our package, for example, if you want to specify a ListBox of countries you have to (without the builder):<BR><BR>&gt;&gt;countryControl<BR>    "Private - Answer a ListBox with the countries. If panes not includes it then this is added"   <BR><BR>    ^self  <BR>        paneNamed: #countryList<BR>        ifNonePut: [ (SFListBox new)<BR>                        printSelector: #viewerString;<BR>                        styleClass: 'large';<BR>                        items: self countries;   <BR>                        label: 'País';<BR>                        layout: self layout;<BR>                        addItem: nil labelFrom: 'Ninguno';<BR>                        when: #selectedChanged   <BR>                              send: #selectedItem<BR>                            to: self;<BR>                        yourself]<BR><BR>and it's rendered with:<BR><BR>&gt;&gt;renderContentOn: html  <BR>    "Private - Render the receiver"   <BR>    <BR>    html render: self countryControl<BR><BR>With the builder you'll have to pick the control you want, configure properties, preview if you want it, and finally add to a page layout tree. When the tree is already configured properly, code for the rendering and controls is compiled into the class, along with tree support for future editing with the tool, although this is under heavy developement.   <BR><BR>Maybe this work could be interesting for someone out there. If so,  we'd have to ask our institution for permission to release a public version under an appropiate licensing (GPL, LGPL, BSD, etc).  <BR><BR>Juan M. Burella, Hernán Morales and Norberto Manzanos, CAICYT   <BR><A href="http://www.caicyt.gov.ar" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://www.caicyt.gov.ar</A><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; min-height: 14px; "><BR></DIV> </BLOCKQUOTE></DIV><BR></BODY></HTML>