AngularJS with Bootstrap UI Tolltip (uib-tooltip), has three versions of tool-tip:
uib- টুলটিপ, uib- টুলটিপ-টেম্পলেট এবং uib- টুলটিপ-এইচটিএমএল
- uib-tooltip takes only text and will escape any HTML provided
- uib-tooltip-html takes an expression that evaluates to an HTML string
- uib-tooltip-template takes a text that specifies the location of the template
আমার ক্ষেত্রে, আমি uib-tooltip-html বেছে নিয়েছি এবং এর তিনটি অংশ রয়েছে:
- কনফিগারেশন
- নিয়ামক
- এইচটিএমএল
উদাহরণ:
(function(angular) {
//Step 1: configure $sceProvider - this allows the configuration of $sce service.
angular.module('myApp', ['uib.bootstrap'])
.config(function($sceProvider) {
$sceProvider.enabled(false);
});
//Step 2: Set the tooltip content in the controller
angular.module('myApp')
.controller('myController', myController);
myController.$inject = ['$sce'];
function myController($sce) {
var vm = this;
vm.tooltipContent = $sce.trustAsHtml('I am the first line <br /><br />' +
'I am the second line-break');
return vm;
}
})(window.angular);
//Step 3: Use the tooltip in HTML (UI)
<div ng-controller="myController as get">
<span uib-tooltip-html="get.tooltipContent">other Contents</span>
</div>
আরও তথ্যের জন্য, এখানে চেক করুন