render_row_html() protected method

Render the final html that is displayed in the table.
protected render_row_html ( )
    /**
     * Render the final html that is displayed in the table.
     */
    protected function render_row_html()
    {
        if ($this->get_option('raw')) {
            parent::render_row_html();
        } else {
            ?>
			<tr class="<?php 
            echo $this->display ? '' : 'papi-hide';
            ?>
">
				<td colspan="2">
					<?php 
            $this->render_property_html();
            ?>
				</td>
			</tr>
			<?php 
        }
    }