From 4231724ebf446331ecd9bc03f891737ea4f14a5d Mon Sep 17 00:00:00 2001 From: docsolver Date: Sun, 17 Nov 2013 00:14:02 +0100 Subject: [PATCH] Clarification about clientOptions and using JUI in AR form I accidentally made this pull request in the read-only JUI repo, so I'm doing it again here. --- extensions/jui/README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/extensions/jui/README.md b/extensions/jui/README.md index f76d88e..f197c8c 100644 --- a/extensions/jui/README.md +++ b/extensions/jui/README.md @@ -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: ```php - 'start']) ?> + 'attributeName']) ?> +``` + +Configuring the Jquery UI options should be done using the clientOptions attribute: +```php + '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 +field($model,'attributeName')->widget(DatePicker::className(),['clientOptions' => ['dateFormat' => 'yy-mm-dd']]) ?> ```