Thank you for the hint...

In search.js I noticed that is possible to set var events.

function json2Select(jsonObj, fo) {
    var html = '<select name="' + jsonObj.selectname + '" ';
    var events = jsonObj.events;
    var size = jsonObj.size;
    if (size > 0) html += ' size="' + size +'" multiple="multiple" ';
    
    if (events) {
        /*for (var e in events) {
            html += e + '="' + events[e] + '" '; 
        }*/
        html += events;
    }
    html += '>';
   ....

I think this should be setted in the search.xml because I can see the
string:
<xs:element ref="events" minOccurs="0"/> 
in the xsd schema

But how?

I'd like to add something like:
 onfocus="expandSELECT(this);" onblur="contractSELECT(this);" 

thank you

-- 
View this message in context: 
http://www.nabble.com/css-problem-ie7%3A-how-to-enlarge-width-of-searchitem-select-box-tp21088548p21128852.html
Sent from the pmapper users mailing list archive at Nabble.com.


------------------------------------------------------------------------------
_______________________________________________
pmapper-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pmapper-users

Reply via email to