Disable auto increment option in AutoFill

Disable auto increment option in AutoFill

nhinzenhinze Posts: 7Questions: 2Answers: 0

I would like to use the AutoFill feature to only copy values. Therefore, I would like it to be the default behavior and remove the popup asking if the values should be incremented or copied. Is this possible?

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 65,056Questions: 1Answers: 10,772 Site admin
    Answer ✓
    delete DataTable.AutoFill.actions.increment;
    

    before your initialisation of the DataTable will do it.

    Allan

Sign In or Register to comment.