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
b99151fb
Commit
b99151fb
authored
8 years ago
by
kevalbhatt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-1628 Restrict user from entering text in datepicker input
parent
a4b16bba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
CreateEntityLayoutView.js
dashboardv2/public/js/views/entity/CreateEntityLayoutView.js
+8
-2
release-log.txt
release-log.txt
+1
-0
No files found.
dashboardv2/public/js/views/entity/CreateEntityLayoutView.js
View file @
b99151fb
...
@@ -406,8 +406,14 @@ define(['require',
...
@@ -406,8 +406,14 @@ define(['require',
removeText
(
e
,
e
.
currentTarget
.
value
);
removeText
(
e
,
e
.
currentTarget
.
value
);
});
});
this
.
$
(
'input[data-type="date"]'
).
on
(
'dp.hide'
,
function
()
{
this
.
$
(
'input[data-type="date"]'
).
on
(
'dp.hide keydown'
,
function
(
event
)
{
this
.
blur
();
if
(
event
.
type
)
{
if
(
event
.
type
==
'dp'
)
{
this
.
blur
();
}
else
if
(
event
.
type
==
'keydown'
)
{
return
false
;
}
}
});
});
},
},
getContainer
:
function
(
value
)
{
getContainer
:
function
(
value
)
{
...
...
This diff is collapsed.
Click to expand it.
release-log.txt
View file @
b99151fb
...
@@ -9,6 +9,7 @@ ATLAS-1060 Add composite indexes for exact match performance improvements for al
...
@@ -9,6 +9,7 @@ ATLAS-1060 Add composite indexes for exact match performance improvements for al
ATLAS-1127 Modify creation and modification timestamps to Date instead of Long(sumasai)
ATLAS-1127 Modify creation and modification timestamps to Date instead of Long(sumasai)
ALL CHANGES:
ALL CHANGES:
ATLAS-1628 Restrict user from entering text in datepicker input (kevalbhatt)
ATLAS-1538 Make AtlasLdapAuthenticationProvider like Ranger for OpenLdap type (nixonrodrigues via kevalbhatt)
ATLAS-1538 Make AtlasLdapAuthenticationProvider like Ranger for OpenLdap type (nixonrodrigues via kevalbhatt)
ATLAS-1605 Edit Entity in UI : Update button is not enabled when updating attribute of type date (Kalyanikashikar via kevalbhatt)
ATLAS-1605 Edit Entity in UI : Update button is not enabled when updating attribute of type date (Kalyanikashikar via kevalbhatt)
ATLAS-1595:Create Entity in UI : All attributes are not listed for hdfs_path. (Kalyanikashikar via kevalbhatt)
ATLAS-1595:Create Entity in UI : All attributes are not listed for hdfs_path. (Kalyanikashikar via kevalbhatt)
...
...
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