on 2015 Jun 23 12:10 PM
If you accidentally select an item from a list and need to remove it, hold down the CTRL button (on a Windows PC) or the Command button and click on the item you want to uncheck. This will deselect the item and it will no longer be highlighted.
This may help you,
Rachel Gomez
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
On press event of button, write this.
press: function(){
var itemId = sap.ui,getCore().byId("ListId"); // ListId is ID of your objectList
itemId.removeSelections(true);
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Have you looked at the API yet? There is a method that does exactly that
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
70 | |
10 | |
8 | |
8 | |
7 | |
7 | |
6 | |
6 | |
6 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.