Sha256: a1028963216583183ae4e7c7bc938667733c9955dfc1e1703a7cc2c00701cb0c
Contents?: true
Size: 1.07 KB
Versions: 3
Compression:
Stored size: 1.07 KB
Contents
<% if wf_filter.errors[index] %> <tr> <td colspan="2"> </td> <td> <div class="wf_condition_error"> <%= wf_filter.errors[index] %> </div> </td> <td> </td> </tr> <% end %> <tr> <td class="wf_condition"> <%= select_tag "wf_c#{index}", options_for_select(wf_filter.condition_options, condition.key.to_s), {:class=>"wf_input", :style=>"width:100%", :onChange=>"wfFilter.updateConditionAt('#{index}')"} %> </td> <td class="wf_operator"> <%= select_tag "wf_o#{index}", options_for_select(wf_filter.operator_options_for(condition.key), condition.operator.to_s), {:class=>"wf_input", :style=>"width:100%", :onChange=>"wfFilter.updateConditionAt('#{index}')"} %> </td> <td class="wf_values"> <%= condition.container.render_html(index) %> </td> <td class="wf_condition_actions"> <%=link_to_function("<span>-</span>", "wfFilter.removeConditionAt('#{index}')", :class => "grey-button pcb") %> <%=link_to_function("<span>+</span>", "wfFilter.addConditionAfter('#{index}')", :class => "grey-button pcb") %> </td> </tr>
Version data entries
3 entries across 3 versions & 1 rubygems