首页 > Web开发 > 详细

js循环GridView判断CheckBox是否全部未选中

时间:2014-08-05 22:05:00      阅读:356      评论:0      收藏:0      [点我收藏+]

function isQueryPriceReplyProduct() {

   var gridItem;

   var itemIndex = 0;

   var IDS = ‘‘;

   while (gridItem = dgQueryPriceReplyProduct.Table.GetRow(itemIndex)) {

       itemIndex++;

       if (!gridItem.Cells[0].Value) {

          continue;

       }

       IDS += gridItem.Cells[1].Value + ‘,‘

   }

   if (new String(IDS).length == 0) {

        messageTips("请选择至少一行数据", ‘e‘);

        return false;

   }

   return true;

}

 

js循环GridView判断CheckBox是否全部未选中,布布扣,bubuko.com

js循环GridView判断CheckBox是否全部未选中

原文:http://www.cnblogs.com/lijie20111015/p/3893007.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!