Hi,
I setup a view page with 5 fields in a table (as html edit).
In this page I'm viewing 10 nodes = 10x5 = 50 html edit fields.
The problem is that when the page loads, it stuck with not responding for about 15-20 sec till the user can start edit the page…
On Firefox it's working well.
What can cause this to happened on IE?
Thanks.

Comments

Musa.thomas’s picture

Same issue for D7 any new since 2010??!
Seems the problem comes from editablefields_views_form( line 422
in foreach line 438
I replace entity_type cause, it's undefined, and $entity
Line 442


    if (isset($row['entity'])) {
      $entity_type=$row['entity_type'];
      list($entity_id, ) = entity_extract_ids($entity_type, $row['entity']);
      if (!isset($form_state['editablefields_entities'][$entity_type][$entity_id])) {
        $form_state['editablefields_entities'][$entity_type][$entity_id] = $row['entity'];
      }

but not resolve problems I don't really understand what you do in this loop

joelpittet’s picture

Issue summary: View changes
Status: Active » Closed (outdated)