Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/07/11 14:17:42 (13 years ago)
Author:
gschwarz
Message:

#1433 Updated Problem Control/View

Location:
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Problem
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Problem/Detail.aspx

    r6142 r6153  
    6161                <select name="ProblemClassId">
    6262                    <% foreach(ProblemClass pc in ((ProblemModel)Model).ProblemClasses) {  %>
     63                        <% if(p.ProblemClassId == pc.Id) { %>
     64                            <option selected="selected" value="<%=pc.Id%>"><%=pc.Name%></option>
     65                        <% } else { %>
    6366                            <option value="<%=pc.Id%>"><%=pc.Name%></option>
     67                        <% } %>
    6468                    <% } %>
    6569                </select>
     
    7377                <select name="PlattformId">
    7478                    <% foreach(Platform pc in ((ProblemModel)Model).Plattforms) {  %>
     79                        <% if(p.PlatformId == pc.Id) { %>
     80                            <option selected="selected" value="<%=pc.Id%>"><%=pc.Name%></option>
     81                        <% } else { %>
    7582                            <option value="<%=pc.Id%>"><%=pc.Name%></option>
     83                        <% } %>
    7684                    <% } %>
    7785                </select>
  • branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Problem/Index.aspx

    r6142 r6153  
    88<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
    99    <h2>Problems</h2>
     10   
     11   
     12   
     13    <%  long? id = null;  %>
     14    <%: Html.ActionLink("New Problem", "Detail", new {id}) %>
     15    <%: Html.ActionLink("Order ASC", "SortAsc")%>
     16    <%: Html.ActionLink("Order DESC", "SortDesc")%>
     17
    1018    <div style="height:150px; overflow:scroll;">
    1119        <table>
     
    2230                    <%: Html.Label(p.DataTypeName)%>
    2331                </td>
     32                <td>
     33                     <%: Html.ActionLink("delete", "Detail",new {p.Id}) %>
     34                </td>
    2435            </tr>
    2536            <% } %>
    2637        </table>
    27     </div>
    28 
    29      
    30     <h2>Create new Problem</h2>
    31  
    32        
     38    </div>       
    3339</asp:Content>
Note: See TracChangeset for help on using the changeset viewer.