Hey there,

In chrome, safari and FF I can choose a view Display after selecting a view:
screenshot ok

Unfortunately in Explorer (v.10.0.9200) I can't:
screenshot fail

Guess what browser my clients using...

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

DuaelFr’s picture

It looks like a Javascript issue.
I have no access to IE for now, could you try to debug this ?

immoreel’s picture

There seems to be a bug in IE (or jQuery)...

In tvi.js around line 30 the new options get generated:

ds.append($(item));
Somehow the text of the option element doesn't transfer to the new options.

I changed it to this:

var o = new Option($(item).attr('value'), $(item).attr('value'));
ds.append(o);

I tried to get the text of the element with
$(item).text();
but that doesn't work so now I have the attribute value as the text as well.

Not ideal, but better then an empty field...
If anybody knows why $(item).text() doesn't work I'd love to be enlightened...

kevinquillen’s picture

Status: Active » Needs work
kevinquillen’s picture

Issue summary: View changes
Status: Needs work » Postponed (maintainer needs more info)

There have been a handful of TVI releases since then and some IE updates. Does this error still occur? Are you using jquery update (1.5-1.7 for admin)?

kevinquillen’s picture

Status: Postponed (maintainer needs more info) » Closed (outdated)
docans’s picture

I am experiencing the same problem in Chrome. The "Using this view" drop down is greyed out and doesnt work