Revision #3 has been created by Woil on Mar 8, 2011, 1:13:24 AM with the memo:
minor change to update for current Yii version
« previous (#2) next (#4) »
Changes
Title
unchanged
Ordering Models by Weight with CJuiSortable
Category
unchanged
Tutorials
Yii version
unchanged
Tags
unchanged
Content
changed
[...]
* Handles the ordering of models.
*/
public function actionOrder()
{
// Handle the POST request data submission
if (Yii::app()->request->isPostRequest && isset($_POST['Order']))
{
// Since we converted the Javascript array to a string,
// convert the string back to a PHP array
$models = explode(',', $_POST['Order']);[...]