extract html from datatable

I have this webix databable
http://webix.com/snippet/3f46c4a7

I need to extract only the pure html code
like this:

<table>
<tr>
   <td>Film title</td>
    <td>Released</td>
    <td>votes</td>
  </tr>
  <tr>
    <td>The Shawshank Redemption</td>
    <td>1994</td>
    <td>678790</td>
  </tr>
  <tr>
    <td>The Godfather</td>
    <td>1972</td>
    <td>511495</td>
  </tr>
</table>

there is a webix command to do this?

ui.datatable works with JSON. You can only parse the HTML-data as described here, but Webix hasn’t any built-in feature for your task.

You can get the JSON data via

datatable.serialize()

and then convert it into HTML using some custom function.