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
935ab042
Commit
935ab042
authored
Jun 26, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3811 from mitalcoi/master
add autocomplete for model class field
parents
281b71aa
4f57fdb5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
0 deletions
+15
-0
CHANGELOG.md
extensions/gii/CHANGELOG.md
+1
-0
gii.js
extensions/gii/assets/gii.js
+13
-0
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
No files found.
extensions/gii/CHANGELOG.md
View file @
935ab042
...
...
@@ -4,6 +4,7 @@ Yii Framework 2 gii extension Change Log
2.
0.0-rc under development
--------------------------
-
Enh #3811: Now Gii model generator makes autocomplete for model class field (mitalcoi)
-
Bug #1263: Fixed the issue that Gii and Debug modules might be affected by incompatible asset manager configuration (qiangxue)
-
Bug #2314: Gii model generator does not generate correct relation type in some special case (qiangxue)
-
Bug #3265: Fixed incorrect controller class name validation (suralc)
...
...
extensions/gii/assets/gii.js
View file @
935ab042
...
...
@@ -151,6 +151,19 @@ yii.gii = (function ($) {
$
(
'#model-generator .field-generator-modelclass'
).
toggle
(
$
(
this
).
val
().
indexOf
(
'*'
)
==
-
1
);
}).
change
();
//model generator: translate table name to model class
$
(
'#generator-tablename'
).
on
(
'blur'
,
function
()
{
var
tableName
=
$
(
this
).
val
();
if
(
$
(
'#generator-modelclass'
).
val
()
==
''
&&
tableName
&&
tableName
.
indexOf
(
'*'
)
===
-
1
){
var
modelClass
=
''
;
$
.
each
(
tableName
.
split
(
'_'
),
function
()
{
if
(
this
.
length
>
0
)
modelClass
+=
this
.
substring
(
0
,
1
).
toUpperCase
()
+
this
.
substring
(
1
);
});
$
(
'#generator-modelclass'
).
val
(
modelClass
);
}
});
// hide message category when I18N is disabled
$
(
'form #generator-enablei18n'
).
change
(
function
()
{
$
(
'form .field-generator-messagecategory'
).
toggle
(
$
(
this
).
is
(
':checked'
));
...
...
framework/CHANGELOG.md
View file @
935ab042
...
...
@@ -4,6 +4,7 @@ Yii Framework 2 Change Log
2.
0.0-rc under development
--------------------------
-
Enh #3811: Now Gii model generator makes autocomplete for model class field (mitalcoi)
-
Bug #1263: Fixed the issue that Gii and Debug modules might be affected by incompatible asset manager configuration (qiangxue)
-
Bug #2314: Gii model generator does not generate correct relation type in some special case (qiangxue)
-
Bug #2563: Theming is not working if the path map of the theme contains ".." or "." in the paths (qiangxue)
...
...
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