ASP .NET Core MVC Documentation
Getting Started
The jqxPanel widget represents a UI Panel component. This widget is a container for other widgets or elements. It automatically adds horizontal and vertical scrollbars, if the content is not fully visibleEvery ASP .NET Core Mvc Tag Helper from jQWidgets toolkit needs its JavaScript files to be included in order to work properly.
jqxPanel requires the following files:
CSS
jqx.base.css
Javascript
jqxcore.js
jqxbuttons.js
jqxscrollbar.js
jqxpanel.js
To call a function(method), you need to pass the method name and parameters(if any) in the UI component’s instance.<script src="~/jqwidgets/jqxbuttons.js"></script>
<script src="~/jqwidgets/jqxscrollbar.js"></script>
<script src="~/jqwidgets/jqxpanel.js"></script>
<jqx-panel auto-update="true">
<jqx-panel-body>
<div style='margin: 10px;'>
<h3>Early History of the Internet</h3>
</div>
<!--Content-->
<div style='white-space: nowrap;'><ul><li>1961 First packet-switching papers</li><li>1966 Merit Network founded</li><li>1966 ARPANET planning starts</li><li>1969 ARPANET carries its first packets</li><li>1970 Mark I network at NPL (UK)</li><li>1970 Network Information Center (NIC)</li><li>1971 Merit Network's packet-switched network operational</li><li>1971 Tymnet packet-switched network</li><li>1972 Internet Assigned Numbers Authority (IANA) established</li><li>1973 CYCLADES network demonstrated</li><li>1974 Telenet packet-switched network</li><li>1976 X.25 protocol approved</li><li>1979 Internet Activities Board (IAB)</li><li>1980 USENET news using UUCP</li><li>1980 Ethernet standard introduced</li><li>1981 BITNET established</li></ul></div></jqx-panel-body></jqx-panel>
<script src="~/jqwidgets/jqxbuttons.js"></script>
<script src="~/jqwidgets/jqxscrollbar.js"></script>
<script src="~/jqwidgets/jqxpanel.js"></script>
<jqx-panel instance="getInstance()">
<jqx-panel-body>
<div style='margin: 10px;'>
<h3>Early History of the Internet</h3>
</div>
<!--Content-->
<div style='white-space: nowrap;'><ul><li>1961 First packet-switching papers</li><li>1966 Merit Network founded</li><li>1966 ARPANET planning starts</li><li>1969 ARPANET carries its first packets</li><li>1970 Mark I network at NPL (UK)</li><li>1970 Network Information Center (NIC)</li><li>1971 Merit Network's packet-switched network operational</li><li>1971 Tymnet packet-switched network</li><li>1972 Internet Assigned Numbers Authority (IANA) established</li><li>1973 CYCLADES network demonstrated</li><li>1974 Telenet packet-switched network</li><li>1976 X.25 protocol approved</li><li>1979 Internet Activities Board (IAB)</li><li>1980 USENET news using UUCP</li><li>1980 Ethernet standard introduced</li><li>1981 BITNET established</li></ul></div></jqx-panel-body></jqx-panel>@section scripts {<script type="text/javascript">function getInstance(instance) {instance["append"](document.createElement('div'));}</script>}