google-code-export / django-page-cms

Automatically exported from code.google.com/p/django-page-cms
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Pages list : Problem displaying status icon when changing status #161

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Connect to the admin and display the pages list (admin/pages/page/)
2. Change the status 
3.

What is the expected output? What do you see instead?
The status icon doesn't change and instead loading is displayed

What version of the product are you using? On what operating system?
r683 on windows xp

Please provide any additional information below.
I fix it by changing the following lines in
pages\media\pages\javascript\pages.js :

'src': img.attr('src').replace('loading.gif', 'icons/'+opt[val]+'.gif'),
'alt': opt[val]

Changed by 

'src': img.attr('src').replace('loading.gif',
'icons/'+opt[$(select).val()]+'.gif'),
'alt': opt[$(select).val()]

Original issue reported on code.google.com by nea...@gmail.com on 8 Sep 2009 at 10:53

GoogleCodeExporter commented 9 years ago
I can't reproduce this bug. Which version of the CMS and which browser are you 
using?

Original comment by batiste....@gmail.com on 15 Sep 2009 at 7:51

GoogleCodeExporter commented 9 years ago
It was version r683 and the web browser was FireFox 3.5.3.

It's fixed now, it was some kind of cache browser problem. Everything fine now

Original comment by nea...@gmail.com on 15 Sep 2009 at 8:08

GoogleCodeExporter commented 9 years ago
Oki thanks for your quick answer!

Original comment by batiste....@gmail.com on 15 Sep 2009 at 8:56

GoogleCodeExporter commented 9 years ago
Just fixed the issue properly with the last revision 691

Original comment by batiste....@gmail.com on 15 Sep 2009 at 5:08