I want to build popups in Drupal 8. This is the code I am using.
$attr = array( 'attributes' => [ 'class' => ['use-ajax'], 'data-dialog-type' => 'modal', 'data-dialog-options' => Json::encode([ 'width' => 700, ]), ] ); $url = Url::fromRoute('resume.grade_detail', ['uid' => $id, 'courseid' => $courseid]); $internal_link = \Drupal::l($average, $url, $attr); return array('#markup => $internal_link); In the rendered output, i don't find the CSS classes I added; as result, the popup doesn't work.
I need help.