For Drupal 7, I wrote a very simple module to implement the Dirty Forms jQuery library with specific customizations to support the CKEditor module. This was, all told, about 8 lines of PHP code.
I've spent several hours reading through documentation and experimenting today, and I still am no closer to making this work for Drupal 8.
Drupal 7 has a relatively simple manner for doing this:
$form['#attached']['js'] = array();
When I first did this in Drupal 8, I got the error:
So I have a field called "user_menu" which is a multiple Links field for the Users.
Then I have a new content Type "user_page " with a reference field to a user called "related_user".
Now I would like to have on each "user_page" the "user_menu" field from the referenced user given by the "related_user" field. So how can I get the "user_menu" field in the "user_page" twig file? Or should this be done in some other way?
so I integrated IMCE to my Drupal 8 installation and was trying to get the "Browse Server" function in the "Link" function of CkEditor. But there is nothing.
The next thing was to activate IMCE for File fields. I activated the " Allow users to select files from Imce File Manager for this field." for the widget. But the "Open File Browser" link above the upload widget also is missing.