Text in progress bar

Hi All,

Is there any possibility to add text in progress indicator?

Regards,
Harish

What kind of text you are after? The progress indicator has a caption as any Vaadin component, but the caption is positioned as the layout likes to position it. If you mean a text on top of the indicator, that is not possible cleanly out-of-the-box. You could wrap a Label and ProgressIndicator to a CssLayout and use absolute positioning for the text to place it to a desired location. If more control is needed, you can extend VProgressIndicator on GWT code and put a text there.

Thanks Johannes for your reply, I just implemented text above the progress indicator by changing position of caption in css.