Professional UI Solutions
Site Map   /  Register
 
 

Forum

Please Log In to post a new message or reply to an existing one. If you are not registered, please register.

NOTE: Some forums may be read-only if you are not currently subscribed to our technical support services.

Forums » Prof-UIS Tech Support » OnGridCellInputComplete problem Collapse All
Subject Author Date
Offer Har Jul 19, 2007 - 8:20 PM

Dear Support,

I have a cell of type CExtGridCellDropListComboBox, and I override the grid’s OnGridCellInputComplete to catch when selected item in the cell have changed.
If the user selects some item, I need to show him a message-box with some information.

The problem is that the drop-down list of the cell does not close, and appears on top of the message-box.
Even more strange is that I can keep on selecting items in the dropped list.
Shouldn’t the OnGridCellInputComplete be called after the drop-list is already closed?

Please advise.

Thanks,
Ron.

Technical Support Jul 21, 2007 - 11:32 AM

Please insert the following lines before you show the message box:

 if( CExtPopupMenuWnd::IsMenuTracking() )
  CExtPopupMenuWnd::CancelMenuTracking();