Changeset 15257 for main/waeup.ikoba
- Timestamp:
- 30 Nov 2018, 07:14:23 (6 years ago)
- Location:
- main/waeup.ikoba/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/trunk/CHANGES.txt
r14221 r15257 4 4 0.2.dev0 (unreleased) 5 5 ===================== 6 7 * Remove 'hidden' attribute from ordereddSelectionList which has 8 caused a malfunction in Internet Exporer. 9 10 * Use the 'new' recaptcha v2. 6 11 7 12 * Count mandates on configuration page and provide 'Purge' button. -
main/waeup.ikoba/trunk/buildout.cfg
r12837 r15257 36 36 update-versions-file = versions.cfg 37 37 38 index = https://pypi.python.org/simple/ 38 39 39 40 # eggs will be installed in the default buildout location -
main/waeup.ikoba/trunk/src/waeup/ikoba/widgets/orderedSelectionList.pt
r12542 r15257 119 119 newNode.setAttributeNode(newAttr); 120 120 121 newAttr = document.createAttribute("type");122 newAttr.nodeValue = "hidden";123 newNode.setAttributeNode(newAttr);124 125 121 newAttr = document.createAttribute("value"); 126 122 newAttr.nodeValue = toSel.options[i].value; … … 141 137 <tr> 142 138 <td> 143 <select id="from" name="from" size="5" multiple=" "139 <select id="from" name="from" size="5" multiple="multiple" 144 140 tal:attributes="name string:${view/name}.from; 145 141 id string:${view/name}.from; … … 148 144 <option tal:repeat="entry view/choices" 149 145 tal:attributes="value entry/value" 150 tal:content="entry/text" />146 tal:content="entry/text" i18n:translate=""/> 151 147 </select> 152 148 </td> … … 163 159 </td> 164 160 <td> 165 <select id="to" name="to" size="5" multiple=" "161 <select id="to" name="to" size="5" multiple="multiple" 166 162 tal:attributes="name string:${view/name}.to; 167 163 id string:${view/name}.to; … … 169 165 <option tal:repeat="entry view/selected" 170 166 tal:attributes="value entry/value" 171 tal:content="entry/text" />167 tal:content="entry/text" i18n:translate=""/> 172 168 </select> 173 169 <input name="foo-empty-marker" type="hidden" 174 170 tal:attributes="name string:${view/name}-empty-marker"/> 175 <span id="toDataContainer" 171 <span id="toDataContainer" style="display: none" 176 172 tal:attributes="id string:${view/name}.toDataContainer"> 177 173 <script type="text/javascript" tal:content="string:
Note: See TracChangeset for help on using the changeset viewer.