JSSOR thumbail click event - jssor

Is there a thumbnail click event for JSSOR?
I want to run some code when a thumbnail is clicked. I looked into EVT_CLICK but it only seems to work with the main slide and not the thumbnails.
Newbie here
Thanks!

I resolved my issue by using .click function. Thanks

Related

How to find a image button using SWTBot

I have a SWT Button, it does not contains text, just an image. I searched for methods, but I can't find a way to press it.
If you know the index -0-based order of the button in all the available buttons in this context- of the button, you can try bot.button(index). But as UI can change that, I strongly recommend the solution proposed by #alt3.
Instantiate the button with an id:
yourButton.setData("org.eclipse.swtbot.widget.key", "yourButtonId");
Then, call the following method through the bot:
bot.buttonWithId("yourButtonId").click();

Use Custom Image Instead of Default Facebook Share button?

I'm trying to use a custom "share on facebook" image I made in photoshop instead of the default facebook share button. The idea is that when someone clicks the image the share box will be brought up. I have looked around, but can't seem to figure out how to do this. Any help would be greatly appreciated.
Add a UIButton & set it's background image as "yourCustomImage" ?
If you see a problem then try to see how to add a button type custom in stack overflow.

Add to cart button in Lightbox2?

I'm trying to add a PayPal "add to cart" button to my lightbox 2 gallery?? I've seen lots of trouble shooting (posted by ChrisD), however, I can't locate the actual code to get it into the lightbox. I can get it to be in my caption on the index, but the button won't go into the actual lighbox display container where I would prefer it? Any help would be greatly appreciated!! (or direct me to a link/question that answers this?)Thanks in advanced!
The Payments Standard buttons aren't meant to work within a frame or an iframe or launch an iframe. They need to launch in a window outside of your lightbox.

How can I make a short screen as a pop-up menu?

I attached a sample screen shot taken from the Skype app. How can I replicate the pop-up menu?
This is an instance of UIActionSheet. Here is an tutorial on how to use it.

How to change text Cancel button Searchbar of iPhone in Titanium?

When I set the value 'true' to showCancel property in the method Titanium.UI.createSearchBar. It displays me the cancel button, but I would like to customize that button text to Go or anything else. How do I do that? Please give me suggestions. Thanks you so much.
I don't believe in Titanium Mobile SDK 1.4 you can change the button text.
As a work around you could add your own button to the screen and have it interact with the tableview. Not an ideal solution though.
Please find below the current documentation link.
http://developer.appcelerator.com/apidoc/mobile/latest/Titanium.UI.SearchBar-object