[Seaside] More S-Exprs

Jim Benson jb@speed.net
Tue, 28 May 2002 12:41:43 -0700


Oops, Retry:

Another S-Exprs question:

I want to convert:

html
 ^ '
 [date] [time]
 <form sea:id="reload">
 <iadateselector sea:id="date"></iadateselector>
 <iatimeselector sea:id="time"></iatimeselector>
 <input type="submit">
 </form>
 <form sea:id="reload">
 <input type="checkbox" sea:id="twentyFourHour">24 Hour Clock 
 <input type="submit" value="Change">
 '

to S-Expr form. How do I handle the line:
 
  [date] [time]
 
 As I understand it, the first element in the S-Expr array is treated as a
 tag. How do you trick it?
 
 Jim