Hi,
I’d like to embed a spreadsheet widget as a small part of a big(ger) page. Somethin like:
<div id=<b>"box"</b> style="with:600px;height:480px;"></div>
<script type="text/javascript">
webix.ready(function (){
webix.ui({
container: <b>"box"</b>,
view: "spreadsheet",
math: true,
liveEditor: true,
data: data
});
});
</script>
I found this for the barcode widget, but it does not work as intended
How can I use a spreadsheet widget in a div container?