ZK - Open Source Ajax Java FrameworkZK - Open Source Ajax Java Framework

Text Highlighting

Fabiosimao
7 Jan 2012 00:09:59 GMT
7 Jan 2012 00:09:59 GMT

Hi there!

Can anyone tell me if it is possible to highlight text in a textbox? I'm doing a text search application and i need to highlight all the occurrences in a text. Any clue?

Thanks in advance!

hawk
16 Feb 2012 07:51:53 GMT
16 Feb 2012 07:51:53 GMT

Hi,
Unless you change the DOM element with JavaScript by yourselves... I think it's hard to do it by Java component.

Fabiosimao
16 Feb 2012 12:52:12 GMT
16 Feb 2012 12:52:12 GMT

Ok, thank you for your reply ;)

hawk
17 Feb 2012 06:13:10 GMT
17 Feb 2012 06:13:10 GMT

Hi,

I found textbox is an <input> html element.

<input type="text" value="abc" class="z-textbox" id="bKJC2">

input text is its "value" attribute's value, even javascript can't only highlight part of text.