Hi,
Without using Form view or Details View control....How to acheive the Following in a html Table
| Column 1 | Value 1 |
| Column 2 | Value 2 |
| EDIT |
| 1 2 |
| Column 1 | Value 1 |
| Column 2 | Value 2 |
| EDIT |
| 1 2 |
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question.
ajeeshkumar nPosted Jun 19, 2017, 6:07 AM
Rasmita DashPosted Oct 30, 2014, 2:03 PM
Say I have a list of objects in LstObjs
var TableHtml =
"
for(var i=0; i
TableHtml += "
}
TableHtml += "
Let's keep it in a div,
divTableHolder.InnerHtml(TableHtml);
Hope it helps...