使用 Ext JS 开发 Visualforce 页面
我相信 Salesforce 已经开始使用 Ext JS。只是想知道是否有人尝试过将 Ext JS 与 Visualforce 结合使用。我尝试过,但似乎与 Salesforce 的现有 Ext JS 产生了一些冲突。
I believe Salesforce has started using Ext JS. Just curious to know if anyone has tried using Ext JS with Visualforce. I tried it but seems causing some conflict with existing Ext JS of Salesforce.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Ext JS 是否支持类似于 jQuery 的兼容性选项?使用 jQuery,我总是将 javascript 的第一行设置为
jQuery.noConflict();
,从那时起,我总是使用jQuery(".class")
而不是$ (".class")
例如,这可以防止我与 SFDC 在每个页面上自动包含的 jQuery 文件发生冲突问题。Does Ext JS support a compatibility option similar to jQuery? With jQuery I always make the first line of my javascript
jQuery.noConflict();
and from then onwards always usejQuery(".class")
rather than$(".class")
for instance, this prevents me from having conflict issues with the jQuery file that SFDC includes automatically on each page.