3.1搜索DataObjects&选择字段

时间:2013-10-16 13:57:27

标签: silverstripe

自升级到3.1后,我注意到在枚举值的数据对象的搜索表单上返回的选择字段不返回默认的“any”选项,而是返回第一个值。这使得用户必须搜索该字段的特定值,而不是“任何”。

在dataobject.php中

public function getCustomSearchContext() {
    $fields = $this->scaffoldSearchFields(array(
        'restrictFields' => array('Field1', 'Field1')
    ));

    $filters = array(
        'SomeField' => new PartialMatchFilter('Field1'),
                 .....etc
    );

    return new SearchContext(
        $this->class, 
        $fields, 
        $filters
    );
}

SomePage.php

public function DOSearch() {
    $context = singleton('DataObject')->getCustomSearchContext();
    $fields = $context->getSearchFields();

    $form = new Form($this, "DOSearch",
        $fields,
        new FieldList(
            new FormAction('doDOSearch')
        )
    );
    return $form;
}


public function doDOSearch($data, $form) {

    $context = singleton('DataObject')->getCustomSearchContext();
    $set = ArrayList::create( $context->getResults($data)->toArray() );

    return $this->customise(array(
        'Set1' => $Set1
    ))->renderWith(array('DOResults', 'Page'));
}

使用Enum列设置数据对象并设置$ searchable_fields。我希望用户可以选择'any',而不必选择返回的1个设置值。

2 个答案:

答案 0 :(得分:1)

您使用DropdownField替换getCustomSearchContext()之后,您应该能够编辑$fields函数中的$fields->fieldByName('TheNameOfTheDropdownField')->setHasEmptyDefault(true);

$fields->fieldByName('TheNameOfTheDropdownField')->setEmptyString('Any');

这样可以清除选择或:

{{1}}

将在字段中添加“Any”空选项。

答案 1 :(得分:0)

这是SilverStripe中的一个错误,它通过https://github.com/silverstripe/silverstripe-framework/pull/2566修复,并有望很快进入核心