EditableGrid Delete Select All UnSelectAll

CodeCharge Studio 2.x, 3.x, 4.x, 5.x
回覆文章
yehlu
Site Admin
文章: 3245
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

EditableGrid Delete Select All UnSelectAll

文章 yehlu »

Add Html

代碼: 選擇全部

//End Common Script End

$(function(){
        //---全選----
        $(".check_all").click(function(){
                var checkbox1 = $(this).parent().find('input[id$="_Delete_1"]').prop("checked");
                if (checkbox1) {
	                    $(this).parent().find('input[id*="_Delete_"]').prop('checked', false);
                } else {
	                    $(this).parent().find('input[id*="_Delete_"]').prop('checked', true);                        
                }
        });
});

//End CCS script

代碼: 選擇全部

<input type='button' value='全選/全不選' class='check_all'>
回覆文章

回到「CodeCharge Studio」