taglib prefix="s" uri="/struts-tags"
I tried the following javascript but it does not reset the width to 20 px once the combo is set
function autoWidth()
{
var maxlength = 0;
var mySelect = document.getElementById('
test');
for (var i=0; i<mySelect.options.length;i++)
{
if (mySelect[i].text.length>maxlength)
{
maxlength = mySelect[i].text.length;
}
}
mySelect.style.width = maxlength * 10;
}
<s:select list="" cssStyle="width:20px;" id="test" onKlick="autoWidth();">
</s:select>