InlineDateTimeField specific date

Hi fellas,

i have question about how to color specific dates of month in InlineDateTimeField. For example i have

public InlineDateTimeField kalendar = new InlineDateTimeField()

and i wanna to add style to 2nd, 10th, 23rd and 30th of April. How could i do this?
Best of luck !

The Tuning DateField add-on could work for you: https://vaadin.com/directory/component/tuning-datefield

-Olli

Problem is that i get widgeset com.vaadin.DefaultWidgeSet does not contain implementation for org.vaadin.addons…
I am using spring boot for this project

Check this sample project for how to compile a widgetset in a Spring Boot project: https://github.com/ripla/vaadin-spring-widgetset-compile

-Olli

great, thank you, that was really good. Btw, one more question, how to set locale to specific country. For example, i need Bosnian locale and i found on sampler that i can change, but when i set locale like this

kalendar.setLocale(new Locale("ba","BA")); it does not work, its still english locale.

I think that’s the way it should work. Should it perhaps be Locale(“bs”,“BA”)? http://www.localeplanet.com/icu/iso3166.html#BA

bs-BA is not working but sr-RS is working…its same thing, Thank you.