Changeset 6328 for branches/WebApplication
- Timestamp:
- 05/28/11 10:52:34 (14 years ago)
- Location:
- branches/WebApplication/MVC2/HLWebOKBQueryPlugin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Models/FilterModel.cs
r6305 r6328 145 145 { 146 146 // get selected filter (combobox) 147 Filter filter = AvailableFilters.Where(x => x.FilterTypeName.Equals(filterTypeName)).FirstOrDefault();147 Filter filter = AvailableFilters.Where(x => x.Label.Equals(filterTypeName)).FirstOrDefault(); 148 148 149 149 // find the partent filterr 150 150 List<Filter> orFilters = Content.Filters.ToList<Filter>(); ; 151 151 CombinedFilter parentFilter = (CombinedFilter)orFilters.Where(e => e.Id.Equals(parentId)).FirstOrDefault(); 152 153 152 154 153 155 // remove -
branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Views/Filter/Filters.ascx
r6318 r6328 32 32 <li> 33 33 <%: Html.Hidden(hiddenName, currentFilter.Id.ToString())%> 34 <%: Html.DropDownList(comboboxName, new SelectList(((FilterModel)Model).AvailableFilterForCombobox, " FilterTypeName", "Label"))%>34 <%: Html.DropDownList(comboboxName, new SelectList(((FilterModel)Model).AvailableFilterForCombobox, "Label", "Label"))%> 35 35 <input type="button" name="submitButton" value="+" class="hl-button-text-plus" onclick="setAction('add','<%: currentFilter.Id%>');" /> 36 36 <!-- <input type="submit" name="submitButton" value="+.<%:currentFilter.Id%>" />--> -
branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Views/Query/Index.aspx
r5910 r6328 13 13 14 14 <h2> 15 Hello World Query!</h2>15 Query-Plugin main features</h2> 16 16 <p> 17 < i>Now with more Hello World Action!</i>17 <% Html.RenderAction("Menu"); %> 18 18 </p> 19 19
Note: See TracChangeset
for help on using the changeset viewer.