Page 1 of 2

carousel doesn't work on Samsung Galaxy S3.

Posted: Thu Mar 07, 2013 5:26 am
by ssquire

When I run the app that uses the carousel component on my phone, it doesn't respond to swipe. I know it's in beta - I just wanted you guys to know. I can use Javascript to swap images, right?


carousel doesn't work on Samsung Galaxy S3.

Posted: Thu Mar 07, 2013 10:03 am
by Maryna Brodina

Hello! Yes, you can use avascript to swap images. Could you also clarify what is your Android version?


carousel doesn't work on Samsung Galaxy S3.

Posted: Thu Mar 07, 2013 10:16 am
by Maryna Brodina

Tested with Samsung Galaxy S (Android 4.0.4) - I was able to swipe images inside the Carousel


carousel doesn't work on Samsung Galaxy S3.

Posted: Thu Mar 07, 2013 3:36 pm
by ssquire

Marina my Android Version is 4.1.1. I tried swiping both right to left and left to right and display stayed frozen. I may need some clarification on my Javascript to swap images, also - but I put that in a separate entry. I believe I just need to know where my images are stored in the document tree.


carousel doesn't work on Samsung Galaxy S3.

Posted: Thu Mar 07, 2013 3:41 pm
by Maryna Brodina

Before we start searching for a solution with JS could you please share your app with a href="mailto:support@tiggzi.com" rel="nofollow"support@tiggzi.com/a so I can test your app too.


carousel doesn't work on Samsung Galaxy S3.

Posted: Thu Mar 07, 2013 7:22 pm
by ssquire

How do you want me to package it up to send it to support? (What's the best way?)


carousel doesn't work on Samsung Galaxy S3.

Posted: Thu Mar 07, 2013 7:29 pm
by maxkatz

carousel doesn't work on Samsung Galaxy S3.

Posted: Thu Mar 07, 2013 9:05 pm
by ssquire

Done! Max and Marina - the project has been shared to a href="mailto:support@tiggzi.com" rel="nofollow"support@tiggzi.com/a. Please understand, the only working component is the 'Strikes' counter in the Ump Assistant, along with the 'Reset Strikes' button. I do want to know how to swap the Strike images, rather than use the visibility solution because I will use the same concept with my 'Pitch Counter' and that uses 136 images. As you would imagine, swapping the images is much more effective in that situation. I tried a jQuery solution, but I didn't know the 'src' path of my image files and it didn't work. Thanks for your assistance.


carousel doesn't work on Samsung Galaxy S3.

Posted: Mon Mar 11, 2013 5:13 pm
by Kateryna Grynko

Hi Steven,

You can use CSS sprites:
http://www.w3schools.com/css/css_imag...
http://spritegen.website-performance....

The steps are following:

1) Add to page Panel component with type=div

2) Set it's size to an image and set created sprite as a background. For example, add to this Panel class divForOuts and add to CSS this code:code.divForOuts{
width: 113px;
height: 124px;
background: url('../image/spritename.png') no-repeat top left;
}/code
3) On button click change Panel background-position


carousel doesn't work on Samsung Galaxy S3.

Posted: Tue Mar 12, 2013 3:53 pm
by ssquire

Katya,

This is probably the most efficient way, but is there also a Javascript way? Just curious. The reason is I am porting code from projects done in other environments to Tiggzi and I would like to be able to keep as much as I can. What intrigued me about Tiggzi was the database connectivity is soooo simple. And I like simple.