mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
N°6455 Fix datepicker widget icon on button
The buttonText is now escaped
(cherry picked from commit fa5d03fc6e)
This commit is contained in:
@@ -285,7 +285,7 @@ class iTopWebPage extends NiceWebPage implements iTabbedPage
|
||||
// Date picker options
|
||||
$aPickerOptions = array(
|
||||
'showOn' => 'button',
|
||||
'buttonText' => '<i class="fas fa-calendar-alt"></i>',
|
||||
'buttonText' => '', // N°6455 class will be added after JQuery UI widget
|
||||
'dateFormat' => AttributeDate::GetFormat()->ToDatePicker(),
|
||||
'constrainInput' => false,
|
||||
'changeMonth' => true,
|
||||
@@ -338,6 +338,7 @@ class iTopWebPage extends NiceWebPage implements iTabbedPage
|
||||
// Note: Trigger image is wrapped in a span so we can display it we want
|
||||
$(".date-pick").datepicker($sJSDatePickerOptions)
|
||||
.next("img").wrap("<span>");
|
||||
$("button.ui-datepicker-trigger").addClass('fas fa-calendar-alt');
|
||||
|
||||
// Hack for the date and time picker addon issue on Chrome (see #1305)
|
||||
// The workaround is to instantiate the widget on demand
|
||||
|
||||
Reference in New Issue
Block a user