jqwidgets-scripts-custom
Version:
jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.
52 lines (50 loc) • 2.16 kB
HTML
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="ReactJS TreeGrid" />
<title id='Description'>
ReactJS Tree Grid demo. The sample illustrates how to customize the TreeGrid cells rendering
</title>
<meta name="description" content="This React Tree Grid demo showcases how to render grid cells under some conditions"/>
<link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" />
<script type="text/javascript" src="../../../jqwidgets/jqxcore.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxdata.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxbuttons.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxscrollbar.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxdatatable.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxtreegrid.js"></script>
<script type="text/javascript" src="../../../scripts/demos.js"></script>
<style>
.green-arrow-up {
position: relative;
top: -10px;
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid #028b2b;
}
.red-arrow-down {
position: relative;
top: 10px;
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid #e91b1b;
}
.conditionalFormatting {
background: white ;
}
</style>
</head>
<body>
<div class="example-description" style="margin-bottom: 3em">
ReactJS Tree Grid demo. The sample illustrates how to customize the TreeGrid cells rendering
</div>
<div id="app"></div>
<script src="../build/treegrid_conditionalrendering.bundle.js"></script>
</body>
</html>