true)) { $model = parent::getModel($name, $prefix, $config); return $model; } /** * Method to save the submitted ordering values for records via AJAX. * * @return void * * @since 3.1 */ public function saveOrderAjax() { $pks = $this->input->post->get('cid', array(), 'array'); $order = $this->input->post->get('order', array(), 'array'); // Sanitize the input. JArrayHelper::toInteger($pks); JArrayHelper::toInteger($order); // Get the model. $model = $this->getModel(); // Save the ordering. $return = $model->saveorder($pks, $order); if ($return) { echo "1"; } // Close the application. JFactory::getApplication()->close(); } }