Class tlv8.exportbar
exportbar工具栏组件
Class Summary
exportbar
tlv8.exportbar(div, expid, canprint, isword, isexcel, ispdf)
exportbar工具栏组件
C
lass Detail
exportbar tlv8.exportbar(div, expid, canprint, isword, isexcel, ispdf)
exportbar工具栏组件
Parameters:
div
{Element div}
[required]
用于显示工具栏的DIV标签
expid
{Element id}
[required]
需要导出或打印的表单ID或DOM对象ID
canprint
{boolean}是否可以打印
isword
{boolean}是否可以导出Word
isexcel
{boolean}是否可以导出Excel
ispdf
{boolean}是否可以导出PDF
Returns:
{exportbar}
Example:
<div id="exportbar"></div>
<script type="text/javascript">
tlv8.exportbar(J$("exportbar"),"mainLayoutTable",true,true,true,true);
</script>