当前位置: 首页 > 网络学院 > 客户端脚本教程 > APPML > Filters 属性
The filters attribute is used to remove the filter function from the HTML report (no search allowed in the report).
filters属性的作用是:从HTML报告(不允许在报告中进行搜索)中,删除过滤掉的函数。
<?xml version="1.0" ?> <appml> <title>CUSTOMERS</title> <database> <filters> <htmlreport filters="off" /> </appml> |
View the output produced by the HTML Report Service
查看由AppML HTML 报告服务输出的结果
View the XML source file
查看XML 源文件
The example below has no filters="off" attribute and allows you to filter the report:
下面的案例不包含 filters="off" 属性,并允许你过滤报告:
<?xml version="1.0" ?> <appml> <title>CUSTOMERS</title> <database> <filters> <htmlreport /> </appml> |
View the output produced by the HTML Report Service
查看由AppML HTML 报告服务输出的结果
View the XML source file
查看XML 源文件