var container = document.getElementById('prefContent');
container.innerHTML=xmlhttp.responseText;
selectTab("feedConfig", true);
-
- if (active_feed_cat) {
- var row = document.getElementById("FCATR-" + active_feed_cat);
- if (row) {
- if (!row.className.match("Selected")) {
- row.className = row.className + "Selected";
- }
- }
- var checkbox = document.getElementById("FCCHK-" + active_feed_cat);
- if (checkbox) {
- checkbox.checked = true;
- }
- }
-
notify("");
} catch (e) {
exception_error("feedlist_callback", e);
return
}
+ try {
+ var c = document.getElementById('prefContent');
+ c.scrollTop = 0;
+ } catch (e) { };
+
if (!noupdate) {
debug("selectTab: " + id + "(NU: " + noupdate + ")");
xmlhttp.onreadystatechange=infobox_callback;
xmlhttp.send(null);
}
+
+function showFeedsWithErrors() {
+ displayDlg('feedUpdateErrors');
+}