Ankur Bawiskar
Tera Patron

@phani 

Please share screenshot of how it should be

Regards
Ankur

Regards,
Ankur
Certified Technical Architect  ||  10x ServiceNow MVP  ||  ServiceNow Community Leader

I need html manipulation way to update the portal field tooltip as shown in the screenshot

Pranav Bhagat
Kilo Sage

Hi

You have to use the combination of ng-model and tool tip ,modify the widget like below

HTML

<div>
  <br>
  <br>
 <input type="text" ng-model="greeting" data-toggle="tooltip" data-placement="right" title="{{greeting}}"/>
</div>

 

Client Script

 

api.controller=function($scope) {
	/* widget controller */
	var c = this;

	$scope.toolTip2=$scope.greeting;
};

 

Regards

Pranav

View solution in original post

Hi ,

Thanks for the reply,I have tried this and it worked for my requirement .

Can we adjust the size of the tooltip that is displaying?

Thanks,

Phani

Basically it will auto adjust based the text.

Regards

Pranav