Tagged Questions
3
votes
1answer
69 views
Reporting on Seaside Sessions, such as time to expirey
How do I display a report showing all current seaside sessions along with their expected expiry time?
self session application sessionsDo: [:each |
html text: 'Session For ',((each properties values ...
4
votes
1answer
142 views
Updating embeded components in seaside, without refreshing the whole page
I have a component (ItemTree) which has 3 embeded components. The first (ItemTreeList) is a list of items to select. The second (ItemGIDE) shows properties for the item you selected.
How do I tell ...