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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
3d8b147f
Commit
3d8b147f
authored
Aug 17, 2013
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc fix in view.md guide registerJS instead of registerScript
fixes #774
parent
9a9a9c0b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
view.md
docs/guide/view.md
+2
-2
No files found.
docs/guide/view.md
View file @
3d8b147f
...
...
@@ -207,12 +207,12 @@ page. We're using third argument so one of the views could override it.
### Registering scripts
With View object you can register scripts. There are two dedicated methods for it:
`register
Script
`
for inline scripts
With View object you can register scripts. There are two dedicated methods for it:
`register
Js
`
for inline scripts
and
`registerJsFile`
for external scripts. Inline scripts are useful for configuration and dynamically generated code.
The method for adding these can be used as follows:
```
php
$this
->
register
Script
(
"var options = "
.
json_encode
(
$options
)
.
";"
,
View
::
POS_END
,
'my-options'
);
$this
->
register
Js
(
"var options = "
.
json_encode
(
$options
)
.
";"
,
View
::
POS_END
,
'my-options'
);
```
First argument is the actual code where we're converting a PHP array of options to JavaScript one. Second argument
...
...
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