50function ajax_autocompleter($selected, $htmlname, $url, $urloption =
'', $minLength = 2, $autoselect = 0, $ajaxoptions = array(), $moreparams =
'')
52 if (empty($minLength)) {
56 $dataforrenderITem =
'ui-autocomplete';
57 $dataforitem =
'ui-autocomplete-item';
59 if (defined(
'JS_QUERY_AUTOCOMPLETE_RENDERITEM')) {
60 $dataforrenderITem = constant(
'JS_QUERY_AUTOCOMPLETE_RENDERITEM');
62 if (defined(
'JS_QUERY_AUTOCOMPLETE_ITEM')) {
63 $dataforitem = constant(
'JS_QUERY_AUTOCOMPLETE_ITEM');
66 $htmlnamejquery = str_replace(
'.',
'\\\\.', $htmlname);
70 $script =
'<input type="hidden" name="'.$htmlname.
'" id="'.$htmlname.
'" value="'.$selected.
'" '.($moreparams ? $moreparams :
'').
' />';
72 $script .=
'<!-- Javascript code for autocomplete of field '.$htmlname.
' -->'.
"\n";
73 $script .=
'<script>'.
"\n";
74 $script .=
'$(document).ready(function() {
75 var autoselect = '.((int) $autoselect).
';
76 var options = '.json_encode($ajaxoptions).
'; /* Option of actions to do after keyup, or after select */
78 /* Remove selected id as soon as we type or delete a char (it means old selection is wrong). Use keyup/down instead of change to avoid losing the product id. This is needed only for select of predefined product */
79 $("input#search_'.$htmlnamejquery.
'").keydown(function(e) {
80 if (e.keyCode != 9) /* If not "Tab" key */
82 if (e.keyCode == 13) { return false; } /* disable "ENTER" key useful for barcode readers */
83 console.log("Clear id previously selected for field '.$htmlname.
'");
84 $("#'.$htmlnamejquery.
'").val("");
88 // Check options for secondary actions when keyup
89 $("input#search_'.$htmlnamejquery.
'").keyup(function() {
90 if ($(this).val().length == 0)
92 $("#search_'.$htmlnamejquery.
'").val("");
93 $("#'.$htmlnamejquery.
'").val("").trigger("change");
94 if (options.option_disabled) {
95 $("#" + options.option_disabled).removeAttr("disabled");
97 if (options.disabled) {
98 $.each(options.disabled, function(key, value) {
99 $("#" + value).removeAttr("disabled");
102 if (options.update) {
103 $.each(options.update, function(key, value) {
104 $("#" + key).val("").trigger("change");
108 $.each(options.show, function(key, value) {
109 $("#" + value).hide().trigger("hide");
112 if (options.update_textarea) {
113 $.each(options.update_textarea, function(key, value) {
114 if (typeof CKEDITOR == "object" && typeof CKEDITOR.instances != "undefined" && CKEDITOR.instances[key] != "undefined") {
115 CKEDITOR.instances[key].setData("");
117 $("#" + key).html("");
124 // Activate the autocomplete to execute the GET
125 $("input#search_'.$htmlnamejquery.
'").autocomplete({
126 source: function( request, response ) {
127 $.get("'.$url.($urloption ?
'?'.$urloption :
'').
'", { "'.str_replace(
'.',
'_', $htmlname).
'": request.term }, function(data){
130 response($.map( data, function(item) {
131 console.log("Received answer from ajax GET, we populate array to return to the jquery autocomplete");
132 if (autoselect == 1 && data.length == 1) {
133 $("#search_'.$htmlnamejquery.
'").val(item.value);
137 // When product has only one price by qty and 1 result, must set data attributes before triggering change
138 $("#'.$htmlname.
'").attr("data-pbq", item.pbq);
139 $("#'.$htmlname.
'").attr("data-pbqup", item.price_ht);
140 $("#'.$htmlname.
'").attr("data-pbqbase", item.pricebasetype);
141 $("#'.$htmlname.
'").attr("data-pbqqty", item.qty);
142 $("#'.$htmlname.
'").attr("data-pbqpercent", item.discount);
146 $("#'.$htmlnamejquery.
'").val(item.key).trigger("change");
149 if (item.labelhtml != null) {
150 label = item.labelhtml.toString();
151 } else if (item.label != null) {
152 label = item.label.toString();
155 if (options.update) {
156 $.each(options.update, function(key, value) {
157 update[key] = item[value];
161 if (options.update_textarea) {
162 $.each(options.update_textarea, function(key, value) {
163 textarea[key] = item[value];
167 return { label: label,
170 disabled: item.disabled,
176 discount: item.discount,
177 pricebasetype: item.pricebasetype,
178 price_ht: item.price_ht,
179 price_ttc: item.price_ttc,
180 price_unit_ht: item.price_unit_ht,
181 price_unit_ht_locale: item.price_unit_ht_locale,
182 multicurrency_code: item.multicurrency_code,
183 multicurrency_unitprice: item.multicurrency_unitprice,
184 description : item.description,
185 ref_customer: item.ref_customer,
187 default_vat_code: item.default_vat_code,
188 supplier_ref: item.supplier_ref
192 console.error("Error: Ajax url '.$url.($urloption ?
'?'.$urloption :
'').
' has returned an empty page. Should be an empty json array.");
197 minLength: '.((
int) $minLength).
',
198 select: function( event, ui ) { // Function ran once a new value has been selected into the javascript combo
199 console.log("We will trigger change on input '.$htmlname.
' because of the select definition of autocomplete code for input#search_'.$htmlname.
'");
200 console.log("Selected id = "+ui.item.id+" - If this value is null, it means you select a record with key that is null so selection is not effective");
202 console.log("Before, we propagate some properties, retrieved by the ajax of the get, into the data-xxx properties of the component #'.$htmlnamejquery.
'");
203 //console.log(ui.item);
205 // For supplier price and customer when price by quantity is off
206 $("#'.$htmlnamejquery.
'").attr("data-up", ui.item.price_ht);
207 $("#'.$htmlnamejquery.
'").attr("data-up-locale", ui.item.price_unit_ht_locale);
208 $("#'.$htmlnamejquery.
'").attr("data-base", ui.item.pricebasetype);
209 $("#'.$htmlnamejquery.
'").attr("data-qty", ui.item.qty);
210 $("#'.$htmlnamejquery.
'").attr("data-discount", ui.item.discount);
211 $("#'.$htmlnamejquery.
'").attr("data-description", ui.item.description);
212 $("#'.$htmlnamejquery.
'").attr("data-ref-customer", ui.item.ref_customer);
213 $("#'.$htmlnamejquery.
'").attr("data-tvatx", ui.item.tva_tx);
214 $("#'.$htmlnamejquery.
'").attr("data-default-vat-code", ui.item.default_vat_code);
215 $("#'.$htmlnamejquery.
'").attr("data-supplier-ref", ui.item.supplier_ref); // supplier_ref of price
217 // For multi-currency values
218 $("#'.$htmlnamejquery.
'").attr("data-multicurrency-code", ui.item.multicurrency_code);
219 $("#'.$htmlnamejquery.
'").attr("data-multicurrency-unitprice", ui.item.multicurrency_unitprice);
223 // For customer price when PRODUIT_CUSTOMER_PRICES_BY_QTY is on
224 console.log("PRODUIT_CUSTOMER_PRICES_BY_QTY is on, so we propagate also prices by quantity into data-pbqxxx properties");
225 $("#'.$htmlnamejquery.
'").attr("data-pbq", ui.item.pbq);
226 $("#'.$htmlnamejquery.
'").attr("data-pbqup", ui.item.price_ht);
227 $("#'.$htmlnamejquery.
'").attr("data-pbqbase", ui.item.pricebasetype);
228 $("#'.$htmlnamejquery.
'").attr("data-pbqqty", ui.item.qty);
229 $("#'.$htmlnamejquery.
'").attr("data-pbqpercent", ui.item.discount);
233 // A new value has been selected, we trigger the handlers on #htmlnamejquery
234 console.log("Now, we trigger changes on #'.$htmlnamejquery.
'");
235 $("#'.$htmlnamejquery.
'").val(ui.item.id).trigger("change"); // Select new value
237 // Complementary actions
239 // Disable an element
240 if (options.option_disabled) {
241 console.log("Make action option_disabled on #"+options.option_disabled+" with disabled="+ui.item.disabled)
242 if (ui.item.disabled) {
243 $("#" + options.option_disabled).prop("disabled", true);
245 $.jnotify(options.error, "error", true); // Output with jnotify the error message
247 if (options.warning) {
248 $.jnotify(options.warning, "warning", false); // Output with jnotify the warning message
251 $("#" + options.option_disabled).removeAttr("disabled");
255 if (options.disabled) {
256 console.log("Make action \'disabled\' on each "+options.option_disabled)
257 $.each(options.disabled, function(key, value) {
258 $("#" + value).prop("disabled", true);
262 console.log("Make action \'show\' on each "+options.show)
263 $.each(options.show, function(key, value) {
264 $("#" + value).show().trigger("show");
269 if (ui.item.update) {
270 console.log("Make action \'update\' on each ui.item.update (if there is)")
271 // loop on each "update" fields
272 $.each(ui.item.update, function(key, value) {
273 console.log("Set value "+value+" into #"+key);
274 $("#" + key).val(value).trigger("change");
277 if (ui.item.textarea) {
278 console.log("Make action \'textarea\' on each ui.item.textarea (if there is)")
279 $.each(ui.item.textarea, function(key, value) {
280 if (typeof CKEDITOR == "object" && typeof CKEDITOR.instances != "undefined" && CKEDITOR.instances[key] != "undefined") {
281 CKEDITOR.instances[key].setData(value);
282 CKEDITOR.instances[key].focus();
284 $("#" + key).html(value);
285 $("#" + key).focus();
289 console.log("ajax_autocompleter new value selected, we trigger change also on original component so on field #search_'.$htmlname.
'");
291 $("#search_'.$htmlnamejquery.
'").trigger("change"); // We have changed value of the combo select, we must be sure to trigger all js hook binded on this event. This is required to trigger other javascript change method binded on original field by other code.
295 const widgetData = $("input#search_'.$htmlnamejquery.
'").data("'.$dataforrenderITem.
'");
297 widgetData._renderItem = function( ul, item ) {
299 .data( "'.$dataforitem.
'", item ) // jQuery UI > 1.10.0
300 .append( \'<a><span class="tag">\' + item.label + "</span></a>" )
306 $script .=
'</script>';
476function ajax_combobox($htmlname, $events = array(), $minLengthToAutocomplete = 0, $forcefocus = 0, $widthTypeOfAutocomplete =
'resolve', $idforemptyvalue =
'-1', $morecss =
'')
481 if (!empty(
$conf->browser->layout) &&
$conf->browser->layout ==
'phone' &&
getDolGlobalString(
'MAIN_DISALLOW_SELECT2_WITH_SMARTPHONE')) {
488 if (empty(
$conf->use_javascript_ajax)) {
491 if (!
getDolGlobalString(
'MAIN_USE_JQUERY_MULTISELECT') && !defined(
'REQUIRE_JQUERY_MULTISELECT')) {
498 if (empty($minLengthToAutocomplete)) {
499 $minLengthToAutocomplete = 0;
502 $moreselect2theme = ($morecss ?
dol_escape_js(
' '.$morecss) :
'');
503 $moreselect2theme = preg_replace(
'/widthcentpercentminus[^\s]*/',
'', $moreselect2theme);
505 $tmpplugin =
'select2';
507 $msg .=
'<!-- JS CODE TO ENABLE '.$tmpplugin.
' for id = '.$htmlname.
' -->'.
"\n";
508 $msg .=
"<script>\n";
509 $msg .=
'$(document).ready(function () {
510 $(\''.(dol_escape_js(preg_match(
'/^\./', $htmlname) ? $htmlname :
'#'.$htmlname)).
'\').
'.$tmpplugin.'({
';
511 if (preg_match('/onrightofpage/
', $morecss)) { // when $morecss contains 'onrightofpage
', the select2 component must also be inside a parent with class="parentonrightofpage"
512 $msg .= ' dropdownAutoWidth:
true, dropdownParent: $(\
'#'.$htmlname.
'\').parent(),
'."\n";
516 width: \''.dol_escape_js($widthTypeOfAutocomplete).
'\',
517 minimumInputLength:
'.((int) $minLengthToAutocomplete).',
518 language: (typeof select2arrayoflanguage === \
'undefined\') ? \'en\' : select2arrayoflanguage,
519 matcher: function (params, data) {
520 if ($.trim(params.term) === "") { return data; }';
523 var term = params.term.normalize("NFD").replace(/[\u0300-\u036f]/g, "").toLowerCase()
524 var text = (data.text || "").normalize("NFD").replace(/[\u0300-\u036f]/g, "").toLowerCase() || "";';
527 var term = params.term.toLowerCase();
528 var text = (data.text || "").toLowerCase();';
531 var keywords = term.split(" ");
532 for (var i = 0; i < keywords.length; i++) {
533 if (text.indexOf(keywords[i]) === -1) {
539 theme: \'default'.dol_escape_js($moreselect2theme).
'\',
540 containerCssClass: \
':all:\', /* Line to add class of origin SELECT propagated to the new <span class="select2-selection...> tag */
541 selectionCssClass: \':all:\', /* Line to add class of origin SELECT propagated to the new <span class="select2-selection...> tag */
542 dropdownCssClass: \'ui-dialog\',
543 templateResult: function (data, container) { /* Format visible output into combo list */
544 /* Code to add class of origin OPTION propagated to the new select2 <li> tag */
545 if (data.element) { $(container).addClass($(data.element).attr("class")); }
546 /* console.log("data html is "+$(data.element).attr("data-html")); */
547 if (data.id == \''.(dol_escape_js($idforemptyvalue)).
'\' && $(data.element).attr(
"data-html") == undefined) {
550 if ($(data.element).attr("data-html") != undefined) {
551 /* If property html set, we decode html entities and use this. */
552 /* Note that HTML content must have been sanitized against js injection with dol_escape_htmltag(xxx, 0, 0, \'\', 0, 1) when building the select option. */
553 if (typeof htmlEntityDecodeJs === "function") {
554 return htmlEntityDecodeJs($(data.element).attr("data-html"));
559 templateSelection: function (selection) { /* Format visible output of selected value */
560 if (selection.id == \''.(dol_escape_js($idforemptyvalue)).
'\')
return \
'<span class="placeholder">\'+selection.text+\'</span>\';
561 if (selection.element && $(selection.element).attr("data-select-html") != undefined) {
562 if (typeof htmlEntityDecodeJs === "function") {
563 return htmlEntityDecodeJs($(selection.element).attr("data-select-html"));
566 return selection.text;
568 escapeMarkup: function(markup) {
573 $msg .=
'.select2(\'focus\')';
578 $msg .=
"</script>\n";
680function ajax_constantonoff($code, $input = array(), $entity =
null, $revertonoff = 0, $strict = 0, $forcereload = 0, $marginleftonlyshort = 2, $forcenoajax = 0, $setzeroinsteadofdel = 0, $suffix =
'', $mode =
'', $morecss =
'inline-block', $userconst = 0, $showwarning =
'', $disabled = 0)
684 $entity = ((isset($entity) && is_numeric($entity) && $entity >= 0) ? $entity :
$conf->entity);
685 if (!isset($input)) {
691 if (empty(
$conf->use_javascript_ajax) || $forcenoajax) {
693 $out =
'<a '.($morecss ?
'class="'.$morecss.
'" ' :
'').
'href="'.$_SERVER[
'PHP_SELF'].
'?action=set_'.$code.
'&token='.newToken().
'&entity='.$entity.($mode ?
'&mode='.$mode :
'').($forcereload ?
'&dol_resetcache=1' :
'').
'">'.
img_picto($langs->trans(
"Disabled"),
'off').
'</a>';
695 $out =
'<a '.($morecss ?
'class="'.$morecss.
'" ' :
'').
' href="'.$_SERVER[
'PHP_SELF'].
'?action=del_'.$code.
'&token='.newToken().
'&entity='.$entity.($mode ?
'&mode='.$mode :
'').($forcereload ?
'&dol_resetcache=1' :
'').
'">'.
img_picto($langs->trans(
"Enabled"),
'on').
'</a>';
699 if (is_object($userconst)) {
700 $userconstid = $userconst->id;
701 } elseif (is_numeric($userconst) && $userconst > 0) {
702 $userconstid = $userconst;
704 $userconst->fetch($userconstid);
708 $morecss .=
' disabled opacitymedium';
710 $out =
"\n<!-- Ajax code to switch constant ".$code.
" -->".
'
712 $(document).ready(function() {
713 var input = '.json_encode($input).
';
714 var url = \''.DOL_URL_ROOT.
'/core/ajax/constantonoff.php\';
716 var entity = \
''.dol_escape_js((
string) $entity).
'\';
717 var strict = \
''.dol_escape_js((
string) $strict).
'\';
718 var userid = \
''.dol_escape_js((
string) $user->id).
'\';
719 var userconst =
'.((int) $userconstid).';
720 var yesButton = \
''.dol_escape_js($langs->transnoentities(
"Yes")).
'\';
721 var noButton = \
''.dol_escape_js($langs->transnoentities(
"No")).
'\';
722 var token = \
''.currentToken().
'\';
723 var warning = \
''.dol_escape_js($showwarning).
'\';
726 $(
"#set_" + code).click(
function() {
731 if (input.alert && input.alert.set) {
732 if (input.alert.set.yesButton) yesButton = input.alert.set.yesButton;
733 if (input.alert.set.noButton) noButton = input.alert.set.noButton;
734 confirmConstantAction(
"set", url, code, input, input.alert.set, entity, yesButton, noButton, strict, userid, token);
736 setConstant(url, code, input, entity, 0,
'.((int) $forcereload).', userid, token, 1, userconst);
741 $(
"#del_" + code).click(
function() {
742 if (input.alert && input.alert.del) {
743 if (input.alert.del.yesButton) yesButton = input.alert.del.yesButton;
744 if (input.alert.del.noButton) noButton = input.alert.del.noButton;
745 confirmConstantAction(
"del", url, code, input, input.alert.del, entity, yesButton, noButton, strict, userid, token);
747 if (empty($setzeroinsteadofdel)) {
748 $out .= ' delConstant(url, code, input, entity, 0,
'.((int) $forcereload).', userid, token, userconst);
';
750 $out .= ' setConstant(url, code, input, entity, 0,
'.((int) $forcereload).', userid, token, 0, userconst);
';
758 if (!empty($userconst) && $userconst instanceof User) {
759 $value = getDolUserString($code, '', $userconst);
761 $value = getDolGlobalString($code);
764 if (is_array($suffix)) {
765 $suffixon = $suffix['ifon
'];
766 $suffixoff = $suffix['ifoff
'];
767 } else { // old mode deprecated
768 $suffixon = (string) $suffix;
772 $out .= '<div
id=
"confirm_'.$code.'" title=
"" style=
"display: none;"></div>
';
773 $out .= '<span
id=
"set_'.$code.'" class=
"valignmiddle inline-block linkobject '.($value ? 'hideobject' : '').($morecss ? ' '.$morecss : '').'">
'.($revertonoff ? img_picto($langs->trans("Enabled"), 'switch_on
'.$suffixoff, '', 0, 0, 0, '', '', $marginleftonlyshort) : img_picto($langs->trans("Disabled"), 'switch_off
'.$suffixoff, '', 0, 0, 0, '', '', $marginleftonlyshort)).'</span>
';
774 $out .= '<span
id=
"del_'.$code.'" class=
"valignmiddle inline-block linkobject '.($value ? '' : 'hideobject').($morecss ? ' '.$morecss : '').'">
'.($revertonoff ? img_picto($langs->trans("Disabled"), 'switch_off
'.$suffixon, '', 0, 0, 0, '', '', $marginleftonlyshort) : img_picto($langs->trans("Enabled"), 'switch_on
'.$suffixon, '', 0, 0, 0, '', '', $marginleftonlyshort)).'</span>
';
799function ajax_object_onoff($object, $code, $field, $text_on, $text_off, $input = array(), $morecss = '
', $htmlname = '', $forcenojs = 0, $moreparam = '', $readonly = 0)
801 global $conf, $langs;
803 if (empty($htmlname)) {
809 if (!empty($conf->use_javascript_ajax) && empty($forcenojs) && empty($readonly)) {
812 var input =
'.json_encode($input).';
815 $(
"#set_'.$htmlname.'_'.$object->id.'").click(
function() {
816 console.log(
"Click managed by ajax_object_onoff");
817 $.get(
"'.DOL_URL_ROOT.'/core/ajax/objectonoff.php", {
819 field: \''.dol_escape_js($field).
'\',
822 id: \
''.((int)
$object->id).
'\',
823 token: \
''.currentToken().
'\'
827 var data = JSON.parse(response);
830 console.log(response);
833 $(
"#set_'.$htmlname.'_'.$object->id.'").hide();
834 $(
"#del_'.$htmlname.'_'.$object->id.'").show();
836 if (input.disabled && input.disabled.length > 0) {
837 $.each(input.disabled,
function(key,value) {
838 $(
"#" + value).removeAttr(
"disabled");
839 if ($(
"#" + value).hasClass(
"butActionRefused") == true) {
840 $(
"#" + value).removeClass(
"butActionRefused");
841 $(
"#" + value).addClass(
"butAction");
845 }
else if (input.showhide && input.showhide.length > 0) {
846 $.each(input.showhide,
function(key,value) {
847 $(
"#" + value).show();
853 console.warn(response.responseText);
854 Dolibarr.tools.setEventMessage(response.responseText,
"errors");
860 $(
"#del_'.$htmlname.'_'.$object->id.'").click(
function() {
861 console.log(
"Click managed by ajax_object_onoff");
862 $.get(
"'.DOL_URL_ROOT.'/core/ajax/objectonoff.php", {
864 field: \''.dol_escape_js($field).
'\',
867 id: \''.((int)
$object->id).
'\',
868 token: \''.currentToken().
'\'
872 var data = JSON.parse(response);
875 console.log(response);
878 $("#del_'.$htmlname.
'_'.
$object->id.
'").hide();
879 $("#set_'.$htmlname.
'_'.
$object->id.
'").show();
880 // Disable another element
881 if (input.disabled && input.disabled.length > 0) {
882 $.each(input.disabled, function(key,value) {
883 $("#" + value).prop("disabled", true);
884 if ($("#" + value).hasClass("butAction") == true) {
885 $("#" + value).removeClass("butAction");
886 $("#" + value).addClass("butActionRefused");
889 // Hide another element
890 } else if (input.showhide && input.showhide.length > 0) {
891 $.each(input.showhide, function(key,value) {
892 $("#" + value).hide();
897 //alert(response.responseText);
898 console.warn(response.responseText);
899 Dolibarr.tools.setEventMessage(response.responseText, "errors");
907 $switchon =
'switch_on';
908 $switchoff =
'switch_off';
911 $tmparray = explode(
':', $text_on);
912 if (!empty($tmparray[1])) {
913 $text_on = $tmparray[0];
914 $switchon = $tmparray[1];
915 if (!empty($tmparray[2])) {
916 $cssswitchon = $tmparray[2];
919 $tmparray = explode(
':', $text_off);
920 if (!empty($tmparray[1])) {
921 $text_off = $tmparray[0];
922 $switchoff = $tmparray[1];
923 if (!empty($tmparray[2])) {
924 $cssswitchoff = $tmparray[2];
928 if (empty(
$conf->use_javascript_ajax) || $forcenojs) {
929 $url = DOL_URL_ROOT.
'/core/ajax/objectonoff.php?action=set&token='.newToken().
'&id='.((int)
$object->id).
'&element='.urlencode(
$object->element).
'&field='.urlencode($field).
'&value=1&backtopage='.urlencode($_SERVER[
"PHP_SELF"].
'?id='.
$object->id.($moreparam ?
'&'.$moreparam :
''));
933 $out .=
'<a id="set_'.$htmlname.
'_'.
$object->id.
'" class="linkobject '.(
$object->$code == 1 ?
'hideobject' :
'').($morecss ?
' '.$morecss :
'').
'" href="'.$url.
'">'.
img_picto($langs->trans($text_off), $switchoff,
'', 0, 0, 0,
'', $cssswitchoff).
'</a>';
934 $url = DOL_URL_ROOT.
'/core/ajax/objectonoff.php?action=set&token='.newToken().
'&id='.((int)
$object->id).
'&element='.urlencode(
$object->element).
'&field='.urlencode($field).
'&value=0&backtopage='.urlencode($_SERVER[
"PHP_SELF"].
'?id='.
$object->id.($moreparam ?
'&'.$moreparam :
''));
938 $out .=
'<a id="del_'.$htmlname.
'_'.
$object->id.
'" class="linkobject '.(
$object->$code == 1 ?
'' :
'hideobject').($morecss ?
' '.$morecss :
'').
'" href="'.$url.
'">'.
img_picto($langs->trans($text_on), $switchon,
'', 0, 0, 0,
'', $cssswitchon).
'</a>';
940 $out .=
'<span id="set_'.$htmlname.
'_'.
$object->id.
'" class="linkobject '.(
$object->$code == 1 ?
'hideobject' :
'').($morecss ?
' '.$morecss :
'').
'">'.
img_picto($langs->trans($text_off), $switchoff,
'', 0, 0, 0,
'', $cssswitchoff).
'</span>';
941 $out .=
'<span id="del_'.$htmlname.
'_'.
$object->id.
'" class="linkobject '.(
$object->$code == 1 ?
'' :
'hideobject').($morecss ?
' '.$morecss :
'').
'">'.
img_picto($langs->trans($text_on), $switchon,
'', 0, 0, 0,
'', $cssswitchon).
'</span>';
ajax_autocompleter($selected, $htmlname, $url, $urloption='', $minLength=2, $autoselect=0, $ajaxoptions=array(), $moreparams='')
Generic function that return javascript to add to transform a common input text or select field into ...
ajax_combobox($htmlname, $events=array(), $minLengthToAutocomplete=0, $forcefocus=0, $widthTypeOfAutocomplete='resolve', $idforemptyvalue='-1', $morecss='')
Convert a html select field into an ajax combobox.
ajax_multiautocompleter($htmlname, $fields, $url, $option='', $minLength=2, $autoselect=0)
Generic function that return javascript to add to a page to transform a common input text field into ...
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)