Topic: How can I call OnKeyPress from javascript script while editing the column of the table HolidayHrs Here is the code
How can I call OnKeyPress from javascript script while editing the column of the table HolidayHrs
Here is the code
.hidden {
display: none !important;
}
@Model.attendanceLogList[i].HolidayHrs |
I have tried with the following script but not working
@Model.attendanceLogList[i].HolidayHrs
Author: FRAUSKY
PARTH
A hidden input (type="hidden") is an HTML element that browser does not display and cannot be modified by the user.
I think you want a input type="text" which allows user entry.
You can hide the input using the "display: none" style or .show() and .hide() jQuery functions.