本文介绍了使用jquery绑定gridview的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
function BindGrid(){
var TableView = $ find(<%= RadGridCompany.ClientID%>)。get_masterTableView();
var currentPageIndex = TableView.get_currentPageIndex();
var pagesize = TableView.get_pageSize();
PageMethods.ListOrgLicense(OnsucessGetLicense);
}
函数OnsucessGetLicense(结果){
var RadGrid = $ find(<%= RadGridCompany.ClientID%>)。get_masterTableView();
RadGrid.set_dataSource(result);
if(result.length> 0){
RadGrid.set_virtualItemCount(result.length);
$(#divSetConfig)。hide();
$(#divGrid)。show();
}
else {
RadGrid.set_virtualItemCount(0);
$(#divSetConfig)。show();
$(#divGrid)。hide();
}
RadGrid.dataBind();
}
我尝试过:
使用jquery绑定gridview
解决方案
function BindGrid() { var TableView = $find("<%=RadGridCompany.ClientID %>").get_masterTableView(); var currentPageIndex = TableView.get_currentPageIndex(); var pagesize = TableView.get_pageSize(); PageMethods.ListOrgLicense(OnsucessGetLicense); } function OnsucessGetLicense(result) { var RadGrid = $find("<%=RadGridCompany.ClientID %>").get_masterTableView(); RadGrid.set_dataSource(result); if (result.length > 0) { RadGrid.set_virtualItemCount(result.length); $("#divSetConfig").hide(); $("#divGrid").show(); } else { RadGrid.set_virtualItemCount("0"); $("#divSetConfig").show(); $("#divGrid").hide(); } RadGrid.dataBind(); }
What I have tried:
bind gridview using jquery
解决方案
这篇关于使用jquery绑定gridview的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!