I have the following code:
我有以下代码:
jQuery(document).ready(function ($) {
// ...
Sys.Application.add_load(function () {
$(".RadGrid td > .RadInput.RadInput_Default > .riTextBox.riEnabled").each(function () {
$(this).val($(this).val().replace(/,/g, ""));
});
$(".RadGrid td > .RadInput.RadInput_Default > .riTextBox.riEnabled").blur(function () {
$(this).val($(this).val().replace(/,/g, ""));
});
});
}
jQuery(d