I am trying to call a function calculfac() from the column of a table for each changes using onkeyup event . The column is numeric column and if we type any value there , the all digits from that column should be stored in variable. But when I type the value in NetHrs column , the function is not called Here is the code
JavaScript
x
15
15
1
<tbody>
2
<tr>
3
<td>@Html.EditorFor(model => model.FromDate, new { htmlAttributes = new { @class = "form-control datepicker w-100" } })</td>
4
<td>@Html.EditorFor(model => model.ToDate, new { htmlAttributes = new { @class = "form-control datepicker w-100" } })</td>
5
<td>@Html.EditorFor(model => model.NetHrs, new { onkeyup = "calculfac()", htmlAttributes = new { type = "number", @class = "form-control w-100 empHrs" } })</td>
6
<td>@Html.EditorFor(model => model.HolidayEnt, new { htmlAttributes = new { @class = "form-control w-100", @readonly = "readonly" } })</td>
7
<td><a href="" title="Delete Rows">Delete</a></td>
8
</tr>
9
</tbody>
10
11
<script>
12
function calculfac() {
13
var nethrs = // Here the value from that column should be stored including typed value
14
}
15
</script>
Advertisement
Answer
trying to call a function calculfac() from the column of a table for each changes using onkeyup event . The column is numeric column and if we type any value there , the all digits from that column should be stored in variable.
To achieve your requirement, you can refer to the following code sample.
JavaScript
1
2
1
<td>@Html.EditorFor(model => model.NetHrs, new { htmlAttributes = new { type = "number", @class = "form-control w-100 empHrs", @onkeyup = "calculfac(this)" } })</td>
2
Or trigger that function via onchange
event
JavaScript
1
2
1
<td>@Html.EditorFor(model => model.NetHrs, new { htmlAttributes = new { type = "number", @class = "form-control w-100 empHrs", @onchange = "calculfac(this)" } })</td>
2
JS code
JavaScript
1
9
1
function calculfac(el) {
2
var nethrs = $(el).val();
3
console.log("new value is ", nethrs);
4
5
//...
6
//your code logic here
7
//...
8
}
9