DataObjectManager
DataObjectManager copied to clipboard
DataObjectManager module for Silverstripe CMS
When use the ManyManyDataObjectManager and add a join clause it can occur an ambigous mysql error. To prevent this error, change Line 63 in code/ManyManyDataObjectManager.php From: $this->sourceJoin .= " LEFT...
There is nothing being done with the $config array for the buttons passed to the constructor. It's missing $this->set_default_buttons($config); ``` function __construct($name, $title = null, $config = array(), $rows =...
When using a dropdown filter on a DOM instance ($dom->setFilter()) if you choose to set a default value this value is used for EVERY subsequent query. ie: if I set...
After you use anything that calles the ajax method, you cant uncheck any boxes. https://github.com/unclecheese/DataObjectManager/commit/b28d86fc05867d7f92776c40a7173c342f68f615
i tried to fix this but after looking in the 3 classes i didnt find the bug... :(
allowscriptaccess is currently always being set to "true" (on line #251). Quote from [Adobe.com](http://kb2.adobe.com/cps/164/tn_16494.html): The AllowScriptAccess parameter can have one of three possible values: "always," "sameDomain," or "never:" Thus, "true"...
The DOM module seems to be looking for and setting 'sort_dir' parameters in URL strings, etc. This is causing the sort dir to be ignored by the getQuery function in...
The SimpleTreeDropdownField only shows pages in the main language not the current viewed language.
If you want to display a field of the related object "MyHasOneRelatedObject.Title", it does not work. Solution: HasManyDataObjectManager (~ line 76) if(! $SNG->hasField($k) && ! $SNG->hasMethod('get' . $k)) must be...