只是想知道phpMyAdmin中是否有一个选项可以禁用当您单击日历图标以选择日期时弹出的工具提示。 toopltip覆盖了可以单击newx或prev按钮移动到下一个或pev月份的区域。
的在线演示中答案 0 :(得分:0)
答案 1 :(得分:0)
也许它不再阻止按钮了,但是我仍然发现该消息令人讨厌且不必要。我通过修改phpMyAdmin/js/messages.php
从日期和时间输入中删除了该消息:
/* For Tip to be shown on Time field */
$js_messages['strMysqlAllowedValuesTipTime'] = ''; /*__(
'MySQL accepts additional values not selectable by the slider;'
. ' key in those values directly if desired'
);*/
/* For Tip to be shown on Date field */
$js_messages['strMysqlAllowedValuesTipDate'] = ''; /*__(
'MySQL accepts additional values not selectable by the datepicker;'
. ' key in those values directly if desired'
);*/
这两个值现在定义为空字符串,原始值已注释掉。