* changed css names.

* added method 'setSyncTrigger' in 'my.full.js'.
This commit is contained in:
Catouse
2014-03-26 15:44:57 +08:00
parent 86b1296734
commit aa96761a82
24 changed files with 133 additions and 75 deletions
+4 -1
View File
@@ -313,11 +313,14 @@ class tree extends control
}
if($returnType == 'html')
{
$output = html::select("module", $optionMenu, '', "onchange=loadModuleRelated()");
$output = html::select("module", $optionMenu, '', "onchange='loadModuleRelated()' class='form-control'");
if(count($optionMenu) == 1 and $needManage)
{
$output .= "<span class='input-group-addon'>";
$output .= html::a($this->createLink('tree', 'browse', "rootID=$rootID&view=$viewType"), $this->lang->tree->manage, '_blank');
$output .= '&nbsp; ';
$output .= html::a("javascript:loadProductModules($rootID)", $this->lang->refresh);
$output .= '</span>';
}
die($output);
}