Hi All,
I don't know whether this is the right place to post about the Devtoolkit version 0.7.
I have tried to include all the files that Andre Lopes have mentioned in the pdf but i dont know due to some reason the dependent dropdowns are not working.
Please help me to figure out the problem.
The code for the file update_dropdown_field_defs
included in the directory root\resc1\modules\r__Resource_Planner\metadata
<?php
$update_dropdown_field_defs = array(
'team_lead_list' => array(
'' => array(
'members' => 'members_list',
),
'Joe'' => array(
'members' => 'business_line_list',
),
'Lee' => array(
'members' => 'business_unit_list',
),
),
),
?>
and the view.edit.php contains the following code
<?php
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
require_once('include/MVC/View/views/view.edit.php');
class r__Resource_Planner ViewEdit extends ViewEdit {
private $manager;
function init($bean = null, $view_object_map = array()) {
parent::init($bean, $view_object_map);
require_once('custom/include/utils/DevToolKitManager.php');
$this->manager = new DevToolKitManager($this);
}
function display() {
$this->manager->display();
$this->ev->process();
echo $this->ev->display();
}
function process() {
parent:rocess();
$this->manager->process();
}
}?
>
Please let me know what else needs to be done after inserting the above code, is there anything like repairing and all? but i have no clue what to be done.!!
Thank you


LinkBack URL
About LinkBacks
rocess();



Reply With Quote

Bookmarks