Can I make a colum non editable in table view but editable in record view

Can I make a colum non editable in table view but editable in record view

techbottechbot Posts: 9Questions: 4Answers: 0

Hi Allan,
I want to use my customer_ref column as a link to the customer rather than be inline edited. http://yacht.emc23.com/ So the editting would need to be in the modal popup.

Is this possible?

Answers

  • allanallan Posts: 61,840Questions: 1Answers: 10,134 Site admin

    It looks like you might have already done it - is that correct?

    You are using:

        $('#myTable').on('click', 'tbody td:not(:first-child, :nth-child(3))', function (e) {
            editor.inline(this);
        });
    

    which looks correct to me.

    Allan

This discussion has been closed.