mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
(merged from branches/roa. use "svn log -c <changeset> -g <module-svn-path>" for detailed commit message)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@60209 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
08beafbcdb
commit
9fcc91bcbd
@ -77,7 +77,7 @@ abstract class ModelAdmin extends LeftAndMain {
|
|||||||
|
|
||||||
Requirements::javascript('jsparty/jquery/jquery.js');
|
Requirements::javascript('jsparty/jquery/jquery.js');
|
||||||
Requirements::javascript('jsparty/jquery/livequery/jquery.livequery.js');
|
Requirements::javascript('jsparty/jquery/livequery/jquery.livequery.js');
|
||||||
Requirements::javascript('jsparty/jquery/ui/ui/ui.base.js');
|
Requirements::javascript('jsparty/jquery/ui/ui/ui.core.js');
|
||||||
Requirements::javascript('jsparty/jquery/ui/ui/ui.tabs.js');
|
Requirements::javascript('jsparty/jquery/ui/ui/ui.tabs.js');
|
||||||
Requirements::javascript('jsparty/jquery/ui/plugins/form/jquery.form.js');
|
Requirements::javascript('jsparty/jquery/ui/plugins/form/jquery.form.js');
|
||||||
Requirements::javascript('cms/javascript/ModelAdmin.js');
|
Requirements::javascript('cms/javascript/ModelAdmin.js');
|
||||||
@ -300,7 +300,7 @@ class ModelAdmin_CollectionController extends Controller {
|
|||||||
* @return unknown
|
* @return unknown
|
||||||
*/
|
*/
|
||||||
function add($request) {
|
function add($request) {
|
||||||
return $this->AddForm()->forTemplate();
|
return $this->AddForm()->forAjaxTemplate();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -362,7 +362,7 @@ class ModelAdmin_RecordController extends Controller {
|
|||||||
*/
|
*/
|
||||||
function edit($request) {
|
function edit($request) {
|
||||||
if ($this->currentRecord) {
|
if ($this->currentRecord) {
|
||||||
return $this->EditForm()->forTemplate();
|
return $this->EditForm()->forAjaxTemplate();
|
||||||
} else {
|
} else {
|
||||||
return "I can't find that item";
|
return "I can't find that item";
|
||||||
}
|
}
|
||||||
@ -405,7 +405,7 @@ class ModelAdmin_RecordController extends Controller {
|
|||||||
function view($request) {
|
function view($request) {
|
||||||
if ($this->currentRecord) {
|
if ($this->currentRecord) {
|
||||||
$form = $this->ViewForm();
|
$form = $this->ViewForm();
|
||||||
return $form->forTemplate();
|
return $form->forAjaxTemplate();
|
||||||
} else {
|
} else {
|
||||||
return "I can't find that item";
|
return "I can't find that item";
|
||||||
}
|
}
|
||||||
|
@ -16,7 +16,12 @@ jQuery(document).ready(function() {
|
|||||||
function showRecord(uri) {
|
function showRecord(uri) {
|
||||||
jQuery.get(uri, function(result){
|
jQuery.get(uri, function(result){
|
||||||
jQuery('#right').html(result);
|
jQuery('#right').html(result);
|
||||||
|
jQuery('#SearchForm_holder').tabs();
|
||||||
|
|
||||||
|
// TODO/SAM: It seems a bit of a hack to have to list all the little updaters here.
|
||||||
|
// Is livequery a solution?
|
||||||
Behaviour.apply(); // refreshes ComplexTableField
|
Behaviour.apply(); // refreshes ComplexTableField
|
||||||
|
jQuery('#right ul.tabstrip').tabs();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -26,7 +31,11 @@ jQuery(document).ready(function() {
|
|||||||
function saveRecord(uri, data) {
|
function saveRecord(uri, data) {
|
||||||
jQuery.post(uri, data, function(result){
|
jQuery.post(uri, data, function(result){
|
||||||
jQuery('#right').html(result);
|
jQuery('#right').html(result);
|
||||||
|
|
||||||
|
// TODO/SAM: It seems a bit of a hack to have to list all the little updaters here.
|
||||||
|
// Is livequery a solution?
|
||||||
Behaviour.apply(); // refreshes ComplexTableField
|
Behaviour.apply(); // refreshes ComplexTableField
|
||||||
|
jQuery('#right ul.tabstrip').tabs();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user