Trying to implement a dojo tooltip dialog for each table cell so that hovering over each cell reveals its content. The tooltip dialog is necessary as there are clickable elements within it.
I am aware of how this can be achieved using the tooltip control, as shown below:
require(["dijit/Tooltip", "dojo/query!css2", "dojo/domReady!"], function(Tooltip){
new Tooltip({
connectId: "myTable",
selector: "tr",
getContent: function(matchedNode){
return matchedNode.getAttribute("tooltipText");
}
});
});
However, I have not been able to find a similar solution for implementing a tooltip dialog. Any suggestions on how to achieve this?