admin.js 494 B

12345678910111213141516171819
  1. $(function() {
  2. if($('#sortable').length != 0){
  3. $( "#sortable" ).sortable({
  4. items: "tr:not(.tr-state-disabled)",
  5. update: function( event, ui ) {
  6. if( ajaxs = $(this).attr("data-ajax")){
  7. var order = $(this).sortable('serialize');
  8. console.log(order);
  9. $.post( ajaxs, order, function( data ) {
  10. if( data.status != 'ok' ){
  11. alert("Не записано!!");
  12. }
  13. },"json");
  14. }
  15. }
  16. });
  17. }
  18. });