| Issue 279: | Active Ite not clickable/a href | |
| 1 person starred this issue and may be notified of changes. | Back to list |
What steps will reproduce the problem? 1. Set cookie to "/" 2. Click a link that goes to www.url.de/foo 3. Return to www.url.de and try to click the item again that leads to www.url.de/foo . The item that leads to www.url.de/foo somehow not clickable anymore (maybe because is saved in cookie dynatree-active) dynatree-1.2.1_rc3.zip jQuery JavaScript Library v1.4.4 config script used is attached
Feb 18, 2012
onActivate will only fire if the node was not yet active. Persistent-reload will activate the node, but not fire these events.
An alternative solution could be
onPostInit: function(isReloading, isError) {
// Fire an onActivate() event for the currently active node
this.reactivate();
},
(See 'Persistence' in the docs)
Status:
Done
Jul 17, 2012
considered verified
Jul 17, 2012
(No comment was entered for this change.)
Status:
Verified
Jan 26, 2013
(No comment was entered for this change.)
Labels:
Milestone-Release0.0
|
ah my bad...just use onClick:function (node) { and not onActivate for this works. Solves my problem, but the onActivate issue would maybe still be a problem for others.