Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
4e32b775
Commit
4e32b775
authored
Nov 16, 2013
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1211 from docsolver/patch-1
JUI readme: Clarification about clientOptions and using JUI in AR form
parents
5fc51f1a
4231724e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
README.md
extensions/jui/README.md
+11
-1
No files found.
extensions/jui/README.md
View file @
4e32b775
...
@@ -6,7 +6,17 @@ and makes using JQuery UI widgets in Yii applications extremely easy. For exampl
...
@@ -6,7 +6,17 @@ and makes using JQuery UI widgets in Yii applications extremely easy. For exampl
single line of code in a view file would render a JQuery UI DatePicker widget:
single line of code in a view file would render a JQuery UI DatePicker widget:
```
php
```
php
<?=
yii\jui\DatePicker
::
widget
([
'name'
=>
'start'
])
?>
<?=
yii\jui\DatePicker
::
widget
([
'name'
=>
'attributeName'
])
?>
```
Configuring the Jquery UI options should be done using the clientOptions attribute:
```
php
<?=
yii\jui\DatePicker
::
widget
([
'name'
=>
'attributeName'
,
'clientOptions'
=>
[
'dateFormat'
=>
'yy-mm-dd'
]])
?>
```
If you want to use the JUI widget in an ActiveRecord form, it can be done like this:
```
php
<?=
$form
->
field
(
$model
,
'attributeName'
)
->
widget
(
DatePicker
::
className
(),[
'clientOptions'
=>
[
'dateFormat'
=>
'yy-mm-dd'
]])
?>
```
```
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment