DataSetView.st
changeset 1066 c588ca20e4b4
parent 1012 5d98566099fa
child 1187 544b83216038
--- a/DataSetView.st	Sat Aug 08 13:46:10 1998 +0200
+++ b/DataSetView.st	Sat Aug 08 13:47:04 1998 +0200
@@ -571,6 +571,16 @@
     "Modified: / 26.7.1998 / 12:16:17 / cg"
 !
 
+listAt:index put:newElement
+    "kludge callback, when an element hs to be replaced
+     due to a col-adaptor returning a new row element"
+
+    listHolder value at:index put:newElement
+
+    "Created: / 7.8.1998 / 22:18:11 / cg"
+    "Modified: / 7.8.1998 / 22:21:00 / cg"
+!
+
 listHolder:aListHolder
     "set the valueHolder which holds the list of rows
     "
@@ -792,8 +802,10 @@
 
     columnView borderWidth:0.
     columnView addDependent:self.
+    columnView dataSetView:self. "/ kludge
     labelView for:columnView.
 
+    "Modified: / 7.8.1998 / 22:15:37 / cg"
 !
 
 realize
@@ -828,5 +840,5 @@
 !DataSetView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/DataSetView.st,v 1.22 1998-07-27 07:51:30 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/DataSetView.st,v 1.23 1998-08-08 11:47:04 cg Exp $'
 ! !