This example method shows all:

 

   function test() {
        var gridname = "<%= this.WebDataGrid1.ClientID %>";
        var grid = $find(gridname);
        var behav = grid.get_behaviors();
        var pagesize = behav.get_paging().get_pageSize();
 
 
        var rows = grid.get_rows();
        var row = rows.get_row(1); // 1 = your row index
        var cell = row.get_cell(3); // 0 = your cell index
 
 
        alert(cell.get_value());
    }
VN:F [1.1.6_502]
Rating: 3.5/5 (2 votes cast)
Share:
  • Digg
  • del.icio.us
  • Facebook
  • Google
  • DotNetKicks
  • LinkedIn
  • Live
  • MySpace
  • StumbleUpon
  • Technorati

Related posts:

  1. Persist selections on Infragistics WebDataGrid paging
  2. Reorder listbox items with JavaScript and ASP.NET
  3. Cloud vs Distributed vs Grid Computing
  4. Build DateTime from values
  5. Change attributes of items in a combobox