Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 582 Bytes

WEBCOMPONENT.md

File metadata and controls

27 lines (21 loc) · 582 Bytes

#Jexcel as a webcomponent

Jexcel v4+ can run as a javascript webcomponent.

<html>
<script type="text/javascript" src="/jexcel/v4/jexcel.js"></script>
<script type="text/javascript" src="/jexcel/v4/jexcel.webcomponent.js"></script>

<script type="text/javascript" src="/jsuites/v2/jsuites.js"></script>

<!-- The configuration goes as a inline JSON string -->
<jexcel-spreadsheet>
{
    "minDimensions": [10,10],
    "columns": [
        {
            "width": "200px",
            "title": "Name"
        }
    ]
}
</jexcel-spreadsheet>


</html>