我在这里的asp.net应用程序中使用了一个jquery页面拆分器插件:
我的页面结构如下:
// div1 holds the page header // div 2 holds some page content // div 3 - this holds the page splitter
拆分器插件要求我指定一个静态高度,这会在屏幕尺寸变化时产生问题。
我希望能够准确地设置页面拆分器高度,以便它适合任何屏幕大小,并且不会溢出,在页面中创建垂直滚动条。这样做有可能吗?
我有一个web服务,可以从中获取文本,并使用jquery的JSON $parseJSON将文本解析成文本。
客户端可以通过加载http://myserver/myfunction/{pagenumber}/{pagesize}从web服务获取数据。
这将返回一个对象。
{
total: <some int> //A number indicating the total number of records
rowsForPage: [......] //An array with just the rows for the requested page
}
如何将此端点用作Kend