cancel
Showing results for 
Search instead for 
Did you mean: 

Icon in smart field

GowthamRaja
Participant
0 Kudos

Hi Experts,

I am using smart forms in my details page. I am using smart field as input tab as shown below, i need to place an icon in the respective tab. Please let me know is it possible?           

Accepted Solutions (0)

Answers (1)

Answers (1)

co_walter_zolkin
Explorer
0 Kudos

it could be possible, but not in standard library. you could extend the sap control like this:

  1. sap.ui.define([
  2. "sap/ui/comp/smartfield/SmartField"
  3. ], function(SmartField) {
  4. "use strict";
  5. return SmartField.extend("my.SmartField", {
  6. metadata: {
  7. ...
  8. }

  9. ...
  10. });
  11. });



so you could enhance the control with your own html tags.