7762 Posts in 1289 Topics by 886 members
DataObjectManager Module
SilverStripe Forums » DataObjectManager Module » Dropdown fields state not saved
Discuss the DataObjectManager module, and the related ImageGallery module.
Moderators: martimiz, UncleCheese, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba
|
Page:
1
|
Go to End | |
| Author | Topic: | 318 Views |
-
Dropdown fields state not saved

11 December 2011 at 10:36am
Anyone had a problem with FilteredDropdownSet? I’ve got it listing the categories and items correctly and the selection is saved correctly, but when editing, the dropdowns don’t select the saved item. I suppose it has to do with that AvailableProduct.php thing, but how exactly is the class and the has_ones in it supposed to be named?
-
Re: Dropdown fields state not saved

13 December 2011 at 7:56pm
static $has_one = array(
'Foo' => 'FooClass' // creates a column 'FooID'
);
..$fields->push(new DropdownField('FooID', 'Foo'..)
Make sure you use FooID as the field name not Foo as you're referring to the relationship column value (which is stored as Name + ID)
-
Re: Dropdown fields state not saved

14 December 2011 at 12:42am
Thanx! Problem actually appears, when you use two drop downs inside FilteredDropdownSet. One dropdown works nicely - but... Idea is to create main categories to dropdown 1 and products based on selected item from dropdown 1 to appear in dropdown 2. Selection works nicely: items are printed nicely on the dropdowns but when hitting the save, products (in drop down 2) is back to default value.
Hope you got the idea and figured out the problem?
-
Re: Dropdown fields state not saved

14 December 2011 at 6:54am Last edited: 14 December 2011 6:56am
That form field does have one minor drawback, and that's that you have to redundantly store the value of the parent ID, as well. Let's look at an example with Towns and Regions. Towns have a parent Region. A Place is in a Town, and we'll use a FilteredDropdownSet to choose a region first, then the town.
class Town extends DataObject
{static $db = array (
'Title' => 'Varchar(255)',
);static $has_one = array (
'Region' => 'Region',
);}
class Region extends DataObject
{static $db = array (
'Title' => 'Varchar(255)',
);}
Place.php
static $has_one = array (
'Region' => 'Region',
'Town' => 'Town'
);new FilteredDropdownSet(
array(
$region = new DropdownField('RegionID','Region',$map_of_regions),
$town = new DropdownField('TownID','Town',$map_of_towns)
),
"RegionID",
"Town"
)As you can see, the field RegionID is redundant on the Place object because we know it by transference through the TownID. It's a little annoying, but unfortunately it just works best that way in order to support the native functions of SilverStripe forms.
---------------
Silverstripe tips, tutorials, screencasts, and more. http://www.leftandmain.com -
Re: Dropdown fields state not saved

4 January 2012 at 1:11pm
Make sure you use FooID as the field name not Foo as you're referring to the relationship column value (which is stored as Name + ID)
Thanks Willr. This was my exact issue this morning.
-
Re: Dropdown fields state not saved

23 February 2012 at 6:24am Last edited: 23 February 2012 6:26am
Hi,
Who could help me width FilteredDropdownSet?
I make like in post and this Field not filtered.I have ProCate.php
class ProCate extends DataObject
{
static $db = array (
'Title' => 'Varchar(255)',
);}
I have Prod.php
class Prod extends DataObject
{
static $db = array (
'Title' => 'Varchar(255)',
);static $has_one = array (
'ProCate' => 'ProCate',
);
}and AvilableProduct.php
class AvailableProduct extends DataObject
{
static $has_one = array (
'ProCate' => 'ProCate',
'Prod' => 'Prod'
);function getCMSFields()
{
$fields = parent::getCMSFields();
$cate_map = array();
$prod_map = array();if($result = DataObject::get("ProCate")) {
$cate_map = $result->toDropdownMap();
}
if($result = DataObject::get("Prod")) {
$prod_map = $result->toDropdownMap();
}$fields->addFieldToTab("Root.Main", new FilteredDropdownSet(array(
new DropdownField('ProCateID', 'ProCate',$cate_map),
new DropdownField('ProdID', 'Title', $prod_map)
),"ProCateID","Prod"));return $fields;
}In BackEnd i have Error
When I do not want to show the error in backend I must change (add the dot)
but still not filterednew DropdownField('ProCate.ID', 'ProCate',$cate_map),
new DropdownField('Prod.ID', 'Title', $prod_map)In Frontend in Search filtered don't work
****
public function getCustomSearchContext() {
if($result = DataObject::get("ProCate")) {
$cate_map = $result->toDropdownMap();
}
if($result = DataObject::get("Prod")) {
$prod_map = $result->toDropdownMap();
}$fields = new FieldSet(
new FilteredDropdownSet(array(
new DropdownField('ProCateID', 'ProCate', $cate_map),
new DropdownField('ProdID', Prod', $prod_map)
),
"ProCateID",
"Prod"
)
);
$filters = array(
);
return new SearchContext(
$this->class,
$fields,
$filters
);
}I must have the filter and I'm sitting on this for several days and probably already tried all the ways and configuration
Sorry for my bad English
| 318 Views | ||
|
Page:
1
|
Go to Top |




