One of our developers had written code that inadvertently relied on the incorrect delivery order of the ComboBox::click versus ComboBox::closeUp events. The documented order for delivery of these events has always been as follows:
Frm::comboBox1_click
Frm::comboBox1_closeup
However, prior to the Jade 6.3.08 release there was some code developed in our system that relied on the incorrect delivery order, that being:
Frm::comboBox1_closeup
Frm::comboBox1_click
The code in question has now been fixed, but I thought I'd let you all know in case there were any other systems out there that may be affected by relying on the previous incorrect delivery order of the events. It's unlikely, as the code in question wasn't particularly elegant code anyway and the rewritten version is much better anyway.... as is often the case with rewritten code...
Cheers,
BeeJay.