gpt4 book ai didi

php - 在帖子中使用 jQueryUI Sortable

转载 作者:行者123 更新时间:2023-12-04 04:56:31 24 4
gpt4 key购买 nike

我正在使用 CJuiSortable小部件使用 Sortable from jQueryUI .

我只需要在提交表单时使用订单。但是,我没有找到仅使用小部件的方法。

有人知道是否有办法做到这一点?

$questionario->widget('zii.widgets.jui.CJuiSortable', array(
'id'=>'order',
'items'=>$sortableItems,
'itemTemplate'=>'<li id="{id}" class="ui-state-default"><span class="ui-icon ui-icon-arrowthick-2-n-s"></span>{content}</li>',
));

最佳答案

您可以在表单提交后使用更新功能 jQueryUI(即)对其进行排序。

update: function(event, ui) {
var order = $("#sortable").sortable("toArray");
$('#new_order').val(order.join(","));
//alert($('#new_order').val());
}

关于php - 在帖子中使用 jQueryUI Sortable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16688801/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com