Is there any way to edit two fields that are rendered in inline editing
Is there any way to edit two fields that are rendered in inline editing
Aryan1703
Posts: 73Questions: 19Answers: 1
{
data: "leadLRV",
editField: "R.leadLRV",
class: "text-center",
render: function (data, type, row, meta) {
var lead = row.leadLRV;
var trail = row.trailLRV;
return lead + "/" + trail;
}
},
I am displaying two vehicle where i want to edit both through in-line if possible
Thanks
This question has an accepted answers - jump to answer
Answers
Because the fields are joined, it wouldn't be possible to inline edit those. You could try bubble editing instead as an alternative, demonstrated in this example here, as a way to not display the whole form.
Colin
Thanks, that's what I was looking for!