I had exactly the same problem and don’t know the reason yet, but can provide a quick fix.
The problem occurs when trying to filter either for “Draft” objects or “All” objects. Firebug then tells me that /wp-admin/admin-ajax.php?&action=wpp_ajax_list_table returns HTTP Code 500, or if WP_DEBUG is set to “true”, it will return 200 but tell me of a “TypeError: json is null.”
{"sEcho":null,"iTotalRecords":3,"iTotalDisplayRecords":3,"aaData":null}
Since this happens on our servers but NOT on my local machine I suspect that it might be a server configuration issue.
While I couldn’t find the reason for this yet, something that works for me is commenting out line 246 in /wp-content/plugins/wp-property/core/ui/class_wpp_object_list_table.php like this:
// $image_thumb_obj = wpp_get_image_link( $post->featured_image, $overview_thumb_type, array( 'return' => 'array' ) );
This means that thumbnails will not be displayed anymore in the backend object list. However, I am now able to view and select “Draft” objects.