Bu bağlantıdan projem için jQuery'nin Datatable JS'si ile çalışmaya çalışıyorum .
Tüm kütüphaneyi aynı kaynaktan indirdim. Pakette verilen tüm örnekler iyi çalışıyor gibi görünüyor, ancak bunları benim WebForms
CSS'ye dahil etmeye çalıştığımda , JS hiç çalışmıyor.
İşte yaptığım şey:
<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>
Çözümümdeki JS ve CSS için dosya yapım aşağıdaki gibi görünüyor:
Kılavuzda gösterildiği gibi gerekli tüm JS ve CSS referanslarını ekledim. Yine de render beklendiği gibi değil. CSS yok ve JS bile çalışmıyor.
Ayrıca konsolda aşağıdaki hataları alıyorum:
ReferenceError: jQuery is not defined
TypeError: $(...).DataTable is not a function
Hala burada herhangi bir dinamik veriyi bağlamadım (bir tekrarlayıcı içinde olduğu gibi) hala çalışmıyor.
Birisi bana bu problem için doğru yönde rehberlik edebilir mi?