public DashboardFilterProperty getPropertyInFilterComponents(String propertyId) {
if (dashboard.getSection() == null) return null;
Iterator it = dashboard.getSection().getPanels().iterator();
while (it.hasNext()) {
Panel p = (Panel) it.next();
DashboardFilterHandler handler = getHandler(p);
if (handler != null) {
DashboardFilterProperty prop = handler.getDashboardFilterProperty(propertyId);
if (prop != null) return prop;
}
}
return null;
}