hypeJunction / elgg_tokeninput

Tokenizing autocomplete for Elgg
12 stars 5 forks source link

Core input/userpicker stops working #8

Open insideth opened 8 years ago

insideth commented 8 years ago

I have Clodtrick´s Todos plugin installed (https://github.com/ColdTrick/todos), and it uses input/userpicker in views\default\forms\todos\todoitem\edit.php but if I enable elgg_tokeninput plugin, users (asignee) selection stops working.

This is the code:

` $list = get_entity($container_guid); if (!empty($list) && elgg_instanceof($list->getContainerEntity(), 'group')) { echo '' . elgg_echo('todos:todoitem:assignee') . ''; echo ''; echo elgg_view('input/userpicker', array( 'value' => $assignee, )); echo ''; }

`