Changeset 6190 for branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Views
- Timestamp:
- 05/12/11 20:08:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Views/Filter/Filters.ascx
r6170 r6190 40 40 <% StringComparisonFilter filter = ((StringComparisonFilter)f); %> 41 41 <%: Html.Label(filter.Label)%> 42 <%: Html. Label("=")%>42 <%: Html.DropDownList(f.Id + "." + FilterModel.ComparisonDropDownList, new SelectList(FilterModel.StringComparisons,"Value","Text", filter.Comparison))%> 43 43 <%: Html.TextBox(f.Id + "." + FilterModel.ValueTextbox, (filter.Value))%> 44 44 <% } … … 47 47 <% NameStringComparisonFilter filter = ((NameStringComparisonFilter)f); %> 48 48 <%: Html.Label(filter.Label)%> 49 <%: Html.Label("=" + f.Id)%>49 <%: Html.Label("=")%> 50 50 <%: Html.TextBox(f.Id + "." + FilterModel.ValueTextbox, filter.Value)%> 51 51 <% } … … 61 61 <% NameEqualityComparisonByteArrayFilter filter = ((NameEqualityComparisonByteArrayFilter)f); %> 62 62 <%: Html.Label(filter.Label)%> 63 <%: Html.Label("teby")%> 63 64 <% } 64 65 else if ("NameEqualityComparisonBoolFilter".Equals(f.GetType().Name)) … … 67 68 %> 68 69 <%: Html.Label(filter.Label)%> 69 <%: Html.Label("is") %>70 <%: Html.Label("is") %> 70 71 <%: Html.DropDownList(f.Id + "." + FilterModel.ValueDropDownList, new SelectList(((FilterModel)Model).BoolStates, filter.Value))%> 71 72 <% } … … 74 75 <% NameOrdinalComparisonIntFilter filter = ((NameOrdinalComparisonIntFilter)f); %> 75 76 <%: Html.Label(filter.Label)%> 76 <%: Html.Label("is")%> 77 <%: Html.DropDownList(f.Id + "." + FilterModel.ValueDropDownList, new SelectList(FilterModel.OrdinalComparisons,"Value","Text", filter.Comparison))%> 78 <%: Html.TextBox(f.Id + "." + FilterModel.ValueTextbox, filter.Value)%> 77 79 <% } 78 80 else if ("NameStringComparisonAvailableValuesFilter".Equals(f.GetType().Name)) … … 87 89 <% NameOrdinalComparisonDoubleFilter filter = ((NameOrdinalComparisonDoubleFilter)f); %> 88 90 <%: Html.Label(filter.Label)%> 89 <%: Html.Label(" =")%>91 <%: Html.Label("<")%> 90 92 <%: Html.TextBox(f.Id + "." + FilterModel.ValueTextbox, filter.Value)%> 91 93 <% } … … 94 96 <% NameOrdinalComparisonFloatFilter filter = ((NameOrdinalComparisonFloatFilter)f); %> 95 97 <%: Html.Label(filter.Label)%> 96 <%: Html.Label(" =")%>98 <%: Html.Label("<")%> 97 99 <%: Html.TextBox(f.Id + "." + FilterModel.ValueTextbox, filter.Value)%> 98 100 <% } … … 101 103 <% NameOrdinalComparisonLongFilter filter = ((NameOrdinalComparisonLongFilter)f); %> 102 104 <%: Html.Label(filter.Label)%> 103 <%: Html.Label(" =")%>105 <%: Html.Label("<")%> 104 106 <%: Html.TextBox(f.Id + "." + FilterModel.ValueTextbox, filter.Value)%> 105 107 <% }
Note: See TracChangeset
for help on using the changeset viewer.