|
Re: PtCombobox focus problem
|
06/29/2009 8:27 AM
post32692
|
Re: PtCombobox focus problem
This is expected. PtComboBox is a compound widget -- it contains subordinate widgets: PtText, PtList and other
(transient) widgets. Focus is given to the PtText, which doesn't have an ABN number associated with it. Subordinate
widgets of compound widgets are PROCREATED, so add this code after the focus change:
if( PtWidgetFlags(CurrentWidget) & Pt_PROCREATED ) {
CurrentWidget = PtWidgetParent( CurrentWidget );
}
You should get a correct ABN number now.
|
|
|