Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Disable category check boxes

Featured Replies

Checking or unchecking the check boxes (right) next to the category name don't work anymore in 5.3.

Roland

Dordrecht, The Netherlands

@RJTPlomp: The category check box will check apps, but not uncheck them.

Checking a category box will check any unchecked items within that category. However, unchecking the category does not uncheck all the apps in that category. This may be something that needs to be changed.

Good catch RJTPlomp. :thumbup

Definitely a bug. Here's the fix.

In check.js:

Function setUnchecked

else 
{
var chkbox = document.getElementById("chkbox"+i);
var lbl = document.getElementById('lbl'+i);

if (chkbox==null)
return;
if (forc[i]!=null && forc[i]=='yes') //<------------add this line
return; //<------------add this line
chkbox.checked=false;
lbl.className='txt';
tabs++;
uncheckChildren(i);
if (DisableOnDepsNotMet)
disableChildren(i);
if (useExclusions)
checkExclusions(i);
tabs--;
}

Function checkCategory

if (isCategory(thisChk)) //If category checkbox was checked
{
thisCat = thisChk;

for(i=1; cat[i] != null; i++)
{
if (cat[i] == thisCat)
{
if (state)
{
setChecked(i);
checkDeps(i);
}
else
{
// setUnchecked(i); //<--------remove the "//" at the begining
checkDeps(i);
}
}
}
}

@Zorphnog: We were both correct. With all 3 updates together it works 100% again. I mis-read where you added the 2 lines. Attached is the working check.js.

Ok, good. I was starting to get confused as to what you were talking about.

  • Author
Ok, good. I was starting to get confused as to what you were talking about.

I was confused as well... but downloaded the new fix, tested it, and found out it works like magic again. Great, thx!

Ro

Edited by RJTPlomp

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.