Hello,
I have written the code to transfer an element in the source listbox by double clicking on it as follows
function RegisterTransfer(ctrlId)
{
var listBox = $("#" + ctrlId).data("kendoListBox");
listBox.wrapper.find(".k-list").on("dblclick", ".k-item", function (e) {
listBox._executeCommand("transferTo");
});
}
this works fine.
But, I am unable to achieve the reverse scenario.
viz; I can't transfer an element in the destination listbox back to the source listbox by double clicking on it.
Any help would be appreciated!
Thanks,
Niranjan