Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Nikola Loncar

    (@loncar)

    Hi savoures,

    only way that you can get that is to change code directly on plugin. Did you try to use ea_standard instead ea_bootstrap sort code?

    Best regards,
    Nikola

    Thread Starter Yiannis Iliopoulos

    (@savoures)

    Hi i know i need to change the code so i need you to guide me on how to do this please

    Plugin Author Nikola Loncar

    (@loncar)

    Hi,

    open frontend-bootstrap.js file and find this :

    var newRow = $(document.createElement('tr'))
    			.addClass('time-row')
    			.append('<td colspan="7" />');
    
    newRow.find('td').append(next_element);
    
    $(calendar.dpDiv).find('.ui-datepicker-current-day').closest('tr').after(newRow);

    this is doing placing div inside row below selected date. There you can try something like this (replace previous code with this one) :

    var newRow = $(document.createElement('div'));
    
    newRow.append(next_element);
    
    $(calendar.dpDiv).after(newRow);

    Best regards,
    Nikola

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘change timepicker’ is closed to new replies.