onClick Event on TooltipDialog not working for iPad

1838
0
07-01-2016 01:33 PM
TomLeMahieu
New Contributor II

I have attached ToolTipDialogs to several of my buttons.  This works fine except in most environments, but not on the iPad.  I'm able to touch any buttons on the iPad and execute code, except if the buttons are included in a dojo ToolTipDialog.  I reviewed the init.js code and no events seemed to kick off from the ToolTipDialog from the iPad.  Any suggestions??

This is the html code:

On the IPad, the onClick event never executes the exportSelectedFeatures function.

<!--Export Dropdown-->

<div id="ExportDropdown"  data-dojo-attach-point="ExportDropdown" style="display:none;">       

<div id="ExportReport" class="jimu-btn" data-dojo-type="dijit/form/DropDownButton" data-dojo-attach-point="ExportReport"
data-dojo-props="iconClass:'settingsIcon',showLabel:true">         
<span>             
<b>Export Settings</b>          
</span>

<div data-dojo-type="dijit/TooltipDialog" title="Tooltip">                

<div class="jimu-btn" data-dojo-attach-point="btnExport" data-dojo-attach-event="onclick:exportSelectedFeatures">Export</div>        
</div>

</div>

</div>

0 Kudos
0 Replies