Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须转义我的 Extjs 网格中的所有 HTML。我用了 gonfig :
return Ext.String.htmlEncode(value);
在我的专栏的渲染器中,它就像简单的 html 的魅力,如h1, b,i等。
h1
b
i
但是,如果我将以下代码放在一个单元格中:
<a href="#" onclick="alert('Alert !!')"> foo </a>
当我单击单元格时,将发送警报....
我怎么能阻止它?
此问题的解决方法在这里:
http://non-stop-ext.blogspot.com/2013/02/gridpanel-with-special-characters-and.html