what widget to display status?

2009-01-27 Thread tony.p..
Hello all, I'm developing a gwt app and in it I want to display error messages, status, etc... to the user in a widget. I want to display it in a gray color, to distinguish it from the rest of the content. I used a label, but it's not that pretty. What widget do you recommend? Thank you. Tony --

Re: what widget to display status?

2009-01-28 Thread Litty Preeth
You can make the label "pretty" using CSS. - Litty On Tue, Jan 27, 2009 at 11:23 PM, tony.p.. wrote: > > Hello all, > > I'm developing a gwt app and in it I want to display error messages, > status, etc... to the user in a widget. I want to display it in a gray > color, to distinguish it from t

Re: what widget to display status?

2009-01-28 Thread tony.p..
Thank you Litty. I added css to the Label and it does look better. But still wondering if this is the best practice to implement a status Widget for users. Thanks again, Tony On Jan 28, 7:16 am, Litty Preeth wrote: > You can make the label "pretty" using CSS. > > - Litty > > On Tue, Jan 27, 200

Re: what widget to display status?

2009-01-28 Thread Litty Preeth
Well that depends on ur requirement Well for displaying error messages and status i think Label is the one Dont worry... Label is just a DIV whose innerText is set. I use that only in my project for thoes purposes On Thu, Jan 29, 2009 at 7:15 AM, tony.p.. wrote: > > Thank you Litty.

Re: what widget to display status?

2009-01-29 Thread tony.p..
Sounds good, I'll use the Label. Thanks a lot. Tony On Jan 28, 10:42 pm, Litty Preeth wrote: > Well that depends on ur requirement Well for displaying error messages > and status i think Label is the one Dont worry... Label is just a DIV > whose innerText is set. I use that only in my p