[Gtk-sharp-list] Editable DataGrid.

Mike Kestner mkestner@speakeasy.net
Tue, 14 Oct 2003 17:26:51 -0500


On Tue, 2003-10-14 at 13:56, Luciano Callero wrote:

> The only way that i think is to create another class that inherit Entry (in 
> case that entry is the choice) that have another property that reference to 
> row Index. Is this correct? it is posible to do in other way?

Take a look at GLib.Object.Data.  It is a Hashtable that allows you to
store arbitrary data on any GLib.Object.  So you could do something
like:

entry.Data ["row_index"] = row;

-- 
Mike Kestner <mkestner@speakeasy.net>