URL containing the filter parameters
Name of the data region the column is a part of
Name of the column to filter
Human readable version of the filter
var url = 'mylab.org?qwp1.priority~gt=10&qwp1.priority~lte=75';
var description = LABKEY.Filter.getFilterDescription(url, 'qwp1', 'priority');
console.log(description); // "Is Greater Than 10 AND Is Less Than or Equal To 75"
Convert from URL syntax filters to a human readable description (e.g. "Is Greater Than 10 AND Is Less Than 100").