DataZombies / jQTouch

jQT extensions jqt.activityIndicator, jqt.bars (with numeric badges), jqt.checkGroup & jqt.segmentedControl.Get updates via Twitter http://twitter.com/HeadDZombie. If you find this fork useful please make a donation via PayPal (http://tinyurl.com/2fpmx27). See below for demo links.
MIT License
159 stars 34 forks source link

Pages with select hide tabbar #62

Closed pezzo closed 12 years ago

pezzo commented 12 years ago

Hi, my app is currently based upon jqt+jqt.tabs+ajax loading of the pages. If I click from the tabbar to a page with select , jqt hides tabbar (display:none).

I've investigated a long this morning and the issue seems to be related only with select (if I remove the select the page works).

I tried to manually show the bar . The following code currently works but it's too slow ....

setTimeout(
function(){
 $('#tabbar').show(function () { 
              jQT.setPageHeight(); 
                }); 
}

,5000);

You may find the same behaviour in your demo -> UI DEMO -> FORMS

DataZombies commented 12 years ago

Use the keep_tabbar class on the page div.

Sent from my iPhone

On Jul 5, 2011, at 7:12 AM, pezzoreply@reply.github.com wrote:

Hi, my app is currently based upon jqt+jqt.tabs+ajax loading of the pages. If I click from the tabbar to a page with select , jqt hides tabbar (display:none).

I've investigated a long this morning and the issue seems to be related only with select (if I remove the select the page works).

I tried to manually show the bar . The following code currently works but it's too slow ....

setTimeout( function(){ $('#tabbar').show(function () { jQT.setPageHeight(); }); } ,5000);

You may find the same behaviour in your demo -> UI DEMO -> FORMS

Reply to this email directly or view it on GitHub: https://github.com/DataZombies/jQTouch/issues/62

pezzo commented 12 years ago

Great works!! Thanks a lot!