如何取得DataGrid的資料總筆數?
可以在DataGrid_OnLoad的時機點取得資料總筆數,如下:
function dgMaster_onLoad(data)  
{  
        alert(data.total);  
}