I need to implement inline editing without any editor popup.Is there any to implement this?
I need to implement inline editing without any editor popup.Is there any to implement this?
Deepti Sharma
Posts: 5Questions: 2Answers: 0
I need to implement inline editing without any editor popup.Is there any to implement this?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Do you mean like this?
Allan
I want to add textbox in one column. I have done it like this:-
render: function (data, type, full, meta) {
return '<input type="text" name="edit" value="'+$('<div/>').text(data).html()+'">'
}
Now all I required is it's value on submit button.
How can I get it's changed value?
jQuery's
$().val()
method would be the normal way. You could also get it from the DOM directly using the element's.value
property.Allan
I was struggling to get value of textbox for all selected checkbox.
This issue has been fixed.
Thanks for help.