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