What are the differences between the three Smalltalk web application frameworks?
Some starting points:
What is the sweet spot for each framework? in Which case would you use one or the other?
What are their weaknesses?
Which one has the cleanest…
To me it seems the main point of Seaside is that it is more like normal "desktop" programming.
The control flow looks much more like "traditional" programming instead of
"web" programming. Is that a correct impression?
I know it's about Web…
I'm trying to add an in-place editable field to a web grid like this:
WebGrid new
columnNames: #('Test');
columnAspects: #(nil);
column: 1 addBlock: [:o | WebInPlaceEditableText aspect: #test for: o];
collection: self objects.
However, when…
Newbee question - I am trying to learn Aida from the 6.0 version for Dolphin Smalltalk using the tutorial for Pharao (I think). I know Smalltalk quite well but I am new to Web.
From AIDA tutorial:
**3. Registering a root domain object
After our…
I create the following WebElement:
WebNonHTMLResource forText: ('This is', Character cr asString, 'a test')
However, when this is displayed in the browser, the text will look like this:
This is a test
The carriage return has not been taken into…
I am working on the Aida tutorial:
http://www.aidaweb.si/tutorial
but I got stuck on the end of the second section:
In a workplace make an instance of ADemoAddressBook and fill it with
a few example ADemoAddresses:
Should I add an Instance…
When AIDA sends a textstring to my FireFox or chrome browsers containing danish chars eg. ø(o/) or Æ (AE) they are displayed as �. I have tried:
(AIDASite named:'PIYHsite')defaultLanguage:'DA'
And controlled site settings in the site, it reads:…