Hi,
I entered the following JavaScript Initialization Code in the Popup LOV page item. However, when the page is run, all columns are still automatically stretched based on the width specified in the Popup LOV.
function(config) {
var cfg = config;
cfg.stretchColumns = false;
return config;
}
I would like each columns in the Popup LOV to automatically fit their content but not to shrink based on the width of the Popup LOV. Below is an example page that I made in apex.oracle.com. Does anyone know the solution for this when I need to show many columns in the Popup LOV?
https://apex.oracle.com/pls/apex/f?p=84401:2
Thank you!