コード例 #1
0
ファイル: DynaTable.py プロジェクト: pombredanne/pyjamas-1
 def onModuleLoad(self):
     slot = RootPanel("calendar")
     Window.alert("slot:" + slot)
     if slot:
         calendar = SchoolCalendarWidget(15)
         Window.alert(len(slot.children))
         Window.alert(slot.children)
         slot.add(calendar)
         
         slot = RootPanel("days")
         if slot:
             filterWidget = DayFilterWidget(calendar)
             slot.add(filterWidget)
コード例 #2
0
ファイル: Hello.py プロジェクト: pombredanne/pyjamas-1
def greet(sender):
    Window.alert("Hello, AJAX!")