Page 1 of 1

Rich Text Value

Posted: 13 Nov 2018
by ksertkaya
Hi,

I get column value with this code. Column type is "Enhanced rich text". But it shows nonsensical symbols. How can I fix it?

Code: Select all

var sonAciklama = fd.relatedItems(0).data('ctx').ListData.Row[0].Aciklama;
Screenshot_21.png
Screenshot_21.png (32.83 KiB) Viewed 2100 times
Best Regards.

Re: Rich Text Value

Posted: 14 Nov 2018
by AlexZver
Hi!

Please check this code:

Code: Select all

var sonAciklama = $(fd.relatedItems(0).data('ctx').ListData.Row[0].Aciklama).text();

Re: Rich Text Value

Posted: 15 Nov 2018
by ksertkaya
Thanks :)