In the home page of the module, i list all the server with it's details. It has an edit link. When clicking it, it's taking me to a form to edit those server details, but i can't see the already existing details of the server.
public function manageEditRow($module_row, array &$vars) {
// Load the view into this object, so helpers can be automatically added to the view
$this->view = new View("edit_row", "default");
$this->view->base_uri = $this->base_uri;
$this->view->setDefaultView("components" . DS . "modules" . DS . "snomone" . DS);
// Load the helpers required for this view
Loader::loadHelpers($this, array("Form", "Html", "Widget"));
$this->view->set("vars", (object)$vars);
return $this->view->fetch();
}
Question
AllToolKits.com
Hi,
In the home page of the module, i list all the server with it's details. It has an edit link. When clicking it, it's taking me to a form to edit those server details, but i can't see the already existing details of the server.
the url of the edit page is http://mydomain.com/index.php/admin/settings/company/modules/editrow/7/5/, where mydomain.com is blesta server domain.
Code snippet is below
View
Form is coming without any values in it, why it's so? Can anyone help me?
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.