Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
a1d54d65
Commit
a1d54d65
authored
Jun 08, 2016
by
Hemanth Yamijala
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-870 Add search feature while associating Tags / Terms with entity.…
ATLAS-870 Add search feature while associating Tags / Terms with entity. (Kalyanikashikar via yhemanth)
parent
0901714a
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
4 deletions
+14
-4
AddTermToEntityLayoutView.js
...ic/js/views/business_catalog/AddTermToEntityLayoutView.js
+9
-4
addTagModalView.js
dashboardv2/public/js/views/tag/addTagModalView.js
+4
-0
release-log.txt
release-log.txt
+1
-0
No files found.
dashboardv2/public/js/views/business_catalog/AddTermToEntityLayoutView.js
View file @
a1d54d65
...
@@ -21,8 +21,9 @@ define(['require',
...
@@ -21,8 +21,9 @@ define(['require',
'hbs!tmpl/business_catalog/AddTermToEntityLayoutView_tmpl'
,
'hbs!tmpl/business_catalog/AddTermToEntityLayoutView_tmpl'
,
'utils/Utils'
,
'utils/Utils'
,
'modules/Modal'
,
'modules/Modal'
,
'collection/VCatalogList'
'collection/VCatalogList'
,
],
function
(
require
,
Backbone
,
AddTermToEntityLayoutViewTmpl
,
Utils
,
Modal
,
VCatalogList
)
{
'utils/Messages'
],
function
(
require
,
Backbone
,
AddTermToEntityLayoutViewTmpl
,
Utils
,
Modal
,
VCatalogList
,
Messages
)
{
'use strict'
;
'use strict'
;
var
AddTermToEntityLayoutView
=
Backbone
.
Marionette
.
LayoutView
.
extend
(
var
AddTermToEntityLayoutView
=
Backbone
.
Marionette
.
LayoutView
.
extend
(
...
@@ -101,6 +102,10 @@ define(['require',
...
@@ -101,6 +102,10 @@ define(['require',
terms
+=
'<option value="'
+
obj
.
get
(
'name'
)
+
'">'
+
obj
.
get
(
'name'
)
+
'</option>'
;
terms
+=
'<option value="'
+
obj
.
get
(
'name'
)
+
'">'
+
obj
.
get
(
'name'
)
+
'</option>'
;
});
});
this
.
ui
.
addTermOptions
.
html
(
terms
);
this
.
ui
.
addTermOptions
.
html
(
terms
);
this
.
ui
.
addTermOptions
.
select2
({
placeholder
:
"Select Term"
,
allowClear
:
true
});
},
},
saveTermToAsset
:
function
()
{
saveTermToAsset
:
function
()
{
var
that
=
this
;
var
that
=
this
;
...
@@ -112,7 +117,7 @@ define(['require',
...
@@ -112,7 +117,7 @@ define(['require',
beforeSend
:
function
()
{},
beforeSend
:
function
()
{},
success
:
function
(
data
)
{
success
:
function
(
data
)
{
Utils
.
notifySuccess
({
Utils
.
notifySuccess
({
content
:
"Term "
+
that
.
ui
.
addTermOptions
.
val
()
+
" has been added to entity"
content
:
"Term "
+
that
.
ui
.
addTermOptions
.
val
()
+
Messages
.
addTermToEntitySuccessMessage
});
});
if
(
that
.
callback
)
{
if
(
that
.
callback
)
{
that
.
callback
();
that
.
callback
();
...
@@ -125,7 +130,7 @@ define(['require',
...
@@ -125,7 +130,7 @@ define(['require',
if
(
data
&&
data
.
responseText
)
{
if
(
data
&&
data
.
responseText
)
{
var
data
=
JSON
.
parse
(
data
.
responseText
);
var
data
=
JSON
.
parse
(
data
.
responseText
);
Utils
.
notifyError
({
Utils
.
notifyError
({
content
:
data
.
message
content
:
data
.
message
s
});
});
}
}
},
},
...
...
dashboardv2/public/js/views/tag/addTagModalView.js
View file @
a1d54d65
...
@@ -87,6 +87,10 @@ define(['require',
...
@@ -87,6 +87,10 @@ define(['require',
}
}
});
});
this
.
ui
.
addTagOptions
.
html
(
str
);
this
.
ui
.
addTagOptions
.
html
(
str
);
this
.
ui
.
addTagOptions
.
select2
({
placeholder
:
"Select Tag"
,
allowClear
:
true
});
},
},
onChangeTagDefination
:
function
()
{
onChangeTagDefination
:
function
()
{
this
.
ui
.
tagAttribute
.
empty
();
this
.
ui
.
tagAttribute
.
empty
();
...
...
release-log.txt
View file @
a1d54d65
...
@@ -22,6 +22,7 @@ ATLAS-409 Atlas will not import avro tables with schema read from a file (dosset
...
@@ -22,6 +22,7 @@ ATLAS-409 Atlas will not import avro tables with schema read from a file (dosset
ATLAS-379 Create sqoop and falcon metadata addons (venkatnrangan,bvellanki,sowmyaramesh via shwethags)
ATLAS-379 Create sqoop and falcon metadata addons (venkatnrangan,bvellanki,sowmyaramesh via shwethags)
ALL CHANGES:
ALL CHANGES:
ATLAS-870 Add search feature while associating Tags / Terms with entity. (Kalyanikashikar via yhemanth)
ATLAS-865 Edit description functionality for Tags (kevalbhatt18 via yhemanth)
ATLAS-865 Edit description functionality for Tags (kevalbhatt18 via yhemanth)
ATLAS-820 Kerberized env: Authentication failing (nixonrodrigues via yhemanth)
ATLAS-820 Kerberized env: Authentication failing (nixonrodrigues via yhemanth)
ATLAS-852 Change Default landing page to taxonomy (kevalbhatt18 via yhemanth)
ATLAS-852 Change Default landing page to taxonomy (kevalbhatt18 via yhemanth)
...
...
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