Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 2.69 KB

README.md

File metadata and controls

49 lines (41 loc) · 2.69 KB

SAPUI5 IconList

Features

  • SAPUI5 Standard Icon's
  • Search based on Icon Names.

Usage

IconList can be call as action event of Button and Input-ValueHelp controls.

Properties

Property Type Default Value
title string Icon List
noDataText string No Icon List
growing boolean Icon List
rememberSelections boolean false
draggable boolean false
resizable boolean false
multiSelect boolean false
contentWidth string
contentHeight string
growingThreshold integer 60

Example

  • InputValue Help (controller)
onValueHelpRequest: function(oEvent){
    let oIconList = new IconList();
    oIconList.open(oEvent);
},
  • InputValue Help (view)
<Input
    type="Text"
    showValueHelp="true"
    valueHelpOnly="true"
    valueHelpRequest="onValueHelpRequest"
    class="sapUiSmallMarginBottom"
    width="15rem" />
  • Output

Screenshot