openui5-multiinputdialog MultiInput with Dialog made easy #sapui5 #openui5 #tipoftheday #customcontrol

StErMi
2 min readSep 12, 2017

--

In the latest projects I’ve developed I used a lot sap.m.MultiInput. It’s a really usefull control with some bugs and pain that OpenUI5 team tried to fix along the way

Anyway, if you look at the MultiInput Data Binding sample on the OpenUI5 Explorer you can see that the never implement the Value Help part that allow you to open a Select Dialog to easily select items from a pool of items with a search field on top. It’s really useful and usually you take those items from the same pool of the suggestions/tokens of the MultiInput.

99% of the times you always need a Value Help with a Multi Input and as I said before the common scenario is when items are in common (between tokens, suggestions and value help items).

This is the reason why I created openui5-multiinputdialog to speedup and simply this process.

openui5-multiinputdialog is a SAPUI5 Custom Control that extends a MultiInput allowing you to easily configure the SelectDialog with items suggestion with just a bunch of lines of code.

Demo

You can checkout a demo here: https://stermi.github.io/openui5-multiinputdialog/test/demo/

Usage

Configure manifest.json

Add the library to sap.ui5 dependencies list and configure the resourceRoots to point where you uploaded the custom library.

Add the custom control inside an XML View

Add the library to sap.ui5 dependencies list and configure the resourceRoots to point where you uploaded the custom library.

xmlns:df="it.designfuture.multiinputdialog"

And than you can simply add the MultiInputDialog custom control

Parameters

As I said this custom control extends MultiInput so you are inheriting all MultiInput’s properties, events and methods.

You also have all SelectDialog options to configure the custom control with.

Methods

Events

MultiInputDialog is extending MultiInput so you also have all it’s event inherited

Build

If you would like to extend and customize the control, you can easily do that but re-building the code with just a simple Grunt command:

npm install
grunt build

Links

--

--

StErMi
StErMi

Written by StErMi

#web3 dev + auditor | @SpearbitDAO security researcher, @yAcademyDAO resident auditor, @developer_dao #459, @TheSecureum bootcamp-0, @code4rena warden

Responses (1)