0

I am using jquery datatable plugin on my web application, with inline editing functionality. The default editing setup

$('#example').dataTable().makeeditable({
          null  //default editing
    });

only triggers the edit event once Enter button is pressed. Is there a way this can be changed to a 'click outside the box' event similar to how the select works

$('#example').dataTable().makeeditable({
          indicator: 'Saving...',
          tooltip: 'Click to select option',
          loadtext: 'loading...',
          type: 'select',
          onblur: 'submit',
          data: "{'A; A':'B; B'}"                                    
    });

1 Answer 1

1

Using Jeditable might be the ideal solution. Please check out the example here.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.