Undefined index: dataviz_load_bigtext in views_dataviz_plugin_display_extender_dataviz_bigtext
I added the following code to my views_dataviz_plugin_display_extender_dataviz_bigtext.inc file

function pre_execute() {
    // Call the parent setup function so we do not lose data.
    parent::pre_execute();
    if ($this->display->options['dataviz_load_bigtext']) {
    if (isset($this->display->options['dataviz_load_bigtext']) && $this->display->options['dataviz_load_bigtext']) 
      drupal_add_js(drupal_get_path('module', 'views_dataviz') . '/js/dataviz-bigtext.js');
    }

}
but still I am getting the same error whenever I add a new content to the field created

CommentFileSizeAuthor
#3 views_dataviz-2721075-3.patch868 bytessergiuteaca
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

rahulj created an issue. See original summary.

David_Rothstein’s picture

Project: Drupal core » Views Dataviz with Google Charts API
Version: 7.43 » 7.x-1.x-dev
Component: database system » Code
Assigned: rahulj » Unassigned

This does not look related to Drupal core. I'm moving it to what I think is probably the correct module's issue queue.

sergiuteaca’s picture

Status: Active » Needs review
FileSize
868 bytes

Hey, I have a patch to fix this notice