Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Fired when the user clicks on an item in a combo drop down.

Parameters

ParameterDescription
CtrlIdIdentifies a subclassed control
ItemThe item clicked
ValueThe value of the item clicked

Remarks

The OnComboClick event is fired after the user clicks on an item in a combo drop down.

...

The Value parameter contains the clicked row's value. The value is the data from the master column of the drop down.

Info

As of 4.1.16, by popular request, this event also fires when a user tabs out of the control.

Example

Code Block
Transfer Param1 to CtrlId 
Transfer Param2 to Item 
Transfer Param3 to Value 

// Since my CtrlId is the same the OI Control Entity Name, 
// I can use it to manipulate the OI properties as well 
Set_Property(CtrlId, "TEXT", "Combo drop down item ":Item:" was clicked, and it's value is ":Value:".")

...