Задать вопрос
@artshelom

$(...).sortable is not a function как исправить??

Загрузку модуля присутствует, но почему-то пишет, что функция не найдена. Как исправить??
<table id="tablloci">
	<tr>
		<td colspan="2">
			<input class="nwloci" type="text" value="" placeholder="" title="">
		</td>
	</tr>
	<tr class="sortable"><td>1</td><td><input class="point" type="text" value="sad1"><span class="idpoint">1</span></td></tr>
	<tr class="sortable"><td>2</td><td><input class="point" type="text" value="sad2"><span class="idpoint">1</span></td></tr>
</table>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="//ajax.aspnetcdn.com/ajax/jquery.ui/1.10.3/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/jquery.ui/1.10.3/themes/sunny/jquery-ui.css">
<script>
	$(function () {
		$('#tablloci').sortable({
			items: "td",
			placeholder: '.sortable'
		});
		$('#tablloci').disableSelection();
	});
</script>
  • Вопрос задан
  • 1302 просмотра
Подписаться 1 Простой 4 комментария
Решения вопроса 1
Rsa97
@Rsa97
Для правильного вопроса надо знать половину ответа
Note: In order to sort table rows, the tbody must be made sortable, not the table.
Ответ написан
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы