Skip to content Skip to sidebar Skip to footer

Jquery Datatables Add Row

I'm trying to create a table that a user can add, edit, and delete elements in. I'm using the datatables plugin. Here's the tutorial for what I want to do. Here is my html code: &l

Solution 1:

Change this part:

    }
    $("#submit").show();
    window.scrollTo(0,document.body.scrollHeight);
});

to this:

    $("#submit").show();
    window.scrollTo(0,document.body.scrollHeight);

(Remove the extra } and });

Solution 2:

.ui-dialog 
{ 
    margin-top:-300px;margin-left:400px;
}

Post a Comment for "Jquery Datatables Add Row"