Hi,
I am attempting to put Syncfusion over the top of some existing controls and functionality.
I have functions that perform things like 'edit', 'bulk email', 'show contact list' etc, and I'm trying to call them from within Syncfusion buttons. The buttons display without problem and they can be clicked but they just don't seem to be calling the functions correctly and I am wondering if there is something wrong with the syntax of how I am calling them. Below is a code snippet of one of the buttons.
<ej:TabGroup Text="Email" AlignType="Columns">
<ContentCollection>
<ej:TabContent>
<ContentGroupCollection>
<ej:ContentGroup Id="bulkEmail" Text="BulkEmail" Type="Button">
<ButtonSettings Type="Button" ContentType="ImageOnly" PrefixIcon="e-icon e-ribbon e-dataexport" Click="BulkMail()" />
</ej:ContentGroup>
</ContentGroupCollection>
</ej:TabContent>
</ContentCollection>
</ej:TabGroup>