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

Aryan1703Aryan1703 Posts: 65Questions: 15Answers: 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

  • colincolin Posts: 15,176Questions: 1Answers: 2,589
    Answer ✓

    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

  • Aryan1703Aryan1703 Posts: 65Questions: 15Answers: 1

    Thanks, that's what I was looking for!

Sign In or Register to comment.