Clickable text

2008-12-15 Thread Smith
All, Is there a way to add some clickable text into a panel? I am aware of Hyperlink, but I don't need history support. All I need is to show another panel when a text is clicked on. --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: Clickable text

2008-12-15 Thread Kevin Tarn
() == Event.ONCLICK) { // do something } } Best Kevin On Mon, Dec 15, 2008 at 11:07 PM, Smith smitha.kang...@gmail.com wrote: All, Is there a way to add some clickable text into a panel? I am aware of Hyperlink, but I don't need history support. All I need is to show another panel when

Re: Clickable text

2008-12-15 Thread Smith
onBrowserEvent(Event event) {     super.onBrowserEvent(event);     if (event.getTypeInt() == Event.ONCLICK) {          // do something     } } Best Kevin On Mon, Dec 15, 2008 at 11:07 PM, Smith smitha.kang...@gmail.com wrote: All, Is there a way to add some clickable text into a panel? I am

Re: Clickable text

2008-12-15 Thread Jason Morris
PM, Smith smitha.kang...@gmail.com wrote: All, Is there a way to add some clickable text into a panel? I am aware of Hyperlink, but I don't need history support. All I need is to show another panel when a text is clicked on. --~--~-~--~~~---~--~~ You

Re: Clickable text

2008-12-15 Thread rakesh wagh
; } On Dec 15, 9:07 am, Smith smitha.kang...@gmail.com wrote: All, Is there a way to add some clickable text into a panel? I am aware of Hyperlink, but I don't need history support. All I need is to show another panel when a text is clicked on. --~--~-~--~~~---~--~~ You

Re: Clickable text

2008-12-15 Thread rakesh wagh
fyi: The above widget also has a enable/disable functionality which is missing in a regular hyperlink. (The functionality is not fully tested). Use the widget at your own risk(if you have to). But I dont see any reason why it should fail. Rakesh Wagh