- Home
- Technical Library
- Boards
- Cookbook
- Code Share
- Blogs
- Partners
-
More
-
Services
- Training & Certification
- Support
-
Galleries
- Force.com Sites Gallery
- Chatter Challenge Entries
-
Other Web Sites
- Salesforce.com
- Database.com
- AppExchange
- CRM Community
-
Discussions
- Announcements
- General Development
- Schema Development
- New to Cloud Development
- Apex Code Development
- Visualforce Development
- Formulas & Validation Rules Discussion
- Security
- Mobile
- Force.com Sites
- Chatter Development
- Java Development
- .NET Development
- Perl, PHP, Python & Ruby Development
- Adobe Flash Builder for Force.com
- Desktop Integration
- REST API Integration
- Streaming API
- Visual Workflow
- Apple, Mac and OS X
- VB and Office Development
- Excel Connector
- AJAX Toolkit & S-controls
- Force.com Builder & Native Apps
- AppExchange Directory & Packaging
- Force.com Labs Projects
- Open Source
- Site.com
- Jobs Board - Administrators
- Jobs Board - Developers
- Force.com Discussion Boards
- :
- Developer Boards for Force.com and Database.com
- :
- Visualforce Development
- :
- Re: New UI + large picklist + rerender + FF3 = hea...
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
New UI + large picklist + rerender + FF3 = headache
[ Edited ]- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-08-2010 12:53 PM - last edited on 03-08-2010 12:58 PM
There appears to be an issue that has always been present but it is now coming to light with the new user interface. If you are using the new ui, have a large picklist, perform a rerender, and are using Firefox 3 the panel that is being rerendered flashes blue. I did some quick testing with the old UI and this behavior is there but the panel flashes white and is barely noticeable. The new bright blue background is obnoxiously apparent with the new ui.
What is quite bizarre is that if the picklist has a selected value that is less than 20 you will not see the behavior. Perhaps this is Firefox's fault but I would think there is someway to prevent the bright blue flash by updated the CSS or javascript that performs the rerender. Below is the code to reproduce and there is also a video that shows how annoying this can be from a user experience perspective.
<apex:page controller="rerenderFlash" >
<apex:form >
<apex:pageBlock id="block">
<apex:pageBlockButtons >
<apex:commandButton value="Rerender" rerender="block" />
</apex:pageBlockButtons>
<apex:pageBlockSection >
<apex:selectList value="{!selectedValue}" size="1" id="number" >
<apex:selectOptions value="{!options}" />
</apex:selectList>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>
public class rerenderFlash {
public List<SelectOption> options {get; set;}
public string selectedValue {get; set;}
public rerenderFlash(){
options = new List<SelectOption>();
for(Integer i = 0; i < 100; i++){
options.add(new selectOption(String.valueOf(i),String.valueOf(i)));
}
selectedValue = '90';
}
Video: http://vimeo.com/10013511
Visualforce Rerender Flash from TehNrd on Vimeo.
Re: New UI + large picklist + rerender + FF3 = headache
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-08-2010 01:08 PM
Re: New UI + large picklist + rerender + FF3 = headache
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-10-2010 09:58 AM
Re: New UI + large picklist + rerender + FF3 = headache
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-10-2010 10:02 AM
Re: New UI + large picklist + rerender + FF3 = headache
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-10-2010 10:52 AM
This is kind of strange. My colleague who is using the exact same VF page, does not see the flash. I am on FF 3.6 and he is using FF 3.5.8.
What version are you using?
I've also experienced some extremely slow behavior with highlight selection. Wonder if there is something going on with FF 3.6 and UI updates that is new with Spring '10.
Re: New UI + large picklist + rerender + FF3 = headache
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-10-2010 10:54 AM
I'm on 3.6.
I have also seen the slow highlighting on large tables.
Re: New UI + large picklist + rerender + FF3 = headache
[ Edited ]- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-17-2010 04:21 PM - last edited on 03-17-2010 04:21 PM
Support saying the only supported version is 3.0 exactly. Nothing newer, while technically true according to the documentation, it sounds like a cop out.
I've confirmed this is only happening with version 3.6.
Re: New UI + large picklist + rerender + FF3 = headache
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-18-2010 08:47 PM
Re: New UI + large picklist + rerender + FF3 = headache
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
04-06-2010 04:30 PM
My case got closed as "Browser not supported".

