From 9190777bc7e49f2a5e451ee58f3085215f9cf74a Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Tue, 10 Feb 2009 22:30:03 +0100 Subject: add modifyEntry --- lib/python/Components/Sources/List.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib/python') diff --git a/lib/python/Components/Sources/List.py b/lib/python/Components/Sources/List.py index 26c68ab5..23b53957 100644 --- a/lib/python/Components/Sources/List.py +++ b/lib/python/Components/Sources/List.py @@ -28,7 +28,11 @@ to generate HTML.""" def entry_changed(self, index): if not self.disable_callbacks: self.downstream_elements.entry_changed(self, index) - + + def modifyEntry(self, index, data): + self.__list[index] = data + self.entry_changed(index) + def count(self): return len(self.__list) -- cgit v1.2.3