The "cross site scripting filter" (xss) on Internet Explorer v10 will cause various problems with Noodle.
You can leave it on for every other site.
Please disable it for "trusted sites" as shown in the images below:

Search
The Noodle search is located on the top bar, additionally you can search from the search widget and some application types.
- Search indexes file names, descriptions, keywords, and the content of text files( and other formats and meta data if configured).
- If your search results are to broad you can click on the advanced link and filter them.
- Words in file names and titles are prioritized over those in the contents.
- If you are looking for the most resent changes on Noodle try the What's New.
Graphics
Noodle allows you to change much of it's appearance and some of it's behavior.
The simple changes:
- Change the logo in the top left and on the login screen in System Tools>Settings>General Settings
- Change the Colors from the same place.
- add, remove, sort, and nest applications in the navigation.
- add some fancy widgets
Advanced changes:
- Backup a copy of the CSS and customize it in the settings.
Appearance and beyond:
Web services
Noodle can use any web service that uses a html/AJAX/JSON interface.
Some common web service include youtube, rss readers, ical subscriptions, geolocation, and in-house tools.
Active Directory (AD)
Overview
Noodle can use LDAP with AD to authenticate as well as import users and groups.
Noodle Prerequisites
- Before enabling LDAP in Noodle ensure your license key will accommodate the total number of users( local and from the AD group).
- Using SSL may require a client certificate installed on the Noodle server.
Configuration
The AD settings are in System Tools > Settings > Single Sign-On.
- Toggle Enabled to Yes
- Enter the Name or IP address of your DC
- Make a new user in AD in the Users Container with rights to search other users, and enter the display name and primary FQDN in the Noodle Administrative field, password in the password field.
- yes the display name, not the user name.
- Add the service user account to the "Read-only Domain Controllers" security group if read only is enabled in the Noodle AD settings.
- Make a new Security Group in AD, add some users and groups to it, and tell Noodle it's name.
- Tell Noodle the primary Domain of the users in the security group
- Save
You should see “Active Directory is synchronized” display at the bottom of the page after the first sync is complete.
Additional Information
- Required synchronizing fields: firstname, lastname, email
- Synchronizing fields: title, phone1, phone2, mobile, address, city, state, country, zip, manager, note
- Extra synchronizing fields : UPN, locked, change password on login, expiry, group id, modifyTimeStamp, distinguishedName
- Other synchronizing fields can be added in "System Tools > People > Administration > Settings > User Fields" (EG: add "CN=sAMAccountName" to enable 1996 authentication)
- Noodle imports ONLY users and groups that are directly members to the “Group Name” specified in Noodle (users from sub groups will not be imported) and users must have a matching primary "domain" specified in Noodle.
- AD changes are reflected in Noodle every 10 minutes by default.
- Authentication requests are forwarded from Noodle to Active Directory in real time.
- Multiple DCs can be used by separating the settings with commas.
- The same number of commas should exist in all settings (think spreadsheet).
- Backup DCs can be used by separating the IPs with semicolons.
- When configuring AD from the cloud, port forwarding (or firewall rules and routes) must be configured. Please review the Microsoft documentation:
- See also the AD Troubleshooting Guide.
Making a Calendar event on form submission
What it does:
- When the page loads the buttons are changed to will wait for a calendar entry to be made before submitting the form.
How to do it:
- Make your Calendar and Database applications, add at least a text and date element to your Database.
- Note the folder id and event type from the Calendar. Note the date and button element ids on the form.
- Customize the following sample script accordingly.
- Add the script to a rich text element in the form.
<script>
function init() {
if(document.location.href.indexOf("MainWindow.po")<0 || document.location.href.indexOf("formHandle")>0 ){
return;
}
document.getElementById("add").type="button";
document.getElementById("addAnother").type="button";
top.noodle.cbc.addEventListener(document.getElementById("add"), 'click', doit);
top.noodle.cbc.addEventListener(document.getElementById("addAnother"), 'click', doit);
}
function doit() {
document.getElementById("lowerButtonBar").style.display="none";
var folder="256272"
var evetnTypeID="3511";
var title="Training "+top.noodle.headWindow().document.getElementById("currentUserName").innerHTML;
var day=document.getElementById("day_220063").value;
var month=document.getElementById("month_220063").value;
var year=document.getElementById("year_220063").value;
month=parseInt(month)-1;
var vars="";
vars+="folder="+folder;
vars+="&eventid=new";
vars+="&addedRecipients=";
vars+="&title="+title;
vars+="&isAllDay=";
vars+="&isPrivate=";
vars+="&eventType="+evetnTypeID;
vars+="&quickSave=Quick Save";
vars+="&repeat=";
vars+="&eventColorName=LightBlue";
vars+="&eventColor=#add8e6";
vars+="&save=Save";
vars+="&selMonth="+month;
vars+="&selDay="+day;
vars+="&selYear="+year;
vars+="&startHour=9";
vars+="&startMinute=00";
vars+="&am_pm=am";
vars+="&durationMonth="+month;
vars+="&durationDay="+day;
vars+="&durationYear="+year;
vars+="&durationHour=5";
vars+="&durationMinute=00";
vars+="&duration_am_pm=pm";
vars+="&TimeZone=6";
vars+="&eventLocation=";
vars+="&groupsAndUsersList=";
vars+="&addedGroupsAndUsers=";
vars+="&endAfterN=1";
top.noodle.ajax.post("/calendar/HandleEventView.po", vars, handle_doit, []);
return false;
}
function handle_doit(xml, txt, array) {
top.noodle.cbc.removeEventListener(document.getElementById('add'), 'click', doit);
top.noodle.cbc.removeEventListener(document.getElementById('addAnother'), 'click', doit);
document.getElementById("lowerButtonBar").style.display="block";
document.mainform.submit();
}
window.onload = init;
</script>HTTP redirect
Some browsers incorrectly cache HTTP 302 "Found/Moved temporarily" and 303 "See Other" redirects as if they were 301 "Permanent Redirect"s.
Safari
The "Too many redirects" error can be temporarily fixed In the "Safari" menu by selecting "Reset Safari".
Chrome/Chromium
Disabling "Use a prediction service to load pages more quickly" is advised.
RSS for each DataManager Entry
<script>
function loadjsfile(filename){
var fileref=document.createElement('script');
fileref.setAttribute("type","text/javascript");
fileref.setAttribute("src", filename);
if (typeof fileref!="undefined"){
document.getElementsByTagName("head")[0].appendChild(fileref);
}
}
var link=document.getElementById("elementValue_10");
if(link){
link=link.firstChild;
if(link){
link=link.href;
if(link.length>10){
link="/feed2js/feed2js.php?targ=y&move=elementValue_10&src="+encodeURI(link);
loadjsfile(link);
}
}
}
</script>replace elementValue_10 with the id of the RSS feed you want to use from the entry.
This will work on newer browsers:
<script src="/feed2js/feed2js.php?targ=y&move=demo&src=http://my.domain.tld/feed.rss"></script>
<div id="demo"> </div>
Help Videos
Announcement widget Javascript
Other ways to insert JavaScript here
- Press the "Edit" button
- Press the "More" button
- Press the "Source" button
- make a script tag
- put your Javascript in it
If you want to use the page re-writer or otherwise effect other pages you will have to escape the scope of the page:
<script>
function temp(){
if(!top.noodle.custom){
top.noodle.custom=function(){
var doc=top.noodle.mainWindow().document;
var url=doc.location.href;
//your code here
};
}
}
top.noodle.core.evalString(temp.toString()+";temp();");
</script>