Fix: show icon if edit in place is possible
This commit is contained in:
parent
fd49fc97c8
commit
94b393e760
@ -46,7 +46,7 @@ if((isset($_GET['field']) && ! empty($_GET['field']))
|
|||||||
{
|
{
|
||||||
$element = GETPOST('element');
|
$element = GETPOST('element');
|
||||||
$table_element = GETPOST('table_element');
|
$table_element = GETPOST('table_element');
|
||||||
$field = GETPOST('field');
|
$field = substr(GETPOST('field'), 4); // remove prefix val_
|
||||||
$fk_element = GETPOST('fk_element');
|
$fk_element = GETPOST('fk_element');
|
||||||
$type = GETPOST('type');
|
$type = GETPOST('type');
|
||||||
|
|
||||||
|
|||||||
@ -47,7 +47,7 @@ if((isset($_POST['field']) && ! empty($_POST['field']))
|
|||||||
{
|
{
|
||||||
$element = GETPOST('element');
|
$element = GETPOST('element');
|
||||||
$table_element = GETPOST('table_element');
|
$table_element = GETPOST('table_element');
|
||||||
$field = GETPOST('field');
|
$field = substr(GETPOST('field'), 4); // remove prefix val_
|
||||||
$fk_element = GETPOST('fk_element');
|
$fk_element = GETPOST('fk_element');
|
||||||
$value = GETPOST('value');
|
$value = GETPOST('value');
|
||||||
$type = GETPOST('type');
|
$type = GETPOST('type');
|
||||||
|
|||||||
@ -79,19 +79,27 @@ class Form
|
|||||||
*/
|
*/
|
||||||
function editfieldkey($text,$htmlname,$preselected,$paramkey,$paramvalue,$perm,$typeofdata='string')
|
function editfieldkey($text,$htmlname,$preselected,$paramkey,$paramvalue,$perm,$typeofdata='string')
|
||||||
{
|
{
|
||||||
global $conf,$langs;
|
global $conf,$langs;
|
||||||
|
|
||||||
if (! empty($conf->global->MAIN_USE_JQUERY_JEDITABLE)) return $langs->trans($text);
|
$ret='';
|
||||||
else
|
|
||||||
{
|
if (! empty($conf->global->MAIN_USE_JQUERY_JEDITABLE))
|
||||||
$ret='';
|
{
|
||||||
$ret.='<table class="nobordernopadding" width="100%"><tr><td nowrap="nowrap">';
|
$tmp=explode(':',$typeofdata);
|
||||||
$ret.=$langs->trans($text);
|
$ret.= "\n".'<div class="editkey_'.$tmp[0].'" id="'.$htmlname.'">';
|
||||||
$ret.='</td>';
|
$ret.= $langs->trans($text);
|
||||||
if (GETPOST('action') != 'edit'.$htmlname && $perm) $ret.='<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=edit'.$htmlname.'&'.$paramkey.'='.$paramvalue.'">'.img_edit($langs->trans('Edit'),1).'</a></td>';
|
$ret.= '</div>'."\n";
|
||||||
$ret.='</tr></table>';
|
}
|
||||||
return $ret;
|
else
|
||||||
|
{
|
||||||
|
$ret.='<table class="nobordernopadding" width="100%"><tr><td nowrap="nowrap">';
|
||||||
|
$ret.=$langs->trans($text);
|
||||||
|
$ret.='</td>';
|
||||||
|
if (GETPOST('action') != 'edit'.$htmlname && $perm) $ret.='<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=edit'.$htmlname.'&'.$paramkey.'='.$paramvalue.'">'.img_edit($langs->trans('Edit'),1).'</a></td>';
|
||||||
|
$ret.='</tr></table>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return $ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -215,9 +223,9 @@ class Form
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$out.= '<div class="edit_'.$inputType.'" id="'.$htmlname.'">';
|
$out.= "\n".'<div class="editval_'.$inputType.'" id="val_'.$htmlname.'">';
|
||||||
$out.= $value;
|
$out.= $value;
|
||||||
$out.= '</div>';
|
$out.= '</div>'."\n";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@ -11,7 +11,7 @@ $(document).ready(function() {
|
|||||||
var table_element = $('#jeditable_table_element').html();
|
var table_element = $('#jeditable_table_element').html();
|
||||||
var fk_element = $('#jeditable_fk_element').html();
|
var fk_element = $('#jeditable_fk_element').html();
|
||||||
|
|
||||||
$('.edit_textarea').editable(urlSaveInPlace, {
|
$('.editval_textarea').editable(urlSaveInPlace, {
|
||||||
type : 'textarea',
|
type : 'textarea',
|
||||||
rows : 4,
|
rows : 4,
|
||||||
id : 'field',
|
id : 'field',
|
||||||
@ -44,7 +44,19 @@ $(document).ready(function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$('.edit_ckeditor').editable(urlSaveInPlace, {
|
$('.editkey_textarea').hover(
|
||||||
|
function () {
|
||||||
|
$( '#val_' + $(this).attr('id') ).addClass("editval_hover");
|
||||||
|
},
|
||||||
|
function () {
|
||||||
|
$( '#val_' + $(this).attr('id') ).removeClass("editval_hover");
|
||||||
|
}
|
||||||
|
);
|
||||||
|
$('.editkey_textarea').click(function() {
|
||||||
|
$( '#val_' + $(this).attr('id') ).click();
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.editval_ckeditor').editable(urlSaveInPlace, {
|
||||||
type : 'ckeditor',
|
type : 'ckeditor',
|
||||||
id : 'field',
|
id : 'field',
|
||||||
onblur : 'ignore',
|
onblur : 'ignore',
|
||||||
@ -74,7 +86,19 @@ $(document).ready(function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$('.edit_text').editable(urlSaveInPlace, {
|
$('.editkey_ckeditor').hover(
|
||||||
|
function () {
|
||||||
|
$( '#val_' + $(this).attr('id') ).addClass("editval_hover");
|
||||||
|
},
|
||||||
|
function () {
|
||||||
|
$( '#val_' + $(this).attr('id') ).removeClass("editval_hover");
|
||||||
|
}
|
||||||
|
);
|
||||||
|
$('.editkey_ckeditor').click(function() {
|
||||||
|
$( '#val_' + $(this).attr('id') ).click();
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.editval_text').editable(urlSaveInPlace, {
|
||||||
type : 'text',
|
type : 'text',
|
||||||
id : 'field',
|
id : 'field',
|
||||||
width : 300,
|
width : 300,
|
||||||
@ -100,7 +124,19 @@ $(document).ready(function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$('.edit_numeric').editable(urlSaveInPlace, {
|
$('.editkey_text').hover(
|
||||||
|
function () {
|
||||||
|
$( '#val_' + $(this).attr('id') ).addClass("editval_hover");
|
||||||
|
},
|
||||||
|
function () {
|
||||||
|
$( '#val_' + $(this).attr('id') ).removeClass("editval_hover");
|
||||||
|
}
|
||||||
|
);
|
||||||
|
$('.editkey_text').click(function() {
|
||||||
|
$( '#val_' + $(this).attr('id') ).click();
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.editval_numeric').editable(urlSaveInPlace, {
|
||||||
type : 'text',
|
type : 'text',
|
||||||
id : 'field',
|
id : 'field',
|
||||||
width : 100,
|
width : 100,
|
||||||
@ -126,7 +162,19 @@ $(document).ready(function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$('.edit_datepicker').editable(urlSaveInPlace, {
|
$('.editkey_numeric').hover(
|
||||||
|
function () {
|
||||||
|
$( '#val_' + $(this).attr('id') ).addClass("editval_hover");
|
||||||
|
},
|
||||||
|
function () {
|
||||||
|
$( '#val_' + $(this).attr('id') ).removeClass("editval_hover");
|
||||||
|
}
|
||||||
|
);
|
||||||
|
$('.editkey_numeric').click(function() {
|
||||||
|
$( '#val_' + $(this).attr('id') ).click();
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.editval_datepicker').editable(urlSaveInPlace, {
|
||||||
type : 'datepicker',
|
type : 'datepicker',
|
||||||
id : 'field',
|
id : 'field',
|
||||||
onblur : 'ignore',
|
onblur : 'ignore',
|
||||||
@ -155,7 +203,19 @@ $(document).ready(function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$('.edit_select').editable(urlSaveInPlace, {
|
$('.editkey_datepicker').hover(
|
||||||
|
function () {
|
||||||
|
$( '#val_' + $(this).attr('id') ).addClass("editval_hover");
|
||||||
|
},
|
||||||
|
function () {
|
||||||
|
$( '#val_' + $(this).attr('id') ).removeClass("editval_hover");
|
||||||
|
}
|
||||||
|
);
|
||||||
|
$('.editkey_datepicker').click(function() {
|
||||||
|
$( '#val_' + $(this).attr('id') ).click();
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.editval_select').editable(urlSaveInPlace, {
|
||||||
type : 'select',
|
type : 'select',
|
||||||
id : 'field',
|
id : 'field',
|
||||||
onblur : 'ignore',
|
onblur : 'ignore',
|
||||||
@ -191,6 +251,18 @@ $(document).ready(function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
$('.editkey_select').hover(
|
||||||
|
function () {
|
||||||
|
$( '#val_' + $(this).attr('id') ).addClass("editval_hover");
|
||||||
|
},
|
||||||
|
function () {
|
||||||
|
$( '#val_' + $(this).attr('id') ).removeClass("editval_hover");
|
||||||
|
}
|
||||||
|
);
|
||||||
|
$('.editkey_select').click(function() {
|
||||||
|
$( '#val_' + $(this).attr('id') ).click();
|
||||||
|
});
|
||||||
|
|
||||||
$('.edit_autocomplete').editable(urlSaveInPlace, {
|
$('.edit_autocomplete').editable(urlSaveInPlace, {
|
||||||
type : 'autocomplete',
|
type : 'autocomplete',
|
||||||
id : 'field',
|
id : 'field',
|
||||||
|
|||||||
@ -1625,16 +1625,25 @@ table.cal_event td { border: 0px; padding-<?php print $left; ?>: 0px; padding-<?
|
|||||||
/* jQuery - jeditable */
|
/* jQuery - jeditable */
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
|
|
||||||
.edit_textarea:hover, .edit_ckeditor:hover, .edit_text:hover, .edit_numeric:hover, .edit_select:hover {
|
.editkey_textarea, .editkey_ckeditor, .editkey_text, .editkey_numeric, .editkey_select {
|
||||||
background: white url(<?php echo dol_buildpath($path.'/theme/auguria/img/edit.png',1) ?>) right center no-repeat;
|
background: url(<?php echo dol_buildpath($path.'/theme/auguria/img/edit.png',1) ?>) right top no-repeat;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.edit_datepicker:hover {
|
.editkey_datepicker {
|
||||||
background: white url(<?php echo dol_buildpath($path.'/theme/auguria/img/calendar.png',1) ?>) right center no-repeat;
|
background: url(<?php echo dol_buildpath($path.'/theme/auguria/img/calendar.png',1) ?>) right center no-repeat;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.editval_textarea:hover, .editval_ckeditor:hover, .editval_text:hover, .editval_numeric:hover, .editval_select:hover, .editval_datepicker:hover {
|
||||||
|
background: white;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.editval_hover {
|
||||||
|
background: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
/* Admin Menu */
|
/* Admin Menu */
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
|
/* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
* Copyright (C) 2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
* Copyright (C) 2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
* Copyright (C) 2007-2010 Regis Houssin <regis@dolibarr.fr>
|
* Copyright (C) 2007-2010 Regis Houssin <regis@dolibarr.fr>
|
||||||
* Copyright (C) 2011 Philippe Grand <philippe.grand@atoo-net.com>
|
* Copyright (C) 2011 Philippe Grand <philippe.grand@atoo-net.com>
|
||||||
* Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
|
* Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -1844,16 +1844,25 @@ table.cal_event td { border: 0px; padding-<?php print $left; ?>: 0px; padding-<?
|
|||||||
/* jQuery - jeditable */
|
/* jQuery - jeditable */
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
|
|
||||||
.edit_textarea:hover, .edit_ckeditor:hover, .edit_text:hover, .edit_numeric:hover, .edit_select:hover {
|
.editkey_textarea, .editkey_ckeditor, .editkey_text, .editkey_numeric, .editkey_select {
|
||||||
background: white url(<?php echo dol_buildpath($path.'/theme/bureau2crea/img/edit.png',1) ?>) right center no-repeat;
|
background: url(<?php echo dol_buildpath($path.'/theme/bureau2crea/img/edit.png',1) ?>) right top no-repeat;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.edit_datepicker:hover {
|
.editkey_datepicker {
|
||||||
background: white url(<?php echo dol_buildpath($path.'/theme/bureau2crea/img/calendar.png',1) ?>) right center no-repeat;
|
background: url(<?php echo dol_buildpath($path.'/theme/bureau2crea/img/calendar.png',1) ?>) right center no-repeat;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.editval_textarea:hover, .editval_ckeditor:hover, .editval_text:hover, .editval_numeric:hover, .editval_select:hover, .editval_datepicker:hover {
|
||||||
|
background: white;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.editval_hover {
|
||||||
|
background: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
/* Admin Menu */
|
/* Admin Menu */
|
||||||
|
|||||||
@ -1792,16 +1792,25 @@ table.cal_event td { border: 0px; padding-<?php print $left; ?>: 0px; padding-<?
|
|||||||
/* jQuery - jeditable */
|
/* jQuery - jeditable */
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
|
|
||||||
.edit_textarea:hover, .edit_ckeditor:hover, .edit_text:hover, .edit_numeric:hover, .edit_select:hover {
|
.editkey_textarea, .editkey_ckeditor, .editkey_text, .editkey_numeric, .editkey_select {
|
||||||
background: white url(<?php echo dol_buildpath($path.'/theme/cameleo/img/edit.png',1) ?>) right center no-repeat;
|
background: url(<?php echo dol_buildpath($path.'/theme/cameleo/img/edit.png',1) ?>) right top no-repeat;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.edit_datepicker:hover {
|
.editkey_datepicker {
|
||||||
background: white url(<?php echo dol_buildpath($path.'/theme/cameleo/img/calendar.png',1) ?>) right center no-repeat;
|
background: url(<?php echo dol_buildpath($path.'/theme/cameleo/img/calendar.png',1) ?>) right center no-repeat;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.editval_textarea:hover, .editval_ckeditor:hover, .editval_text:hover, .editval_numeric:hover, .editval_select:hover, .editval_datepicker:hover {
|
||||||
|
background: white;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.editval_hover {
|
||||||
|
background: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
/* Admin Menu */
|
/* Admin Menu */
|
||||||
|
|||||||
@ -1704,16 +1704,25 @@ table.cal_event td { border: 0px; padding-<?php print $left; ?>: 0px; padding-<?
|
|||||||
/* jQuery - jeditable */
|
/* jQuery - jeditable */
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
|
|
||||||
.edit_textarea:hover, .edit_ckeditor:hover, .edit_text:hover, .edit_numeric:hover, .edit_select:hover {
|
.editkey_textarea, .editkey_ckeditor, .editkey_text, .editkey_numeric, .editkey_select {
|
||||||
background: white url(<?php echo dol_buildpath($path.'/theme/eldy/img/edit.png',1) ?>) right top no-repeat;
|
background: url(<?php echo dol_buildpath($path.'/theme/eldy/img/edit.png',1) ?>) right top no-repeat;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.edit_datepicker:hover {
|
.editkey_datepicker {
|
||||||
background: white url(<?php echo dol_buildpath($path.'/theme/eldy/img/calendar.png',1) ?>) right center no-repeat;
|
background: url(<?php echo dol_buildpath($path.'/theme/eldy/img/calendar.png',1) ?>) right center no-repeat;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.editval_textarea:hover, .editval_ckeditor:hover, .editval_text:hover, .editval_numeric:hover, .editval_select:hover, .editval_datepicker:hover {
|
||||||
|
background: white;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.editval_hover {
|
||||||
|
background: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
/* Admin Menu */
|
/* Admin Menu */
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user