Hello,
I have two functions inside the java script of the gadget (Update Call Variable) and initiate direct transfer
updateCallVariable : function (name, value) {
updateCallVariable(name, value);
},
initiateDirectTransfer : function (button)
{
}
On the XML, i need to activate both of these functions based on the same button, so i added the configuration like this:
<button id="button1" class="custom-button-button"
onClick="finesse.modules.csltxferbuttons.updateCallVariable("variable2","6700");
finesse.modules.csltxferbuttons.initiateDirectTransfer(this.id)">1</button>
Is this correct?
Amer