0

I set footer for Ultrawebgrid and its working Fine. But for some other uses i need to access the footer Value of ultrawebgrid . So i need to know how to get footer value of ultrawebgrid by using java script.

Damyan Petev
  • 1,585
  • 7
  • 10
Karthikeyan
  • 333
  • 5
  • 17

1 Answers1

2

You need to get the column and that can be used to get the text of the footer with the getFooterText method.

For example:

var grid = igtbl_getGridById(gridName);
var text = grid.Bands[0].Columns[2].getFooterText();

You may want to review the Client Side Object Model in the documentation as well.

alhalama
  • 3,218
  • 1
  • 15
  • 21