Scheduler Save vs Edit buttons

How can I stile the save and edit buttons from the edit view different?

I want to add a different background image for each and remove the text…but from what i seen they both have only one class, ‘.webixtype_base’.
Yet something makes them different as they have different texts:)

You can use one of the following solutions:

  • customize selected_toolbar and form_toolbar configurations and add className in “css” property for these buttons ( http://docs.webix.com/mobile_calendar__mobile_advanced.html )
  • or you can add className directly to elements: $$(“scheduler”).$$(“save”).$view.className += " save_btn";

And here is the example of style:

<style>
   .save_btn .webixtype_base{
	background: #309850 !important;
   }
</style>

Oh, yes. Thanks, sometimes I am blind I guess:)

No problem :slight_smile: The issue was not trivial.