I builded a page with the paginator helper.
--------------------------------------------------------------------------
Using:

CAKEPHP: 1.2.0.5427alpha
Prototype: 1.5.1.1
---------------------------------------------------------------------------

everything works fine with Firefox and Safari.

With IE 7 the paginator goes on only by 1 page, and then the links
don't work anymore.

You can check it out here: 
http://www.intellighenziaproject.it/cake/posts/ajaxPostsBlock/

----------------------------------------------------------------------------

I'm using a VIEW that is as follows:

----------------------------------------------------------------------------
<div id="PostsPaging">
<?php $paginator->options(array('update' => 'PostsPaging', 'indicator'
=> 'LoadingDiv')); ?>

<?=$paginator->prev('<< Previous', null, null, array('class' =>
'disabled')); ?> |
Page <?=$paginator->counter(); ?> |<?=$paginator->next('Next >>',
null, null, array('class' => 'disabled')); ?>

<div id="LoadingDiv" style="display: none; text-align: center;">
    <?php echo $html->image('spinner.gif'); ?>
</div>
<ul>
<?php

 foreach($posts as $key=>$post){?>
<li>
<?= $post['Post']['title']?>
</li>
<?php } ?>
</ul>
</div>
----------------------------------------------------------------------------

Any idea on why IE7 is not working?

Prototype bug?
Cake bug?

My coding bug?

Anybody else experienced the same problem?

Cheers Dan


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to