Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
guns-vip
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenjunxiong
guns-vip
Commits
0c951c57
Commit
0c951c57
authored
Jun 15, 2017
by
stylefeng
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request !9 from liujiliang2008/master
parents
2e05768f
1c84f7e4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
+6
-1
src/main/webapp/static/js/plugins/jquery-treegrid/extension/jquery.treegrid.extension.js
+6
-1
No files found.
src/main/webapp/static/js/plugins/jquery-treegrid/extension/jquery.treegrid.extension.js
View file @
0c951c57
...
@@ -83,7 +83,12 @@
...
@@ -83,7 +83,12 @@
tr
.
append
(
td
);
tr
.
append
(
td
);
}
else
{
}
else
{
var
td
=
$
(
'<td style="'
+
((
column
.
width
)?(
'width:'
+
column
.
width
):
''
)
+
'"></td>'
);
var
td
=
$
(
'<td style="'
+
((
column
.
width
)?(
'width:'
+
column
.
width
):
''
)
+
'"></td>'
);
td
.
text
(
item
[
column
.
field
]);
// 增加formatter渲染
if
(
column
.
formatter
)
{
td
.
html
(
column
.
formatter
.
call
(
this
,
''
,
item
,
index
));
}
else
{
td
.
text
(
item
[
column
.
field
]);
}
tr
.
append
(
td
);
tr
.
append
(
td
);
}
}
});
});
...
...
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