Hi,
I noticed SAP UI5 has a really nice extensive icon set:
I was just wondering if anyone knows if it is available to download and what the licence restrictions would be in using some of these icons in a native app which integrates with SAP.
Thanks,
Brad
Request clarification before answering.
Hi Brad,
the icons are implemented using an embedded font rather than images so you can't easily download and use them in isolation.
But my understanding is that you can download the SAPUI5 library and use it as long as it is for SAP applications. I believe the use of the SAPUI5 library in these cases is already covered by your existing user licenses. If, on the other hand, you want to use it for non-SAP scenarios you will need to talk to your account manager.
Cheers
Graham Robbo
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Bradley,
as Graham wrote: the icons are implemented as characters of a special font. This is an advanced way of providing icons in the web which has advantages that are (partly) especially important on mobile devices:
Of course this makes it more difficult to e.g. replace or extract single icons. That's the downside. But technically you should also be able to use custom fontrs in native applications. I can't comment on the legal side of it, though.
Regards
Andreas
Hi Graham,
my code looks like:
var aTile = new sap.m.StandardTile("account", {
icon : sap.ui.core.IconPool.getIconURI("account"),
number : "28",
title : "Meine Kunden",
press : function() {oEventBus.publish("nav", "to", {
id : "CustomerList" })}
});
tiles.push(aTile);
So how can I define the size and color the icon in this context?
Jens
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Graham,
thanks for your help.
I am new to this. How can I add your code to mine?
var aTile = new sap.m.StandardTile("account", {
icon : sap.ui.core.IconPool.getIconURI("account"),
number : "28",
title : "Meine Kunden",
press : function() {oEventBus.publish("nav", "to", {
id : "CustomerList" })}
});
tiles.push(aTile);
Thanks
Jens
Hi,
how can I define, that I want to use the bigger, colored Icons instead of the black&white ones.
e.g. icon: sap.ui.core.IconPool.getIconURI("money-bills") shows only the B&w icons...
Jens
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The icon control has both size and colour properties.
https://sapui5.netweaver.ondemand.com/sdk/docs/api/symbols/sap.ui.core.Icon.html
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.