aboutsummaryrefslogtreecommitdiffstats
path: root/ui
ModeNameSize
d---------i18n3324logstatsplain
-rw-r--r--jquery.effects.blind.js1380logstatsplain
-rw-r--r--jquery.effects.bounce.js3064logstatsplain
-rw-r--r--jquery.effects.clip.js1684logstatsplain
-rw-r--r--jquery.effects.core.js23343logstatsplain
-rw-r--r--jquery.effects.drop.js1664logstatsplain
-rw-r--r--jquery.effects.explode.js2374logstatsplain
-rw-r--r--jquery.effects.fade.js693logstatsplain
-rw-r--r--jquery.effects.fold.js1908logstatsplain
-rw-r--r--jquery.effects.highlight.js1198logstatsplain
-rw-r--r--jquery.effects.pulsate.js1223logstatsplain
-rw-r--r--jquery.effects.scale.js6949logstatsplain
-rw-r--r--jquery.effects.shake.js1941logstatsplain
-rw-r--r--jquery.effects.slide.js1662logstatsplain
-rw-r--r--jquery.effects.transfer.js1133logstatsplain
-rw-r--r--jquery.ui.accordion.js16269logstatsplain
-rw-r--r--jquery.ui.autocomplete.js16535logjquery.ui.draggable.js30982logstatsplain
-rw-r--r--jquery.ui.droppable.js10175logstatsplain
-rw-r--r--jquery.ui.mouse.js4296logstatsplain
-rw-r--r--jquery.ui.position.js7349logstatsplain
-rw-r--r--jquery.ui.progressbar.js2378logstatsplain
-rw-r--r--jquery.ui.resizable.js27791logstatsplain
-rw-r--r--jquery.ui.selectable.js6848logstatsplain
-rw-r--r--jquery.ui.selectmenu.js26788logstatsplain
-rw-r--r--jquery.ui.slider.js17599logstatsplain
-rw-r--r--jquery.ui.sortable.js39950logstatsplain
-rw-r--r--jquery.ui.tabs.js21249logstatsplain
-rw-r--r--jquery.ui.widget.js7016logstatsplain
rFrame# has undefined size by default, it is critical that you define a meaningful size for it, either fixed or relative. [source, java] ---- BrowserFrame browser = new BrowserFrame("Browser", new ExternalResource("http://demo.vaadin.com/sampler/")); browser.setWidth("600px"); browser.setHeight("400px"); layout.addComponent(browser); ---- Notice that web pages can prevent embedding them in an <iframe>. [[components.embedded.embedded]] == Generic [classname]#Embedded# Objects The generic [classname]#Embedded# component allows embedding all sorts of objects, such as SVG graphics, Java applets, and PDF documents, in addition to the images, and browser frames which you can embed with the specialized components. Display an SVG image: [source, java] ---- // A resource reference to some object Resource res = new ThemeResource("img/reindeer.svg"); // Display the object Embedded object = new Embedded("My SVG", res); object.setMimeType("image/svg+xml"); // Unnecessary layout.addComponent(object); ---- The MIME type of the objects is usually detected automatically from the filename extension with the [classname]#FileTypeResolver# utility in Framework. If not, you can set it explicitly with [methodname]#setMimeType()#, as was done in the example above (where it was actually unnecessary). Some embeddable object types may require special support in the browser. You should make sure that there is a proper fallback mechanism if the browser does not support the embedded type.