Village module delete issue resolved and also message shown on alert

This commit is contained in:
Swapnil9693
2026-03-24 11:43:16 +05:30
parent d092eb0527
commit 6b4beb5af8
4 changed files with 2 additions and 727 deletions

View File

@@ -1,201 +1,4 @@
// window.onload = function () {
// document.getElementById('Village_Name').focus();
// };
// $(document).ready(function () {
// // STATE → DISTRICT
// $('#state_Id').change(function () {
// var stateId = $(this).val();
// if (stateId) {
// $.ajax({
// url: '/get_districts/' + stateId,
// type: 'GET',
// success: function (data) {
// var districtDropdown = $('#district_Id');
// districtDropdown.empty();
// districtDropdown.append('<option value="" disabled selected>Select District</option>');
// data.forEach(function (district) {
// districtDropdown.append(
// '<option value="' + district.id + '">' + district.name + '</option>'
// );
// });
// districtDropdown.prop('disabled', false);
// }
// });
// }
// });
// // DISTRICT → BLOCK
// $('#district_Id').change(function () {
// var districtId = $(this).val();
// if (districtId) {
// $.ajax({
// url: '/get_blocks/' + districtId,
// type: 'GET',
// success: function (data) {
// var blockDropdown = $('#block_Id');
// blockDropdown.empty();
// blockDropdown.append('<option value="" disabled selected>Select Block</option>');
// data.forEach(function (block) {
// blockDropdown.append(
// '<option value="' + block.id + '">' + block.name + '</option>'
// );
// });
// blockDropdown.prop('disabled', false);
// }
// });
// }
// });
// // VILLAGE NAME VALIDATION
// $('#Village_Name').on('input', function () {
// var villageName = $(this).val();
// var validPattern = /^[A-Za-z ]*$/;
// if (!validPattern.test(villageName)) {
// $('#villageMessage')
// .text('Only letters and spaces are allowed!')
// .css('color', 'red');
// $('#submitVillage').prop('disabled', true);
// } else {
// $('#villageMessage').text('');
// $('#submitVillage').prop('disabled', false);
// }
// });
// // CHECK DUPLICATE VILLAGE
// $('#Village_Name, #block_Id').on('change keyup', function () {
// var blockId = $('#block_Id').val();
// var villageName = $('#Village_Name').val().trim();
// if (blockId && villageName) {
// $.ajax({
// url: '/check_village',
// type: 'POST',
// data: {
// block_Id: blockId,
// Village_Name: villageName
// },
// success: function (response) {
// if (response.status === 'exists') {
// $('#villageMessage')
// .text(response.message)
// .css('color', 'red');
// $('#submitVillage').prop('disabled', true);
// } else {
// $('#villageMessage')
// .text(response.message)
// .css('color', 'green');
// $('#submitVillage').prop('disabled', false);
// }
// },
// error: function () {
// $('#villageMessage')
// .text('Error checking village name')
// .css('color', 'red');
// $('#submitVillage').prop('disabled', true);
// }
// });
// }
// });
// // ADD VILLAGE
// $('#villageForm').submit(function (event) {
// event.preventDefault();
// $.ajax({
// url: '/add_village',
// type: 'POST',
// data: $(this).serialize(),
// success: function (response) {
// if (response.status === 'success') {
// alert('Village added successfully!');
// location.reload();
// } else {
// alert('Error adding village. Please try again.');
// }
// },
// error: function () {
// alert('An error occurred. Please try again.');
// }
// });
// });
// });
window.onload = function () {
document.getElementById('Village_Name').focus();