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
0a81fe66
Commit
0a81fe66
authored
10 years ago
by
Marcos García de La Fuente
Browse files
Options
Downloads
Patches
Plain Diff
Fix: [ bug #1825 ] External agenda: hide/show checkbox doesn't work
parent
6189db67
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+1
-0
1 addition, 0 deletions
ChangeLog
htdocs/core/lib/agenda.lib.php
+10
-3
10 additions, 3 deletions
htdocs/core/lib/agenda.lib.php
with
11 additions
and
3 deletions
ChangeLog
+
1
−
0
View file @
0a81fe66
...
...
@@ -21,6 +21,7 @@ English Dolibarr ChangeLog
- Fix: [ bug #1812 ] SQL Error message while sending emailing with PostgreSQL datatabase
- Fix: [ bug #1819 ] SQL error when searching for an invoice payment
- Fix: [ bug #1827 ] Tax reports gives incorrect amounts when using external modules that create lines with special codes
- Fix: [ bug #1825 ] External agenda: hide/show checkbox doesn't work
***** ChangeLog for 3.6.2 compared to 3.6.1 *****
- Fix: fix ErrorBadValueForParamNotAString error message in price customer multiprice.
...
...
This diff is collapsed.
Click to expand it.
htdocs/core/lib/agenda.lib.php
+
10
−
3
View file @
0a81fe66
...
...
@@ -144,12 +144,19 @@ function print_actions_filter($form, $canedit, $status, $year, $month, $day, $sh
foreach
(
$showextcals
as
$val
)
{
$htmlname
=
dol_string_nospecial
(
$val
[
'name'
]);
print
'<tr><td>'
;
print
'<script type="text/javascript">'
.
"
\n
"
;
//jQuery Learning "How do I select an element by an ID that has characters used in CSS notation?"
//http://learn.jquery.com/using-jquery-core/faq/how-do-i-select-an-element-by-an-id-that-has-characters-used-in-css-notation/
print
' function jq( myid ) {
return myid.replace( /(:|\.|\[|\]|,|@)/g, "\\\\$1" );
}'
;
print
'jQuery(document).ready(function () {'
.
"
\n
"
;
print
' jQuery("#check_'
.
$htmlname
.
'").click(function() {'
;
print
' /* alert("'
.
$htmlname
.
'"); */'
;
print
' jQuery(".family_'
.
$htmlname
.
'").toggle();'
;
print
' jQuery("#check_" + jq("'
.
$htmlname
.
'")).click(function() {'
;
print
' jQuery(".family_" + jq("'
.
$htmlname
.
'")).toggle();'
;
print
' });'
.
"
\n
"
;
print
'});'
.
"
\n
"
;
print
'</script>'
.
"
\n
"
;
...
...
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