-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrated a bunch of samples to use the CSS binding rather than manual…
… binds
- Loading branch information
1 parent
2bb980e
commit 689136b
Showing
8 changed files
with
32 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
<lift:surround with="single_bind" at="content"> | ||
<h1>Cookies</h1> | ||
|
||
<p>Attempted looking for cookie: <strong><lift:cookie_sample /></strong></p> | ||
<p>Attempted looking for cookie: <strong lift="cookie_sample">Cookie Name</strong></p> | ||
<p> | ||
<lift:cookie_sample.add form="post"><c:button /></lift:cookie_sample.add> | ||
<input type="button" lift="cookie_sample.add?form=post" /> | ||
<br /> | ||
<lift:cookie_sample.delete form="post"><c:button /></lift:cookie_sample.delete> | ||
<input type="button" lift="cookie_sample.delete?form=post" /> | ||
</p> | ||
</lift:surround> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
<lift:surround with="single_bind" at="content"> | ||
<h2>RequestVar sample</h2> | ||
|
||
<lift:request_var_sample form="post"> | ||
<p><f:value /> <f:submit /></p> | ||
</lift:request_var_sample> | ||
<form lift="request_var_sample?form=post"> | ||
<p><input type="text" /><br /> | ||
<input type="submit" /></p> | ||
</form> | ||
|
||
</lift:surround> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
<lift:surround with="single_bind" at="content"> | ||
<h1>Auto Complete Widget</h1> | ||
|
||
<lift:auto_complete_sample.sample form="post"> | ||
<form lift="auto_complete_sample.sample?form=post"> | ||
<p>Type a name here: <f:find_name /></p> | ||
</lift:auto_complete_sample.sample> | ||
|
||
</form> | ||
</lift:surround> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters