Make WordPress Core

Ticket #31634: 31634.1.diff

File 31634.1.diff, 2.2 KB (added by pareshradadiya, 10 years ago)

Patch updated

  • src/wp-admin/includes/class-wp-list-table.php

     
    445445
    446446                echo "</select>\n";
    447447
    448                 submit_button( __( 'Apply' ), 'action', '', false, array( 'id' => "doaction$two" ) );
     448                submit_button( __( 'Apply' ), 'action', '', false, array( 'id' => "doaction$two", 'disabled' => 'disabled' ) );
    449449                echo "\n";
    450450        }
    451451
  • src/wp-admin/js/inline-edit-post.js

     
    7070                                t.revert();
    7171                        }
    7272                });
    73         },
    7473
     74        //Enable and Disable Apply button
     75        $('select[name="action"], select[name="action2"]').change( function() {
     76           t.setApply();
     77        });
     78        //Enable and Disable Apply button
     79        $('table').find('.check-column :checkbox').on( 'click.wp-toggle-checkboxes', function() {
     80            t.setApply();
     81        });
     82
     83    },
     84
    7585        toggle : function(el){
    7686                var t = this;
    7787                $( t.what + t.getId( el ) ).css( 'display' ) === 'none' ? t.revert() : t.edit( el );
     
    309319                var id = $(o).closest('tr').attr('id'),
    310320                        parts = id.split('-');
    311321                return parts[parts.length - 1];
    312         }
     322        },
     323
     324    setApply: function() {
     325
     326      var bulk_action = $('select[name="action"]').val();
     327      var bulk_action2 = $('select[name="action2"]').val();
     328
     329
     330      var selected_rows_count = $('tbody th.check-column input[type="checkbox"]:checked').length;
     331
     332       //Check bulk action selector top value
     333       if( '-1' !== bulk_action && selected_rows_count > 0  ) {
     334
     335                   $('#doaction').removeAttr('disabled');
     336
     337        } else {
     338           $('#doaction').attr('disabled', 'disabled');
     339        }
     340
     341        //Check bulk action selector bottom value
     342        if(  '-1' !== bulk_action2 && selected_rows_count > 0 ) {
     343
     344                        $('#doaction2').removeAttr('disabled');
     345       } else {
     346            $('#doaction2').attr('disabled', 'disabled');
     347       }
     348
     349    }
     350
    313351};
    314352
    315353$( document ).ready( function(){ inlineEditPost.init(); } );