mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-21 09:38:48 +02:00
Merge remote-tracking branch 'origin/support/3.0.0-beta2' into develop
# Conflicts: # datamodels/2.x/itop-structure/precompiled-themes/fullmoon/main.css # datamodels/2.x/itop-structure/precompiled-themes/test-red/main.css
This commit is contained in:
@@ -2533,14 +2533,13 @@ EOF
|
||||
$sDisplayValueForHtml = utils::EscapeHtml($sDisplayValue);
|
||||
|
||||
// Adding tooltip so we can read the whole value when its very long (eg. URL)
|
||||
$sTip = '';
|
||||
$sTip = '';
|
||||
if (!empty($sDisplayValue)) {
|
||||
$sTip = 'data-tooltip-content="'.$sDisplayValueForHtml.'"';
|
||||
$oPage->add_ready_script(
|
||||
<<<EOF
|
||||
$oPage->add_ready_script(<<<JS
|
||||
$('#{$iId}').on('keyup', function(evt, sFormId){
|
||||
var sVal = $('#{$iId}').val();
|
||||
var oTippy = this._tippy;
|
||||
let sVal = $('#{$iId}').val();
|
||||
const oTippy = this._tippy;
|
||||
|
||||
if(sVal === '')
|
||||
{
|
||||
@@ -2553,7 +2552,7 @@ EOF
|
||||
}
|
||||
oTippy.setContent(sVal);
|
||||
});
|
||||
EOF
|
||||
JS
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@@ -538,7 +538,7 @@ class utils
|
||||
*/
|
||||
public static function ReadMultipleSelection($oFullSetFilter)
|
||||
{
|
||||
$aSelectedObj = utils::ReadParam('selectObject[]', array());
|
||||
$aSelectedObj = utils::ReadParam('selectObject', array());
|
||||
$sSelectionMode = utils::ReadParam('selectionMode', '');
|
||||
if ($sSelectionMode != '') {
|
||||
// Paginated selection
|
||||
|
||||
Reference in New Issue
Block a user