Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
548ff266
Commit
548ff266
authored
9 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Focus on textarea works also when ckeditor is on
parent
2a345b6f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/core/tpl/objectline_create.tpl.php
+24
-4
24 additions, 4 deletions
htdocs/core/tpl/objectline_create.tpl.php
with
24 additions
and
4 deletions
htdocs/core/tpl/objectline_create.tpl.php
+
24
−
4
View file @
548ff266
...
...
@@ -138,7 +138,8 @@ else {
// Show type selector
if
(
$forceall
>=
0
)
{
echo
$langs
->
trans
(
"FreeLineOfType"
);
if
(
empty
(
$conf
->
product
->
enabled
)
||
empty
(
$conf
->
service
->
enabled
))
echo
$langs
->
trans
(
"Type"
);
else
echo
$langs
->
trans
(
"FreeLineOfType"
);
echo
' '
;
}
}
...
...
@@ -512,7 +513,17 @@ jQuery(document).ready(function() {
$
(
"
#select_type
"
).
change
(
function
()
{
setforfree
();
if
(
jQuery
(
'
#select_type
'
).
val
()
>=
0
)
jQuery
(
'
#dp_desc
'
).
focus
();
if
(
jQuery
(
'
#select_type
'
).
val
()
>=
0
)
{
/* focus work on a standard textarea but not if field was replaced with CKEDITOR */
jQuery
(
'
#dp_desc
'
).
focus
();
/* focus if CKEDITOR */
if
(
CKEDITOR
)
{
var
editor
=
CKEDITOR
.
instances
[
'
dp_desc
'
];
if
(
editor
)
{
editor
.
focus
();
}
}
}
if
(
jQuery
(
'
#select_type
'
).
val
()
==
'
0
'
)
jQuery
(
'
#trlinefordates
'
).
hide
();
else
jQuery
(
'
#trlinefordates
'
).
show
();
});
...
...
@@ -608,8 +619,17 @@ jQuery(document).ready(function() {
<?php
}
?>
/* To set focus */
if
(
jQuery
(
'
#idprod
'
).
val
()
>
0
)
jQuery
(
'
#dp_desc
'
).
focus
();
if
(
jQuery
(
'
#idprodfournprice
'
).
val
()
>
0
)
jQuery
(
'
#dp_desc
'
).
focus
();
if
(
jQuery
(
'
#idprod
'
).
val
()
>
0
||
jQuery
(
'
#idprodfournprice
'
).
val
()
>
0
)
{
/* focus work on a standard textarea but not if field was replaced with CKEDITOR */
jQuery
(
'
#dp_desc
'
).
focus
();
/* focus if CKEDITOR */
if
(
CKEDITOR
)
{
var
editor
=
CKEDITOR
.
instances
[
'
dp_desc
'
];
if
(
editor
)
{
editor
.
focus
();
}
}
}
});
<?php
if
(
GETPOST
(
'prod_entry_mode'
)
==
'predef'
)
{
// When we submit with a predef product and it fails we must start with predef ?>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment