Hi Team,
I'm trying to implement Drag and Drop functionality in my script for SWF object.
I wanted to drag and drop below selected item.
SwfWindow("Irish Bid Offer Data Manager").SwfObject("DailyTemplateExplorerBar").SelectItem "Master Templete List","(test) Testing 1"
Here SWFObject="Master Templete List" which is a expandable dropdown list
Item="(test) Testing 1"
Could you please let me know the possible solution.
Thanks,
Thirupathi Kotrnagi
8978027127
Hello Thiru,
Thank you for posting on our forums.
I will research for a way to implement drag and drop functionality in a script for an SWF object. I will work on this issue and will post an update by end of day tomorrow.
Please let me know if you have any questions.
Sincerely,Sahaja KokkalagaddaAssociate Software Developer
Hi Thiru,
There is an action already created for the DragDrop in UltraExplorerBar. The method is called ItemDrag you can see the parameter information here:https://ko.infragistics.com/help/winforms-ta-hp/infragistics.qtpserver.winexplorerbar~infragistics.qtpserver.winexplorerbar.ultraexplorerbarreplayserver~itemdrag
Here is some sample code using it: .ItemDrag "Move","Group 1","Item [1,1]","Group 1",5 .SelectItem "Group 1","Item [1,2]" .ItemDrag "Move","Group 1","Item [1,2]","Group 2",0 .SelectItem "Group 1","Item [1,1]"
Let me know if that helps,