Radio button in a cell losing its focus on sort
OK, so I put a radio button in one my cells and even assigned an onchange function that works. But after I have selected the button (so it is filled in) and then do a sort, the button then loses its selection and appears empty again.
Any thoughts on fixing this?
Here's some sample data:
var dataList =
[
['<input onselect="loadPADDetail(this)" onclick="loadPADDetail(this)" id="listF120158" name="listF120158" type="radio" alwaysEnabled="true" value="001"></input>', "001", "7", "01/08/2003", "", "N", "50.05", "xxx", "Bank of America, National Association", "xxx"],
['<input onselect="loadPADDetail(this)" onclick="loadPADDetail(this)" id="listF120158" name="listF120158" type="radio" alwaysEnabled="true" value="002"></input>', "002", "5", "01/10/2003", "01/10/2004", "A", "50.05", "xxx", "Bank of America, National Association", "xxx"],
['<input onselect="loadPADDetail(this)" onclick="loadPADDetail(this)" id="listF120158" name="listF120158" type="radio" alwaysEnabled="true" value="003"></input>', "003", "8", "01/10/2003", "02/00/2003", "N", "50.50", "xxx", "Bank of America, National Association", "xxx"],
['<input onselect="loadPADDetail(this)" onclick="loadPADDetail(this)" id="listF120158" name="listF120158" type="radio" alwaysEnabled="true" value="004"></input>', "004", "9", "01/08/2003", "02/00/2003", "N", "55.55", "xxx", "Bank of America, National Association", "xxx"],
]
;
Any thoughts on fixing this?
Here's some sample data:
var dataList =
[
['<input onselect="loadPADDetail(this)" onclick="loadPADDetail(this)" id="listF120158" name="listF120158" type="radio" alwaysEnabled="true" value="001"></input>', "001", "7", "01/08/2003", "", "N", "50.05", "xxx", "Bank of America, National Association", "xxx"],
['<input onselect="loadPADDetail(this)" onclick="loadPADDetail(this)" id="listF120158" name="listF120158" type="radio" alwaysEnabled="true" value="002"></input>', "002", "5", "01/10/2003", "01/10/2004", "A", "50.05", "xxx", "Bank of America, National Association", "xxx"],
['<input onselect="loadPADDetail(this)" onclick="loadPADDetail(this)" id="listF120158" name="listF120158" type="radio" alwaysEnabled="true" value="003"></input>', "003", "8", "01/10/2003", "02/00/2003", "N", "50.50", "xxx", "Bank of America, National Association", "xxx"],
['<input onselect="loadPADDetail(this)" onclick="loadPADDetail(this)" id="listF120158" name="listF120158" type="radio" alwaysEnabled="true" value="004"></input>', "004", "9", "01/08/2003", "02/00/2003", "N", "55.55", "xxx", "Bank of America, National Association", "xxx"],
]
;
Chadd Whistler
February 24,