Skip to content

Commit

Permalink
closing #34
Browse files Browse the repository at this point in the history
git-svn-id: https://pyjamas.svn.sourceforge.net/svnroot/pyjamas/trunk@889 7a2bd370-bda8-463c-979e-2900ccfb811e
  • Loading branch information
lkcl committed Jul 10, 2009
1 parent 5b082a5 commit e5ec32d
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@
* Allowed all widget constructors to take kwargs which will result
in the setXXXX method being called. Tuples as kwargs will result
in *args to the setXXXX method e.g.
p = HorizontalPanel(Size=("600px", "200%"),
StyleName="class-name",
Visible=False)

p = HorizontalPanel(Size=("600px", "200%"),
StyleName="class-name",
Visible=False)
is equivalent to:
p = HorizontalPanel()
p.setSize("600px", "100%")
p.setStyleName("class-name")
p.setVisible(False)
This is a strategically very significant upgrade to Pyjamas Widgets:
it dramatically simplifies the creation of applications.
Closes #34.
Expand Down

0 comments on commit e5ec32d

Please sign in to comment.