Hi All,
I am new to Powerapps and learning PCF now. I am trying to add the Popover component of Bootstrap to my PCF Component. I have installed Jquery, Bootstrap, PopperJs using npm and have imported them in my index.ts file like this:
import * as $ from "jquery";
import * as Bootstrap from "bootstrap";
I am not getting where & how to initialize Bootstrap Jquery in PCF Component. Here, Initialization code means like this,
For Bootstrap Popover:-
$(function () {
$('[data-toggle="popover"]').popover()
})
For Bootstrap Tooltip:-
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
I have tried initializing it in the INIT method and there was no error also but that functionality was not coming over my control. I must be making mistake in the way I initialized it. Can someone help me with the steps to initialize Bootstrap's Jquery in the PCF component? or else, if there is any different approach to add Bootstrap popover/tooltips in the PCF component then that would also be fine...
Thank You in advance...