You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

165 lines
7.7 KiB

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="IndividualRiskAssessment.aspx.cs" Inherits="Swift.web.RiskBasedAssessment.IndividualRiskAssessment" %>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head runat="server">
  4. <title></title>
  5. <link href="../../ui/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
  6. <link href="../../ui/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
  7. <link href="../../ui/css/style.css" rel="stylesheet" />
  8. <style type="text/css">
  9. .auto-style1 {
  10. height: 23px;
  11. }
  12. .auto-style2 {
  13. height: 23px;
  14. width: 98px;
  15. }
  16. .auto-style3 {
  17. width: 98px;
  18. }
  19. .auto-style9 {
  20. position: relative;
  21. min-height: 1px;
  22. float: left;
  23. width: 100%;
  24. left: 0px;
  25. top: 0px;
  26. padding-left: 15px;
  27. padding-right: 15px;
  28. }
  29. .auto-style10 {
  30. height: 23px;
  31. width: 137px;
  32. }
  33. .auto-style11 {
  34. width: 137px;
  35. }
  36. .auto-style12 {
  37. border-top-left-radius: 3px;
  38. border-top-right-radius: 3px;
  39. position: relative;
  40. left: 0px;
  41. top: 0px;
  42. border-bottom: 1px solid transparent;
  43. padding: 10px 15px;
  44. }
  45. </style>
  46. </head>
  47. <body>
  48. <form id="form2" runat="server">
  49. <div class="page-wrapper">
  50. <div class="row">
  51. <div class="col-sm-12">
  52. <div class="page-title">
  53. <ol class="breadcrumb">
  54. <li><a href="List.aspx" target="mainFrame"><i class="fa fa-home"></i></a></li>
  55. <li class="active"><a href="List.aspx">Risk Based Assessment</a></li>
  56. </ol>
  57. </div>
  58. </div>
  59. </div>
  60. <div class="rba-tab">
  61. <div class="listtabs">
  62. <ul class="nav nav-tabs" role="tablist">
  63. <li>
  64. <a href="List.aspx" aria-controls="home" role="tab" data-toggle="tab">Risk Based Assessment List </a></li>
  65. <li role="presentation" class="active"><a href="IndividualRiskAssessment.aspx">New Individual Txn Assessment</a></li>
  66. <li><a href="PeriodicRiskAssessment.aspx">New Periodic Txn Assessment</a></li>
  67. </ul>
  68. </div>
  69. <div class="tab-content">
  70. <div role="tabpanel" class="tab-pane active" id="list">
  71. <div class="auto-style9">
  72. <div class="panel panel-default ">
  73. <div class="panel-heading">
  74. <h4 class="panel-title">Individual Txn Assessment</h4>
  75. <div class="panel-actions">
  76. <a href="#" class="panel-action panel-action-toggle"></a>
  77. </div>
  78. </div>
  79. <div class="panel-body">
  80. <table class="table table-responsive table-striped table-bordered">
  81. <thead>
  82. <tr>
  83. <th class="auto-style1">
  84. <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse; width: 113pt" width="150">
  85. <colgroup>
  86. <col style="mso-width-source: userset; mso-width-alt: 5485; width: 113pt" width="150" />
  87. </colgroup>
  88. <tr height="20" style="height: 15.0pt">
  89. <td class="xl65" height="20" width="150">Criteria</td>
  90. </tr>
  91. </table>
  92. </th>
  93. <th class="auto-style10">
  94. <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse; width: 58pt" width="77">
  95. <colgroup>
  96. <col style="mso-width-source: userset; mso-width-alt: 2816; width: 58pt" width="77" />
  97. </colgroup>
  98. <tr height="20" style="height: 15.0pt">
  99. <td class="xl65" height="20" width="77">Condition</td>
  100. </tr>
  101. </table>
  102. </th>
  103. <th class="auto-style1">Criteria</th>
  104. <th class="auto-style2">Value</th>
  105. <th class="auto-style1"><strong>Weight</strong></th>
  106. <th class="auto-style1"><strong></strong></th>
  107. </tr>
  108. </thead>
  109. <tbody id="Tbody1" runat="server">
  110. <tr class="auto-style3">
  111. <td>
  112. <asp:DropDownList runat="server" ID="Criteria" CssClass="form-control" AutoPostBack="true" OnSelectedIndexChanged="Criteria_SelectedIndexChanged">
  113. </asp:DropDownList>
  114. </td>
  115. <td class="auto-style11">
  116. <asp:DropDownList runat="server" ID="Condition" CssClass="form-control">
  117. </asp:DropDownList>
  118. </td>
  119. <td>
  120. <asp:DropDownList runat="server" ID="CriteriaCountry" CssClass="form-control">
  121. </asp:DropDownList>
  122. <asp:TextBox runat="server" ID="CriteriaDetail"></asp:TextBox></td>
  123. <td class="auto-style3">
  124. <asp:TextBox runat="server" ID="Result"></asp:TextBox></td>
  125. <td>
  126. <asp:TextBox runat="server" ID="Weight"></asp:TextBox></td>
  127. <td>
  128. <asp:Button runat="server" ID="btnSave" OnClick="btnSave_Click" class="btn btn-primary m-t-25" Text="Save" /></td>
  129. </tr>
  130. </tbody>
  131. </table>
  132. </div>
  133. </div>
  134. </div>
  135. </div>
  136. </div>
  137. </div>
  138. </div>
  139. </form>
  140. </body>
  141. </html>