Opened 15 years ago
Last modified 5 years ago
#12826 new enhancement
AJAX trash posts
Reported by: | meheranandk | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 2.9 |
Component: | Posts, Post Types | Keywords: | has-patch needs-refresh |
Focuses: | javascript | Cc: |
Description (last modified by )
Add AJAX to trash posts, like comment moderation.
From GSoC ideas list:
Add AJAX Paging to Admin Screens. Something we've never gotten around to is adding AJAX paging to the list-type screens (edit.php, etc). Currently, getting to the next page of items means a screen refresh. For this project, add ajax paging to all the list-type screens in the WordPress admin. We have all the underlying PHP, but it needs some JavaScript love.
Attachments (2)
Change History (11)
#1
@
15 years ago
- Component changed from General to Trash
- Description modified (diff)
- Summary changed from AJAXifying WP Admin Panel interface to AJAX trash posts
- Version set to 2.9
#2
@
14 years ago
- Cc aaron@… added
What is the performance difference between:
current_element.parent().parent().parent().parent().children("th,td:not(.undo-trash)").each(function(){ /*do something */ });
and
current_element.parents('tr').children("th,td:not(.undo-trash)").each(function(){ /*do something */ });
I know the latter seems much more straight forward
Note: See
TracTickets for help on using
tickets.
JS file for AJAX Trash. (Place in wp-admin/js directory)