为了提高开发效率,单位准备购买DevExpress套件包。东西不错,可是熟悉起来需要一个过程,现在基本上处于看着文档摸索的阶段,所以写下这篇blog,以总结在使用DevExperss控件包中遇到的问题。
去除试用版的提示信息:
因为公司的购买还没有申请下来,所以我目前是用的试用版在学习,这样在设计的每一个页面都有如下的提示文字:
This application was created using the
TRIAL version of the ASPx controls.
Visit www.devexpress.com to obtain a
licensed copy.
很烦人,于是我便通过js操作,将这行文字给隐藏了。方法如下:
在页面的</body>标签前加入
<script type="text/javascript">
var divObjs = document.getElementsByTagName("div");
for( var i = 0; i < divObjs.length; i++){
if ( divObjs[i].innerText.indexOf("This application was created using the TRIAL version of the ASPx controls") > -1) {
divObjs[i].style.display = "none"; }}
</script>
var divObjs = document.getElementsByTagName("div");
for( var i = 0; i < divObjs.length; i++){
if ( divObjs[i].innerText.indexOf("This application was created using the TRIAL version of the ASPx controls") > -1) {
divObjs[i].style.display = "none"; }}
</script>
这样就可以起到隐藏提示信息的目的,但有一个缺点是每次页面加载时,提示信息是闪一下才消息的。看来,还是得快些弄个正式版用啊。