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
e713c8da
Commit
e713c8da
authored
10 years ago
by
Regis Houssin
Browse files
Options
Downloads
Patches
Plain Diff
Fix: broken feature: add param for use only "disabled" with delConstant
and "enabled" with setConstant
parent
f392eb4c
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
htdocs/core/js/lib_head.js
+12
-9
12 additions, 9 deletions
htdocs/core/js/lib_head.js
htdocs/core/lib/ajax.lib.php
+6
-4
6 additions, 4 deletions
htdocs/core/lib/ajax.lib.php
with
18 additions
and
13 deletions
htdocs/core/js/lib_head.js
+
12
−
9
View file @
e713c8da
// Copyright (C) 2005-2014 Laurent Destailleur <eldy@users.sourceforge.net>
// Copyright (C) 2005-201
2
Regis Houssin <regis.houssin@capnetworks.com>
// Copyright (C) 2005-201
4
Regis Houssin <regis.houssin@capnetworks.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
...
...
@@ -633,7 +633,7 @@ function hideMessage(fieldId,message) {
/*
* TODO Used by admin page only ?
*/
function
setConstant
(
url
,
code
,
input
,
entity
)
{
function
setConstant
(
url
,
code
,
input
,
entity
,
strict
)
{
$
.
get
(
url
,
{
action
:
"
set
"
,
name
:
code
,
...
...
@@ -644,7 +644,7 @@ function setConstant(url, code, input, entity) {
$
(
"
#del_
"
+
code
).
show
();
$
.
each
(
input
,
function
(
type
,
data
)
{
// Enable another element
if
(
type
==
"
disabled
"
)
{
if
(
type
==
"
disabled
"
&&
strict
!=
1
)
{
$
.
each
(
data
,
function
(
key
,
value
)
{
var
newvalue
=
((
value
.
search
(
"
^#
"
)
<
0
&&
value
.
search
(
"
^
\
.
"
)
<
0
)
?
"
#
"
:
""
)
+
value
;
$
(
newvalue
).
removeAttr
(
"
disabled
"
);
...
...
@@ -656,7 +656,10 @@ function setConstant(url, code, input, entity) {
}
else
if
(
type
==
"
enabled
"
)
{
$
.
each
(
data
,
function
(
key
,
value
)
{
var
newvalue
=
((
value
.
search
(
"
^#
"
)
<
0
&&
value
.
search
(
"
^
\
.
"
)
<
0
)
?
"
#
"
:
""
)
+
value
;
$
(
newvalue
).
attr
(
"
disabled
"
,
true
);
if
(
strict
==
1
)
$
(
newvalue
).
removeAttr
(
"
disabled
"
);
else
$
(
newvalue
).
attr
(
"
disabled
"
,
true
);
if
(
$
(
newvalue
).
hasClass
(
"
butAction
"
)
==
true
)
{
$
(
newvalue
).
removeClass
(
"
butAction
"
);
$
(
newvalue
).
addClass
(
"
butActionRefused
"
);
...
...
@@ -688,7 +691,7 @@ function setConstant(url, code, input, entity) {
/*
* TODO Used by admin page only ?
*/
function
delConstant
(
url
,
code
,
input
,
entity
)
{
function
delConstant
(
url
,
code
,
input
,
entity
,
strict
)
{
$
.
get
(
url
,
{
action
:
"
del
"
,
name
:
code
,
...
...
@@ -708,7 +711,7 @@ function delConstant(url, code, input, entity) {
$
(
newvalue
).
addClass
(
"
butActionRefused
"
);
}
});
}
else
if
(
type
==
"
enabled
"
)
{
}
else
if
(
type
==
"
enabled
"
&&
strict
!=
1
)
{
$
.
each
(
data
,
function
(
key
,
value
)
{
var
newvalue
=
((
value
.
search
(
"
^#
"
)
<
0
&&
value
.
search
(
"
^
\
.
"
)
<
0
)
?
"
#
"
:
""
)
+
value
;
$
(
newvalue
).
removeAttr
(
"
disabled
"
);
...
...
@@ -742,7 +745,7 @@ function delConstant(url, code, input, entity) {
/*
* TODO Used by admin page only ?
*/
function
confirmConstantAction
(
action
,
url
,
code
,
input
,
box
,
entity
,
yesButton
,
noButton
)
{
function
confirmConstantAction
(
action
,
url
,
code
,
input
,
box
,
entity
,
yesButton
,
noButton
,
strict
)
{
var
boxConfirm
=
box
;
$
(
"
#confirm_
"
+
code
)
.
attr
(
"
title
"
,
boxConfirm
.
title
)
...
...
@@ -758,9 +761,9 @@ function confirmConstantAction(action, url, code, input, box, entity, yesButton,
text
:
yesButton
,
click
:
function
()
{
if
(
action
==
"
set
"
)
{
setConstant
(
url
,
code
,
input
,
entity
);
setConstant
(
url
,
code
,
input
,
entity
,
strict
);
}
else
if
(
action
==
"
del
"
)
{
delConstant
(
url
,
code
,
input
,
entity
);
delConstant
(
url
,
code
,
input
,
entity
,
strict
);
}
// Close dialog
$
(
this
).
dialog
(
"
close
"
);
...
...
This diff is collapsed.
Click to expand it.
htdocs/core/lib/ajax.lib.php
+
6
−
4
View file @
e713c8da
<?php
/* Copyright (C) 2007-2010 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2007-201
2
Regis Houssin <regis.houssin@capnetworks.com>
* Copyright (C) 2007-201
4
Regis Houssin <regis.houssin@capnetworks.com>
* Copyright (C) 2012 Christophe Battarel <christophe.battarel@altairis.fr>
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -391,9 +391,10 @@ function ajax_combobox($htmlname, $events=array(), $minLengthToAutocomplete=0)
* @param array $input Array of type->list of CSS element to switch. Example: array('disabled'=>array(0=>'cssid'))
* @param int $entity Entity to set
* @param int $revertonoff Revert on/off
* @param bool $strict Use only "disabled" with delConstant and "enabled" with setConstant
* @return void
*/
function
ajax_constantonoff
(
$code
,
$input
=
array
(),
$entity
=
null
,
$revertonoff
=
0
)
function
ajax_constantonoff
(
$code
,
$input
=
array
(),
$entity
=
null
,
$revertonoff
=
0
,
$strict
=
0
)
{
global
$conf
,
$langs
;
...
...
@@ -413,6 +414,7 @@ function ajax_constantonoff($code, $input=array(), $entity=null, $revertonoff=0)
var url = \''
.
DOL_URL_ROOT
.
'/core/ajax/constantonoff.php\';
var code = \''
.
$code
.
'\';
var entity = \''
.
$entity
.
'\';
var strict = \''
.
$strict
.
'\';
var yesButton = "'
.
dol_escape_js
(
$langs
->
transnoentities
(
"Yes"
))
.
'";
var noButton = "'
.
dol_escape_js
(
$langs
->
transnoentities
(
"No"
))
.
'";
...
...
@@ -421,7 +423,7 @@ function ajax_constantonoff($code, $input=array(), $entity=null, $revertonoff=0)
if (input.alert && input.alert.set) {
if (input.alert.set.yesButton) yesButton = input.alert.set.yesButton;
if (input.alert.set.noButton) noButton = input.alert.set.noButton;
confirmConstantAction("set", url, code, input, input.alert.set, entity, yesButton, noButton);
confirmConstantAction("set", url, code, input, input.alert.set, entity, yesButton, noButton
, strict
);
} else {
setConstant(url, code, input, entity);
}
...
...
@@ -432,7 +434,7 @@ function ajax_constantonoff($code, $input=array(), $entity=null, $revertonoff=0)
if (input.alert && input.alert.del) {
if (input.alert.del.yesButton) yesButton = input.alert.del.yesButton;
if (input.alert.del.noButton) noButton = input.alert.del.noButton;
confirmConstantAction("del", url, code, input, input.alert.del, entity, yesButton, noButton);
confirmConstantAction("del", url, code, input, input.alert.del, entity, yesButton, noButton
, strict
);
} else {
delConstant(url, code, input, entity);
}
...
...
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