[quote="webridge":1n990uxq]I see that JQuery and Prototype files are loaded at the same time. Maybe it is a conflict with the $ symbol.
This is the error I am getting:
TypeError: $(...) is null
$("note_crypted").checked = false;
I am using Firefox 27.0.1 and chrome 33.0.1750.146 m[/quote:1n990uxq]
It shouldn't be an issue, because we're loading jQuery in noConflict mode and it's available under jq alias. So $() is a prototype and jq() is jquery.
Probably I've found your problem... You don't have mcrypt extension. This is handled in PHP, that you don't so encryption fields are not loaded at all, then JS is broken.
[quote="lfogarty":1n990uxq]I use the latest Firefox on an Apple. I wouldn't receive any errors. It would just fail to react to the click.
I also found this code causing a permission denied from get_note.php.
if(!Base_AclCommon::i_am_admin() && $note['permission_by']!=Acl::get_user()) {
if(($note['permission']==0 && !$public) ||
($note['permission']==1 && !$protected) ||
($note['permission']==2 && !$private))
die(json_encode(array('error'=>__('Permission Denied'))));
[/quote:1n990uxq]
What kind of problem? You can see a note but in edit you get Permission Denied?