Hi All,

I'm not sure where to post this query regarding cCJToolbar/cCJMenuItem. Is this the right place??

My question is: Is it possible to create a Checkbox menu item as a split button, where I have the downwards arrow that pops up a drop down list and I can add more menu items within.

Another option is to have an cCJMenuItem object set as a split button (peControlType = xtpControlSplitButton) and within this object is a set of cCJMenuItem that are set as check boxes (peControlType = xtpControlCheckbox). I have tried this option but it doesn't work so maybe I am doing something wrong. (See code below)

Code:
        Object oCmdBar is a cCJCommandbarSystem
          Object oToolbar is a cCJToolbar
            Object oMenuItem is a cCJMenuItem
              Set psCaption to "Split Button"
              Set peControlType to xtpControlSplitButtonPopup
              
              Object oChkMenuItem is a cCJMenuItem
                Set psCaption to "Checkbox 1"
                Set peControlType to xtpControlCheckBox
              End_Object

            End_Object
          End_Object
        End_Object
Are any of the above options possible? if so, how does one create them?

Regards,
Rol