Unwanted encoding of attribute value with AttributeModifier behavior

2017-05-09 Thread abrosich
Hello, I'm trying to add a "onchange" attribute to an "input" tag. The onchange attribute contains javascript code with apostrophes ('). These apostrophes are encoded () in the resulting html. Java code ... new AttributeModifier("onchange", new

Re: Unwanted encoding of attribute value with AttributeModifier behavior

2017-05-09 Thread abrosich
Ok, thanks. Now it is clear. Regards A On Tue, 2017-05-09 at 14:26 +0200, Martin Grigorov wrote: > I'd just leave it as it is. > > You can switch it off by using component.setEscapeModelStrings(false) > but > this will disable the escaping for the component markup completely. > > The JS

Re: Unwanted encoding of attribute value with AttributeModifier behavior

2017-05-09 Thread abrosich
I'm sorry, I forgot to specify that it works well. It is just an aesthetic matter. Regards A On Tue, 2017-05-09 at 13:25 +0200, Martin Grigorov wrote: > Hi, > > Do you face issues with this quotes ? > I think they are harmless. The browser decodes them properly before > executing the JS