📅  最后修改于: 2023-12-03 15:02:17.601000             🧑  作者: Mango
The popupZIndex
property is a configuration option for the jQWidgets jqxComboBox widget. It sets the z-index value for the drop-down list that appears when a user clicks on the combo box.
$("#jqxComboBox").jqxComboBox({
popupZIndex: value
});
value
: An integer value representing the z-index of the drop-down list. Higher numbers mean that the drop-down list will appear on top of other HTML elements with lower z-index values.The default value for the popupZIndex
property is 20000
.
$("#jqxComboBox").jqxComboBox({
source: ["Apple", "Banana", "Cherry"],
popupZIndex: 30000
});
In this example, the popupZIndex
property is set to 30000
, which means that the drop-down list will appear on top of other HTML elements with lower z-index values.
For more information on the popupZIndex
property, refer to the official documentation.