使用Extlib中的valuepicker从FTSearch结果返回更多行

时间:2016-08-29 08:25:20

标签: dojo xpages

我正在使用带有dojoType的值拾取器:" extlib.dijit.PickerListSearch"来自我的应用程序中的Extlib。对话框工作正常,我可以搜索值。我的问题是搜索只返回30行。我需要扩展它以返回更多。是否有我可以使用的dojo设置或任何其他方式返回更多行?

enter image description here

<xe:formRow id="formRow5" label="Artikelnummer">
                    <xe:djextListTextBox id="djextListTextBox5"
                        displayLabel="true">
                    <xp:eventHandler event="onBlur" submit="true" refreshMode="complete" disableValidators="true"></xp:eventHandler></xe:djextListTextBox>
                    <xe:valuePicker id="valuePicker9"
                        for="djextListTextBox5" dojoType="extlib.dijit.PickerListSearch"
                        pickerText="Välj Artikel">
                        <xe:this.dataProvider>
                            <xe:dominoViewValuePicker
                                viewName="vProduktnr_xpages" labelColumn="xpdisplay"
                                searchType="ftSearch">
                            </xe:dominoViewValuePicker>
                        </xe:this.dataProvider>
                    </xe:valuePicker>
</xe:formRow>