建议不适用于“输入”字段

时间:2019-08-16 12:57:29

标签: sapui5

我正在使用提供建议的输入字段。它的价值超过100。

因此,如果最终用户在该输入字段中搜索了某些内容,则会采用建议

仅从前100个开始。

    oModel.read("/UserIDSet",function(oData, oResponse)
    {
             oModel.setSizeLimit(1200);
            oJsonModel1.setData(oData);
            sap.ui.getCore().setModel(oJsonModel1);
        } 
        );

Screen Shot

    <Input id="Refuser"
           type="Text"
           maxLength="12" 
           width="250px"
           showSuggestion="true"
           showTableSuggestionValueHelp="false"
           valueHelpRequest="handleValueHelp2"
           suggest="onSuggest"
           suggestionRows="{/UserIDSet}">
           <suggestionColumns>
                <Column
                    hAlign="Begin"
                    popinDisplay="Inline"
                    demandPopin="true">
                    <Label text="User ID"/>
                </Column>
                <Column
                    hAlign="Center"
                    popinDisplay="Inline"
                    demandPopin="true"
                    minScreenWidth="Tablet">
                    <Label text="Name"/>
                </Column>
            </suggestionColumns>
            <suggestionRows>
                <ColumnListItem>
                <cells>
                    <Label text="{Bname}"/>
                    <Label text="{NameText}"/>
                </cells>
                </ColumnListItem>
            </suggestionRows>
    </Input>

0 个答案:

没有答案