Hi,
Has anyone got an example of how to use WASelectionDateTable. I'm stuck receiving the following error:
MessageNotUnderstood: receiver of "value:value:" is nil
UndefinedObject(Object)>>doesNotUnderstand: #value:value
[] WASelectionDateTable>>renderCellForDate:row:index:on:
Code is:
initialize
|start plus1 plus2 plus3|
super initialize.
plantable := WASelectionDateTable new.
start := Date today.
plus1 := start addDays: 1.
plus2 := start addDays: 2.
plus3 := start addDays: 3.
plantable startDate: start.
plantable endDate: (start addDays: 3).
aCollection := Dictionary new.
aCollection add: start -> 'One';add: plus1 -> 'Two'; add: plus2 -> 'Three'; add: plus3 -> 'Four';yourself.
plantable rows: aCollection.
renderContentOn: html
html render: plantable
Thanks
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside