Vaadin 7 JQueryUI Widgets (Slider)

Thanks, I had included the style-sheet wrongly. My working code for the Slider is:

com_example_vaadintest_MultiKnobSlider = function() {    
	var div=this.getElement();
	$(div).width("500");
	$(div).height("50");
	$(div).slider();	
};

You were right about the width and height too, many thanks to you :slight_smile:

Greetings