summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/JuiControls/Samples
diff options
context:
space:
mode:
authorJens Klaer <kj.landwehr.software@gmail.com>2015-10-14 14:12:18 +0200
committerJens Klaer <kj.landwehr.software@gmail.com>2015-10-14 14:12:18 +0200
commit3a90a37ca45f91d9f314eaa1f7e86c056e56e7bb (patch)
tree61c56713ac69fa0a1f00f879fcb73a4bc2d78f6e /demos/quickstart/protected/pages/JuiControls/Samples
parent7ec5cb6a6ef106c9662905988697045dcd0f378a (diff)
Added TJuiDatePicker
an alternative datepicker control using the datepicker widget from jqueryui
Diffstat (limited to 'demos/quickstart/protected/pages/JuiControls/Samples')
-rw-r--r--demos/quickstart/protected/pages/JuiControls/Samples/TJuiDatePicker/Home.page65
-rw-r--r--demos/quickstart/protected/pages/JuiControls/Samples/TJuiDatePicker/Home.php30
2 files changed, 95 insertions, 0 deletions
diff --git a/demos/quickstart/protected/pages/JuiControls/Samples/TJuiDatePicker/Home.page b/demos/quickstart/protected/pages/JuiControls/Samples/TJuiDatePicker/Home.page
new file mode 100644
index 00000000..3c2d3141
--- /dev/null
+++ b/demos/quickstart/protected/pages/JuiControls/Samples/TJuiDatePicker/Home.page
@@ -0,0 +1,65 @@
+<com:TContent ID="body">
+<h1>TJuiDatePicker Samples</h1>
+
+<table class="sampletable">
+
+<tr><td class="samplenote">
+Simple TJuiDatePicker:
+</td><td class="sampleaction">
+<com:TJuiDatePicker ID="dp1" />
+</td></tr>
+
+<tr><td class="samplenote">
+TJuiDatePicker with TRequiredFieldValidator:
+</td><td class="sampleaction">
+<com:TJuiDatePicker ID="dp2" />
+<com:TRequiredFieldValidator
+ ValidationGroup="vg2"
+ ControlToValidate="dp2"
+ Text="Field required." />
+<com:TButton Text="Submit" ValidationGroup="vg2" />
+</td></tr>
+
+<tr><td class="samplenote">
+TJuiDatePicker with TDataTypeValidator:
+</td><td class="sampleaction">
+<com:TJuiDatePicker ID="dp3" Options.dateFormat="yy-mm-dd" />
+<com:TDataTypeValidator
+ ValidationGroup="vg3"
+ ControlToValidate="dp3"
+ DataType="Date"
+ DateFormat="yyyy-MM-dd"
+ Text="You must enter a valid date (yyyy-MM-dd)." />
+<com:TButton Text="Submit" ValidationGroup="vg3" />
+</td></tr>
+
+<tr><td class="samplenote">
+TJuiDatePicker with animation:
+</td><td class="sampleaction">
+<com:TJuiDatePicker ID="dp4" Options.dateFormat="yy-mm-dd" />
+<com:TActiveDropDownList OnSelectedIndexChanged="change4">
+ <com:TListItem Value="show" Text="Show (default)" Selected="true" />
+ <com:TListItem Value="slideDown" Text="Slide down" />
+ <com:TListItem Value="fadeIn" Text="Fade in" />
+ <com:TListItem Value="blind" Text="Blind (UI Effect)" />
+ <com:TListItem Value="bounce" Text="Bounce (UI Effect)" />
+ <com:TListItem Value="clip" Text="Clip (UI Effect)" />
+ <com:TListItem Value="drop" Text="Drop (UI Effect)" />
+ <com:TListItem Value="fold" Text="Fold (UI Effect)" />
+ <com:TListItem Value="slide" Text="Slide (UI Effect)" />
+</com:TActiveDropDownList>
+</td></tr>
+
+<tr><td class="samplenote">
+Change options of TJuiDatePicker during callback:
+</td><td class="sampleaction">
+<div><com:TJuiDatePicker ID="dp5" /></div>
+<div><com:TActiveCheckBox OnCheckedChanged="change5" Value="button" /> show button bar</div>
+<div><com:TActiveCheckBox OnCheckedChanged="change5" Value="menu" /> display year & month menus</div>
+<div><com:TActiveCheckBox OnCheckedChanged="change5" Value="week" /> show week of year</div>
+<div><com:TActiveCheckBox OnCheckedChanged="change5" Value="month" /> show 3 months</div>
+</td></tr>
+
+</table>
+
+</com:TContent>
diff --git a/demos/quickstart/protected/pages/JuiControls/Samples/TJuiDatePicker/Home.php b/demos/quickstart/protected/pages/JuiControls/Samples/TJuiDatePicker/Home.php
new file mode 100644
index 00000000..5126f68e
--- /dev/null
+++ b/demos/quickstart/protected/pages/JuiControls/Samples/TJuiDatePicker/Home.php
@@ -0,0 +1,30 @@
+<?php
+
+class Home extends TPage
+{
+
+ public function change4($sender, $param)
+ {
+ $this->dp4->getOptions()->showAnim = $sender->getSelectedValue();
+ }
+
+ public function change5($sender, $param)
+ {
+ $value = $sender->getValue();
+ switch ($value) {
+ case 'button':
+ $this->dp5->getOptions()->showButtonPanel = $sender->getChecked();
+ break;
+ case 'menu':
+ $this->dp5->getOptions()->changeYear = $this->dp5->getOptions()->changeMonth = $sender->getChecked();
+ break;
+ case 'week':
+ $this->dp5->getOptions()->showWeek = $sender->getChecked();
+ break;
+ case 'month':
+ $this->dp5->getOptions()->numberOfMonths = $sender->getChecked() ? 3 : 1;
+ break;
+ }
+ }
+
+} \ No newline at end of file