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 General Discussion » Problem with Bottom Outer Cells Collapse All
Subject Author Date
Johannes Schwenk Sep 23, 2008 - 7:01 AM

Hi,


I have a Cell Type I use for inner cells. When I click On it, the Inplace Control is Shown. I want to use the same type for outer cells, too, but when I click on an outer cell of the Type, nothing happens.


What can be wrong?


Thank You,


Johannes Schwenk

Johannes Schwenk Sep 24, 2008 - 6:58 AM

Thank You! Now it works...

Technical Support Sep 24, 2008 - 4:25 AM

The following styles are defined for enabling the cell editing feature in different outer/inner cell areas:

#define __EGWS_BSE_EDIT_CELLS_OUTER_T                  0x00000001L
#define __EGWS_BSE_EDIT_CELLS_OUTER_B                 0x00000002L
#define __EGWS_BSE_EDIT_CELLS_OUTER_HORZ              (__EGWS_BSE_EDIT_CELLS_OUTER_T|__EGWS_BSE_EDIT_CELLS_OUTER_B)
#define __EGWS_BSE_EDIT_CELLS_OUTER_L                 0x00000004L
#define __EGWS_BSE_EDIT_CELLS_OUTER_R                 0x00000008L
#define __EGWS_BSE_EDIT_CELLS_OUTER_VERT              (__EGWS_BSE_EDIT_CELLS_OUTER_L|__EGWS_BSE_EDIT_CELLS_OUTER_R)
#define __EGWS_BSE_EDIT_CELLS_OUTER                   (__EGWS_BSE_EDIT_CELLS_OUTER_HORZ|__EGWS_BSE_EDIT_CELLS_OUTER_VERT)
#define __EGWS_BSE_EDIT_CELLS_INNER                   0x00000010L
You should apply the __EGWS_BSE_EDIT_CELLS_OUTER_B style by invoking the CExtGridWnd::BseModifyStyle() method to enable the editing feature for outer header cells at the bottom.

Johannes Schwenk Sep 24, 2008 - 6:58 AM

Thank You! Now it works...