cubbuk
cubbuk

Reputation: 7920

"Unexpected token ERROR found" error shown at netbeans working on a jsf project for percent (%) character

I am facing a strange issue with netbeans and jsf, it is not fatal but quite annoying.

For some reason I am getting the error "Unexpected character % found Unexpected token ERROR found" from netbeans for the following code block.

It is complaining about the percent sign, do you have any idea how to resolve this? I tried to escape it with xml encoding of percent with "%" but then it started complaining about & character..

<div class="bar" style="width: #{cc.value.relevance}%;"></div>

Upvotes: 2

Views: 2178

Answers (1)

TalesTk
TalesTk

Reputation: 181

Imho, You should add a cast like:

object.toString().append("%");

before it gets call by the front-end.

Upvotes: 1

Related Questions