Spread Studio for ASP.NET 7: 使用 js 设置 Spread 高度

论坛中有些用户提问想通过 JS 来设置 Spread Studio for ASP.NET 表格控件来控制 Spread 高度。本文章将阐述实现方法。实现背景:当用户发起针对含有 Spread 页面的请求时,Spread 在浏览器中被渲染成 HTML Table。

发布于 2013/06/07 00:00

SpreadJS

论坛中有些用户提问想通过 JS 来设置 Spread  Studio for ASP.NET 表格控件来控制 Spread 高度。本文章将阐述实现方法。

实现背景:

当用户发起针对含有 Spread 页面的请求时,Spread 在浏览器中被渲染成 HTML Table。

image

所以,我们在前台针对 Spread 操作时,除了使用 Spread 内置的一些事件和方法外,所有针对 Table 的 DOM 属性和 js 操作都试用于 Spread。

我们这次的实现方法就是针对 Spread 生成的 Table 进行操作实现。

首先,在 Spread 外部嵌套 Div 容器,HTML 代码如下:

<div id="spreadcontainer" style="width: 400px; height: 200px;">
        <FarPoint:FpSpread ID="FpSpread1" runat="server" BorderColor="Black" BorderStyle="Solid"
            BorderWidth="1px" Height="100%" Width="100%">
            <CommandBar BackColor="Control" ButtonFaceColor="Control" ButtonHighlightColor="ControlLightLight"
                ButtonShadowColor="ControlDark">
            </CommandBar>
            <Sheets>
                <FarPoint:SheetView SheetName="Sheet1">
                </FarPoint:SheetView>
            </Sheets>
        </FarPoint:FpSpread>
        <br />
        <input id="Button1" type="button" value="button" onclick="return Button1_onclick()" />
    </div>

通过 Html Button 点击事件触发 Spread 大小改变:

<script language="javascript" type="text/javascript">
// <![CDATA[

        function Button1_onclick() {
            var container = document.getElementById("spreadcontainer");

            var c1 = document.getElementById("FpSpread1_rowHeader");

            var c2 = document.getElementById("FpSpread1_view");

            container.style.height = "700px";

            c1.style.height = "649px";

            c2.style.height = "649px";
        }

// ]]>
    </script>

效果图如下:

 

Demo 下载:

VS2010 && .NET FrameWork 4.0 && Spread Studio for ASP.NET 7 表格控件

 下载

SpreadJS | 下载试用

纯前端表格控件SpreadJS,兼容 450 种以上的 Excel 公式,具备“高性能、跨平台、与 Excel 高度兼容”的产品特性,备受华为、苏宁易购、天弘基金等行业龙头企业的青睐,并被中国软件行业协会认定为“中国优秀软件产品”。SpreadJS 可为用户提供类 Excel 的功能,满足表格文档协同编辑、 数据填报、 类 Excel 报表设计等业务场景需求,极大的降低企业研发成本和项目交付风险。

如下资源列表,可以为您评估产品提供帮助:

相关产品
推荐相关案例
推荐相关资源
关注微信
葡萄城社区二维码

关注“葡萄城社区”

活字格低代码二维码

关注“活字格低代码”

想了解更多信息,请联系我们, 随时掌握技术资源和产品动态