Artifact 91423247043e05b2723d41888ffbe7316e20858a:
- File applications/examples/controllers/spreadsheet.py — part of check-in [eba4a35a21] at 2011-08-08 04:53:38 on branch develop — Added web2py 1.98.2 (user: spiffy, size: 301) [annotate] [blame] [check-ins using]
from gluon.contrib.spreadsheet import Sheet def callback(): return cache.ram('sheet1',lambda:None,None).process(request) def index(): sheet = cache.ram('sheet1',lambda:Sheet(10,10,URL('callback')),0) #sheet.cell('r0c3',value='=r0c0+r0c1+r0c2',readonly=True) return dict(sheet=sheet)