- Timestamp:
- 05/27/11 13:12:25 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/ProblemClass/Index.aspx
r6290 r6304 16 16 17 17 <% long? id = null; %> 18 <%: Html.ActionLink("New ProblemClass", "Detail", new {id}) %>19 <%: Html.ActionLink(" Order ASC", "SortAsc")%>20 <%: Html.ActionLink("Order DESC", "SortDesc")%>18 <div class="hl-menuButtons"> 19 <%: Html.ActionLink("New ProblemClass", "Detail", new { id }, new { @class = "hl-button-text-plus" })%> 20 </div> 21 21 22 <div style="height:150px; overflow:scroll;"> 23 <table> 22 <table class="hl-dataTable"> 23 <thead> 24 <tr> 25 <th>Name</th> 26 <th>Description</th> 27 <th>Actions</th> 28 </tr> 29 </thead> 30 <tbody> 24 31 <!--// We get this from the Controller (Index)--> 25 32 <% foreach (ProblemClass p in ((ProblemClassModel)Model).ProblemClasses) { %> … … 31 38 <%: Html.Label(p.Description) %> 32 39 </td> 33 <td> 34 <%: Html.ActionLink("detail", "Detail", new { p.Id })%> 40 <td class="hl-iconcell"> 41 <%: Html.ActionLink("detail", "Detail", new { p.Id }, new { @class = "hl-icon-edit" })%> 42 <%: Html.ActionLink("delete", "Delete", new { p.Id }, new { @class = "hl-icon-delete" })%> 35 43 </td> 36 <td> 37 <%: Html.ActionLink("delete", "Delete",new {p.Id}) %> 38 </td> 44 39 45 </tr> 40 46 <% } %> 47 </tbody> 41 48 </table> 42 </div>49 43 50 </asp:Content>
Note: See TracChangeset
for help on using the changeset viewer.