rpashankar

Results 2 comments of rpashankar

HI, we are able to get popover/tooltip using 'bootstrap'. ```clickCallback: (e, value, filters, pivotData) => { pivotData.forEachMatchingRecord(filters, record => { $(e.currentTarget).popover({ html:true, animation: false, content:function(){ return 'hello world' }, placement:...

if you need to use react-component then, `import ReactDOMServer from 'react-dom/server'` ``` var popup = ReactDOMServer.renderToStaticMarkup(); $(e.currentTarget).popover({ html:true, animation: false, content:function(){ return popup }, placement: "right", trigger:'click' }); ```