1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-27 12:51:29 +00:00

remove scriptaculous inplace editor in feed cats dialog

This commit is contained in:
Andrew Dolgov
2010-11-18 16:44:51 +03:00
parent e1c619bc24
commit 44e05f79e9
2 changed files with 26 additions and 35 deletions

View File

@@ -1085,10 +1085,30 @@
onclick='toggleSelectRow(this);'
type=\"checkbox\" id=\"FCCHK-$cat_id\"></td>";
print "<td><span id=\"FCATT-$cat_id\">" .
$edit_title . "</span></td>";
print "<td>";
print "</tr>";
# print "<span id=\"FCATT-$cat_id\">" .
# $edit_title . "</span>";
print "<span dojoType=\"dijit.InlineEditBox\"
width=\"300px\" autoSave=\"false\"
cat-id=\"$cat_id\">" . $edit_title .
"<script type=\"dojo/method\" event=\"onChange\" args=\"item\">
var elem = this;
dojo.xhrPost({
url: 'backend.php',
content: {op: 'pref-feeds', subop: 'editCats',
action: 'save',
value: this.value,
cid: this.srcNodeRef.getAttribute('cat-id')},
load: function(response) {
elem.attr('value', response);
}
});
</script>
</span>";
print "</td></tr>";
++$lnum;
}