filter中的propertyFilter里面如何使用entityPicker控件

如图我想在filter中的propertyFilter里面放一个entityPicker控件,然后点击enityPicker打开一个制定的screen,我发现在propertyFilter里面的enityPricker是不能指定screenId的,这怎么处理呀?
image

screenIdscreenClass 是在action里面设置的:

<configuration id="product" name="Filter ProductLine by product">
    <propertyFilter property="product" operation="EQUAL">
        <entityPicker metaClass="leot_Product">
            <actions>
                <action id="lookup" type="entity_lookup">
                    <properties>
                        <property name="screenClass"
                                  value="com.company.leot.screen.product.ProductSelect"/>
                    </properties>
                </action>
            </actions>
        </entityPicker>
    </propertyFilter>
</configuration>