मैं इस लिंक से अपनी परियोजना के लिए jQuery के डेटाटेबल जेएस के साथ काम करने की कोशिश कर रहा हूं ।
मैंने उसी स्रोत से पूरी लाइब्रेरी डाउनलोड की। पैकेज में दिए गए सभी उदाहरण ठीक काम करने लगते हैं, लेकिन जब मैं उन्हें अपने में शामिल करने की कोशिश करता हूं WebForms
, तो सीएसएस, जेएस बिल्कुल भी काम नहीं करते हैं।
यहाँ मैंने क्या किया है:
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link href="css/jquery.dataTables.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<div>
<table id="myTable" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</tfoot>
<tbody>
<!-- table body -->
</tbody>
</table>
</div>
<script src="js/jquery.dataTables.js" type="text/javascript"></script>
<script src="js/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#myTable').DataTable();
});
</script>
</form>
</body>
</html>
मेरे समाधान में जेएस और सीएसएस के लिए मेरी फाइल संरचना इस प्रकार है:
मैंने सभी आवश्यक जेएस और सीएसएस संदर्भों को जोड़ दिया है जैसा कि मैनुअल में दिखाया गया है। अभी भी प्रतिपादन उम्मीद के मुताबिक नहीं है। कोई CSS नहीं है और यहाँ तक कि JS काम नहीं करता है।
कंसोल में भी मुझे निम्न त्रुटियां मिलती हैं:
ReferenceError: jQuery is not defined
TypeError: $(...).DataTable is not a function
मैंने अभी भी यहां कोई डायनेमिक डेटा बाध्य नहीं किया है (जैसे कि एक पुनरावर्तक या तो) अभी भी यह काम नहीं कर रहा है।
क्या कोई मुझे इस समस्या के लिए सही दिशा में मार्गदर्शन कर सकता है?