popup combobox on pressing enter in a GtkComboboxEntry

[email protected] (Ionut Dinu) Thu, 13 Aug 2009 13:21:32 +0300
Newsgroups php.gtk.general
Organization netBridge
Message-ID <[email protected]>
hi.
how can i do this? 

it seems that :

<?php
$shopLogCombobox = $glade->get_widget('shopLogCombobox');
$shopLogCombobox->connect_simple('editing-done', 'test');
?>

or 

<?php
$shopLogCombobox = $glade->get_widget('shopLogCombobox');
$shopLogCombobox->get_child()->connect_simple('editing-done', 'test');
?>

does not work.

thx