Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
morpheus.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Daria Zenkova
morpheus.js
Commits
66328feb
Commit
66328feb
authored
Apr 01, 2016
by
joshua-gould
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added search and autocomplete methods
parent
216d55d5
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
207 additions
and
125 deletions
+207
-125
src/ui/checkbox_list.js
src/ui/checkbox_list.js
+6
-0
src/ui/table.js
src/ui/table.js
+201
-125
No files found.
src/ui/checkbox_list.js
View file @
66328feb
...
@@ -180,6 +180,12 @@ morpheus.CheckBoxList = function(options) {
...
@@ -180,6 +180,12 @@ morpheus.CheckBoxList = function(options) {
};
};
morpheus
.
CheckBoxList
.
prototype
=
{
morpheus
.
CheckBoxList
.
prototype
=
{
searchWithPredicates
:
function
(
predicates
)
{
this
.
table
.
searchWithPredicates
(
predicates
);
},
autocomplete
:
function
(
tokens
,
cb
)
{
this
.
table
.
autocomplete
(
tokens
,
cb
);
},
setHeight
:
function
(
height
)
{
setHeight
:
function
(
height
)
{
this
.
table
.
setHeight
(
height
);
this
.
table
.
setHeight
(
height
);
},
},
...
...
src/ui/table.js
View file @
66328feb
This diff is collapsed.
Click to expand it.
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