|
Lines 313-319
Link Here
|
| 313 |
$(edit_row).find("input").each(function(){ |
313 |
$(edit_row).find("input").each(function(){ |
| 314 |
var type = $(this).attr("type"); |
314 |
var type = $(this).attr("type"); |
| 315 |
if (type != "button" && type != "submit" ) { |
315 |
if (type != "button" && type != "submit" ) { |
| 316 |
$(this).val(""); |
316 |
$(this).val("0.00"); |
| 317 |
$(this).prop('disabled', false); |
317 |
$(this).prop('disabled', false); |
| 318 |
} |
318 |
} |
| 319 |
}); |
319 |
}); |
| 320 |
- |
|
|