yii2-sortable-behavior icon indicating copy to clipboard operation
yii2-sortable-behavior copied to clipboard

Sort ActiveRecords and related records

Results 2 yii2-sortable-behavior issues
Sort by recently updated
recently updated
newest added

I have a Team module with a location_id and department_id as foreign keys Order action: ``` public function actionOrder() { $post = Yii::$app->request->post(); if (isset($post['key'], $post['pos'])) { $this->findModel($post['key'])->order($post['pos'], ['location_id', 'department_id']);...