yenerunver
yenerunver

Reputation: 44

Drupal Computed Field with Views

I have some Computed Fields and in these fields, I get some HTML codes with simple_html_dom.php class from some sites. Codes works perfectly on pages, but when I try to get these fields to use in a View, Drupal gives the following error.

https://i.sstatic.net/W2Rhc.jpg

Anybody can help?

Upvotes: 1

Views: 616

Answers (2)

Anthony Leach
Anthony Leach

Reputation: 1993

This message usually appears when you try to save the form before the ajax process has finished.

Try checking the 'network' tab on developer tools installed within Google Chrome or by using a tool similar to firebug. This will show you the request being made via ajax and should give you more information to debug.

Upvotes: 1

yenerunver
yenerunver

Reputation: 44

Even if it is not the best solution, after installing Views PHP module of Drupal, problem is slightly solved. I still get the error message on every time I try to change something, also I am having difficulties on making a change on the view, like saving and adding the same thing 5 times and got successfull, still it is a solution.

Upvotes: 1

Related Questions