Skip to main content

When using a snippet to render a field with Skuid’s Javascript UI Field Renderer e.x. 


skuid.ui.fieldRenderers.TEXT.edit( argumentsn0], argumentsn1] );

it displays quotes as " (its HTML representation) and not as " (in the actual HTML its ")

Any updates on this? We use the Javascript renderer quite a bit and any field with an apostrophe or quote is rendered incorrectly.

Thanks in advance!


Try using the


skuid.utils.decodeHTML()

function.



From this link : http://help.skuid.com/m/11720/l/129517-skuid-utils


The value passed in to the custom renderer is already HTML encoded, the console will throw you off as it decodes the HTML-encoded characters. As Moshe suggested above decode the HTML before calling the render function on it.


Reply