Good morning,
Works fine when user clicks on the little dropdown arrow on the right hand side of the control.
I would like when the user clicks on the button itself, not the down arrow, that it would show the drop down container control just like if they had clicked on the arrow.
Is this possible?
Want to call it from code, vb.net, if possible.
thanks
Deasun
Hello tirnaog,
A possible approach for achieving this kind of behavior would be setting the DropDownArrowStyle property to Standard, like in the following code line:
popupControlContainerTool.DropDownArrowStyle = DropDownArrowStyle.Standard
Please do not hesitate to contact us if you need any additional assistance.
Found It!
Dim objContainerTool As Infragistics.Win.UltraWinToolbars.PopupControlContainerToolobjContainerTool = uwTBMgr.Ribbon.Tabs("Assignment").Groups("A Rep").Tools("Assign A Rep")objContainerTool.ClosePopup()
Also another issue with this popup control;
i have put a ultrawintree control in it and when the user clicks on one of the nodes it wont disappear.
I have put code in the afterselect to make the control invisible and the tree does disappear.
But the popup container remains in place!!
I tried adding the following code;
Dim objContainerTool As Infragistics.Win.UltraWinToolbars.PopupControlContainerToolobjContainerTool = uwTBMgr.Ribbon.Tabs("Assignment").Groups("A Rep").Tools("Assign A Rep")objContainerTool.SharedProps.Visible = False
The container then disappears but the tool is now disabled! So user cant click on it again to see the popup!
Whats am i missing here?
Thanks