123456789101112131415161718192021 |
- $(function () {
- $("#Score").keydown(function (ev) {
- setTimeout(function () {
- $("#dgStudentScoreList").find('td[columnIndex=2] input').val($("#Score").val());
- }, 300);
- });
- });
- function onGridLoadSuccess(data) {
- if (data && data.rows.length > 0) {
- $("#dgStudentScoreList").find('td[columnIndex=2] input').keydown(function (ev) {
- setTimeout(function () {
- $("#Score").val('');
- }, 300);
- });
- }
- }
- function SOCDetailGroupScore_Save() {
- $(document.forms[0]).submit();
- }
|