I'am beginner and have problems with calendar component
there are no samples to show how to get any data from it
these are corrupted :( http://aspn.activestate.com/ASPN/Mail/Message/PythonCard/1500742
I try to set Monday as first day of the week:
def on_openBackground(self, event):
self.components.Calendar1.setfirstweekday(Calendar1.MONDAY)
and it doesn't work :(
how can I put date from calendat to TextField?
I tryed
self.components.TextField.text = str(self.components.Calendar1.GetDate().GetDay())
and it works but where is no documentation to describe it :(
(sorry for my english) :)
|