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 SharmaDeepti 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

Answers

  • allanallan Posts: 61,451Questions: 1Answers: 10,055 Site admin

    Do you mean like this?

    Allan

  • Deepti SharmaDeepti Sharma Posts: 5Questions: 2Answers: 0

    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?

  • allanallan Posts: 61,451Questions: 1Answers: 10,055 Site admin
    Answer ✓

    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

  • Deepti SharmaDeepti Sharma Posts: 5Questions: 2Answers: 0

    I was struggling to get value of textbox for all selected checkbox.
    This issue has been fixed.
    Thanks for help.

This discussion has been closed.