TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Durga Velusamy
NA
318
115.2k
how to change these code to get with editable
Jul 3 2015 2:48 AM
using below function iam retrieving data to front end of table
my need is after retrieve i need to edit or delete with help of one of the value of retrieved value.
function addRow(tableid,result)
{
var table=document.getElementById("tableid");
var rowcount=table.rows.length;
var row=table.insertRow(rowcount);
var colcount=table.rows[0].cells.length;
for(var i=0;i<colcount;i++)
{
var newcell= row.insertCell(i);
switch(i)
{
case 0:
here i need get result with textbox not a lable how to get this else
i need to assign id to that label.
newcell.innerHTML = result.empno;
break;
case 1:
newcell.innerHTML=result.degree;
break;
case 2:
newcell.innerHTML=result.year;
break;
Reply
Answers (
0
)
How to display images in mvc
Problem in MVC Controller