Hi Jacques http://docs.ofbiz.org/display/OFBADMIN/HTML+and+CSS+Best+Practices "HTML should be well structured, concise, and free of styling information. Well structured HTML is easily styled with style sheets (CSS) - therefore all styling code should be kept in the style sheets."
Regards Scott HotWax Media http://www.hotwaxmedia.com 801.657.2909 ----- Original Message ----- From: [email protected] To: [email protected] Sent: Saturday, February 7, 2009 12:58:29 PM GMT -07:00 US/Canada Mountain Subject: svn commit: r741948 - /ofbiz/trunk/applications/order/webapp/ordermgr/order/findOrders.ftl Author: jleroux Date: Sat Feb 7 19:58:28 2009 New Revision: 741948 URL: http://svn.apache.org/viewvc?rev=741948&view=rev Log: A patch from Sumit Porwal "On find orders form, user can not select multiple Role Types however the "findOrders" service supports it." (https://issues.apache.org/jira/browse/OFBIZ-2136) - OFBIZ-2136 Modified: ofbiz/trunk/applications/order/webapp/ordermgr/order/findOrders.ftl Modified: ofbiz/trunk/applications/order/webapp/ordermgr/order/findOrders.ftl URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/order/findOrders.ftl?rev=741948&r1=741947&r2=741948&view=diff ============================================================================== --- ofbiz/trunk/applications/order/webapp/ordermgr/order/findOrders.ftl (original) +++ ofbiz/trunk/applications/order/webapp/ordermgr/order/findOrders.ftl Sat Feb 7 19:58:28 2009 @@ -132,7 +132,7 @@ <td width='25%' align='right' class='label'>${uiLabelMap.PartyRoleType}</td> <td width='5%'> </td> <td align='left'> - <select name='roleTypeId'> + <select name='roleTypeId' multiple="multiple" style="height:5em"> <#if currentRole?has_content> <option value="${currentRole.roleTypeId}">${currentRole.get("description", locale)}</option> <option value="${currentRole.roleTypeId}">---</option>
