Hi, I need to add a delete button in a calendar and I CAN’T GET IT. Neither with the demos, nor with the existing documentation, nor with the research in the forums I have been able to do it, I don’t have much knowledge of CSS, maybe that’s why?
I just want to know how I can add a button with a Font Awesome icon and another with a “specific icon” svg.
This could be an example: (cssClass, icon)
var options = {
controls: ['calendar','time'],
dateFormat: 'D-MM-YYYY',
timeFormat: 'H:mm:ss',
stepMinute: 5,
stepSecond: 30,
buttons: [
{
text: 'OK',
cssClass: 'xxxxx',
handler: 'set',
keyCode: 'enter'
},{
icon: 'close',
handler: cleanClick,
keyCode: 'cancel'
}
]
};
I use the latest version for Js.
Thx