AutoFill with Editor not sending all row data

AutoFill with Editor not sending all row data

minifiredragonminifiredragon Posts: 55Questions: 11Answers: 2
edited December 2019 in AutoFill

When I do a single row edit, it works, but when I do an auto fill, all it is sending is row id and changed data. I added in:

$j('#tProfit').on( 'click', 'tbody td:not(.readonly)', function (e)
        {
            //editor.inline( this );
            editor.inline( this, { submit: 'allIfChanged'} );
        }); 

and also tried

formOptions: {
        inline: {
            submit: 'allIfChanged'
        },
    },

I remember this working at one point in the past, not sure what I broke or why it stopped working.

Edited by Colin - Syntax highlighting. Details on how to highlight code using markdown can be found in this guide.

Answers

  • colincolin Posts: 15,112Questions: 1Answers: 2,583

    This thread should help, it's asking the same thing.

    Cheers,

    Colin

  • minifiredragonminifiredragon Posts: 55Questions: 11Answers: 2

    That does not work either.

  • minifiredragonminifiredragon Posts: 55Questions: 11Answers: 2

    I came to a solution that worked.

    formOptions: {
    bubble: {
    title: true,
    onBackground: false,
    submit: 'allIfChanged'
    }
    },

This discussion has been closed.