how to get the footer row textbox value of the gridview using javascript

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • baburmm
    New Member
    • Sep 2008
    • 12

    how to get the footer row textbox value of the gridview using javascript

    hello friends i want to get the footer row textbox value of the gridview using javascript for validating it.
    how can i get it is there any coding
    pls help me

    Thanks in advance,
    Regards.
    Babu.K
  • dmj07
    New Member
    • Aug 2008
    • 55

    #2
    Try this hope it works

    function find()
    {
    var box = $find('TextBox' ); //Replace with id of text box as shown on rendered page

    var total = box.value; //This will give value of text box
    }

    Comment

    Working...