[Feature request] getSelectedItems() & placeholder for sap.m.TableSelectDialog
See original GitHub issuePlaceholder for Search field in TableSelectDialog
There seems no placeholder
or tooltip
hint for search field in TableSelectDialog, no way to tell users the search criteria.
something like placeholder in InputBase
getSelectedItems()
User scenario:
I use MultiInput
in sap.ui.comp.filterbar.FilterBar
as a filter item and set showValueHelp=true
for sap.m.MultiInput
, then open TableSelectDialog
in valueHelpRequest
event.
After delete button is click in sap.m.Token
, I want to also update selected items in TableSelectDialog(which is used as value help dialog)
something like getSelectedItems in ListBase
setSelectedItems()
User Scenario:
When I click Restore button in the filter bar(sap.ui.comp.filterbar.FilterBar
), selections remembered also need to restored, but I failed to find setSelectedItems(null) or resetSelectedItems() in TableSelectDialog
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (3 by maintainers)
Hello @TinaC ,
We will create a backlog to give the user the option to set their on placeholder text in the sap.m.Searchfield and when we have the capacity it will be implemented.
“After delete button is click in sap.m.Token, I want to update selected items in TableSelectDialog(which is used as value help dialog)” You can not use sap.m.Multiinput to open sap.m.TableSelectDialog, so this is not a valid case.
The Restore button is not actually a restore but a Clear button, you can read about its functionality here: showClearButton.
Best Regards, Gery
@GerganaKremenska
This is implemented by myself: I use MultiInput in sap.ui.comp.filterbar.FilterBar as a filter item and set
showValueHelp=true
for MultiInput, then openTableSelectDialog
invalueHelpRequest
event.I’ve updated user scenario in my issue for more details. Can you reopen this issue so we can have a continue discuss about the necessity of
getSelectedItems
&setSelectedItems
?