<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2900.3132" name=GENERATOR></HEAD>
<BODY>
<DIV dir=ltr align=left><FONT face="Trebuchet MS" color=#0000ff size=2><SPAN 
class=328261221-15062007>Hi there,</SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face="Trebuchet MS" color=#0000ff size=2><SPAN 
class=328261221-15062007></SPAN></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><FONT face="Trebuchet MS" color=#0000ff size=2><SPAN 
class=328261221-15062007>&nbsp;&nbsp;&nbsp; very interesting. I want to see it. 
I'm working on a little framework too to ease app develop too. 
</SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face="Trebuchet MS" color=#0000ff size=2><SPAN 
class=328261221-15062007></SPAN></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><FONT face="Trebuchet MS" color=#0000ff size=2><SPAN 
class=328261221-15062007>&nbsp;&nbsp;&nbsp; Did you guys make something to 
define the composable layout of the components?&nbsp; like the so called complex 
layout in ExtJS?</SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face="Trebuchet MS" color=#0000ff size=2><SPAN 
class=328261221-15062007>&nbsp;&nbsp;&nbsp; </SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face="Trebuchet MS" color=#0000ff size=2><SPAN 
class=328261221-15062007>&nbsp;&nbsp;&nbsp; cheers,</SPAN></FONT></DIV>
<DIV><FONT face="Trebuchet MS" color=#0000ff size=2></FONT>&nbsp;</DIV>
<DIV align=left><SPAN class=250542422-20122006>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt" align=left><?xml:namespace prefix 
= st1 ns = "urn:schemas-microsoft-com:office:smarttags" /><st1:PersonName 
ProductID="Sebastian Sastre&#13;" w:st="on"><SPAN 
style="FONT-SIZE: 10pt; FONT-FAMILY: 'Trebuchet MS'">Sebastian 
Sastre<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" 
/><o:p></o:p></SPAN></st1:PersonName></P>
<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN 
style="FONT-SIZE: 10pt; FONT-FAMILY: 'Trebuchet MS'"><o:p>&nbsp;</o:p></SPAN></SPAN><BR></P></DIV>
<BLOCKQUOTE 
style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #0000ff 2px solid; MARGIN-RIGHT: 0px">
  <DIV class=OutlookMessageHeader lang=es dir=ltr align=left>
  <HR tabIndex=-1>
  <FONT face=Tahoma size=2><B>De:</B> seaside-bounces@lists.squeakfoundation.org 
  [mailto:seaside-bounces@lists.squeakfoundation.org] <B>En nombre de 
  </B>Burella Juan M.<BR><B>Enviado el:</B> Viernes, 15 de Junio de 2007 
  15:00<BR><B>Para:</B> squeak-dev@lists.squeakfoundation.org; 
  seaside@lists.squeakfoundation.org<BR><B>Asunto:</B> [Seaside] Web controls 
  for Seaside<BR></FONT><BR></DIV>
  <DIV></DIV>In order to ease the work with our web application&nbsp; 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. &nbsp; <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. &nbsp; <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>&nbsp;&nbsp;&nbsp; 
  "Private - Answer a ListBox with the countries. If panes not includes it then 
  this is added" &nbsp; <BR><BR>&nbsp;&nbsp;&nbsp; ^self 
  &nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; paneNamed: 
  #countryList<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ifNonePut: [ 
  (SFListBox 
  new)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  printSelector: 
  #viewerString;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  styleClass: 
  'large';<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  items: self countries; &nbsp; 
  <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  label: 
  'País';<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  layout: self 
  layout;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  addItem: nil labelFrom: 
  'Ninguno';<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  when: #selectedChanged &nbsp; 
  <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  send: 
  #selectedItem<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  to: 
  self;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  yourself]<BR><BR>and it's rendered with:<BR><BR>&gt;&gt;renderContentOn: html 
  &nbsp;<BR>&nbsp;&nbsp;&nbsp; "Private - Render the receiver" &nbsp; 
  <BR>&nbsp;&nbsp; &nbsp;<BR>&nbsp;&nbsp;&nbsp; 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. 
  &nbsp; <BR><BR>Maybe this work could be interesting for someone out there. If 
  so,&nbsp; we'd have to ask our institution for permission to release a public 
  version under an appropiate licensing (GPL, LGPL, BSD, etc). 
  &nbsp;<BR><BR>Juan M. Burella, Hernán Morales and Norberto Manzanos, CAICYT 
  &nbsp; <BR><A onclick="return top.js.OpenExtLink(window,event,this)" 
  href="http://www.caicyt.gov.ar" target=_blank>http://www.caicyt.gov.ar</A> 
</BLOCKQUOTE></BODY></HTML>