Hi friends
i have a gridview with id gvcustomers...it has tow columns latitudes and longitudes
i want to loop thoiugh the gridview on the client side and get the values
like this...but the problem i have is mentioned in the comments below
var theGridView = document.getElementById('<%=gvCustomers.ClientID%>');
for (var rowCount = 1; rowCount < theGridView.rows.length; rowCount++) {
/// the numbers in the array are lats and longs which are hard //coded...this where i want the latitude and longitude colmn to come..
var latlongs = new Array(new VELatLong(45, -110), new VELatLong(45, -114), new VELatLong(45, -90), new VELatLong(45, -95));
// }
How can i achieve this...thank you
akpaga
Senior Apprentice
Senior Apprentice
LTD Bronze - Rating: 3
Posts: 167
Joined: Wed May 27, 2009 4:15 pm
Unrated
i have a gridview with id gvcustomers...it has tow columns latitudes and longitudes
i want to loop thoiugh the gridview on the client side and get the values
like this...but the problem i have is mentioned in the comments below
var theGridView = document.getElementById('<%=gvCustomers.ClientID%>');
for (var rowCount = 1; rowCount < theGridView.rows.length; rowCount++) {
/// the numbers in the array are lats and longs which are hard //coded...this where i want the latitude and longitude colmn to come..
var latlongs = new Array(new VELatLong(45, -110), new VELatLong(45, -114), new VELatLong(45, -90), new VELatLong(45, -95));
// }
How can i achieve this...thank you
akpaga
Senior Apprentice
Senior Apprentice
LTD Bronze - Rating: 3
Posts: 167
Joined: Wed May 27, 2009 4:15 pm
Unrated
Comment