Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
iv
erp5
Commits
9ffc7c80
Commit
9ffc7c80
authored
Oct 19, 2016
by
Romain Courteaud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[erp5_web_renderjs_ui] Support Firefox non implementation of date input
parent
b306c8f7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
3 deletions
+22
-3
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_html5_input_js.js
...TemplateItem/web_page_module/rjs_gadget_html5_input_js.js
+20
-1
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_html5_input_js.xml
...emplateItem/web_page_module/rjs_gadget_html5_input_js.xml
+2
-2
No files found.
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_html5_input_js.js
View file @
9ffc7c80
...
...
@@ -96,10 +96,29 @@
.
declareAcquiredMethod
(
"
notifyValid
"
,
"
notifyValid
"
)
.
declareMethod
(
'
checkValidity
'
,
function
()
{
var
result
=
this
.
element
.
querySelector
(
'
input
'
).
checkValidity
();
var
result
=
this
.
element
.
querySelector
(
'
input
'
).
checkValidity
(),
gadget
=
this
;
if
(
result
)
{
return
this
.
notifyValid
()
.
push
(
function
()
{
var
date
,
value
;
if
(
!
result
)
{
return
result
;
}
if
((
gadget
.
state
.
type
===
'
date
'
)
||
(
gadget
.
state
.
type
===
'
datetime-local
'
))
{
value
=
gadget
.
element
.
querySelector
(
'
input
'
).
value
;
if
(
value
)
{
date
=
Date
.
parse
(
value
);
if
(
isNaN
(
date
))
{
return
gadget
.
notifyInvalid
(
"
Invalid DateTime
"
)
.
push
(
function
()
{
return
false
;
});
}
}
}
return
result
;
});
}
...
...
bt5/erp5_web_renderjs_ui/PathTemplateItem/web_page_module/rjs_gadget_html5_input_js.xml
View file @
9ffc7c80
...
...
@@ -230,7 +230,7 @@
</item>
<item>
<key>
<string>
serial
</string>
</key>
<value>
<string>
954.
35863.52273.29354
</string>
</value>
<value>
<string>
954.
45675.44850.53452
</string>
</value>
</item>
<item>
<key>
<string>
state
</string>
</key>
...
...
@@ -248,7 +248,7 @@
</tuple>
<state>
<tuple>
<float>
1476
697276.8
</float>
<float>
1476
869880.85
</float>
<string>
UTC
</string>
</tuple>
</state>
...
...
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