How to set value to texbox inside html table
Hi all,in my application, i want to set the value of textbox inside html table.
following is my code
var m = 1;
for (m; m <= cnt; m++) {
$("#grdtable").find("tr").eq(m).find("td").eq(1).text(data.d[m - 1].Vlnaccount);
//$("#grdtable").find("tr").eq(m).find("td").eq(1).$('input[type = text]').val(data.d[m - 1].Vlnaccount);
}
the above working but it is not setting the value to textbox.,but it set the value to td.and textbox is not showing.
my requirement is to set value inside textbox .
how to solve it.
Regards
Baiju