Hi Team
I am debugging a message to the console to check if i am receiving a response from the client side. When clicking the button, i want to click the button then it opens modal form. Any ideas how can i fix this issue?
@using Models; @code { Operation newOperation = new Operation(); List<Operation> operations = new List<Operation>(); List<Device> devices = new List<Device>(); bool showValidationErrors = false; bool showAddOperationModal = false; protected override void OnInitialized() { devices = new List<Device> { new Device {DeviceID = 1, Name = "Barcode Scanner"}, new Device {DeviceID = 2, Name = "Printer"}, new Device {DeviceID = 3, Name = "Camera"}, new Device {DeviceID = 4, Name= "SocketTray"} }; } void AddOperation() { showValidationErrors = false; // validate fields if(string.IsNullOrWhiteSpace(newOperation.Name)) { showValidationErrors = true; return; } if(newOperation.OrderInWhichToPerform < 0 || newOperation.OrderInWhichToPerform > 10) { showValidationErrors = true; return; } if(newOperation.ImageData == null || newOperation.ImageData.Length == 0) { showValidationErrors = true; return; } if (newOperation.Device == null || newOperation.Device.DeviceID <= 0) { showValidationErrors = true; return; } // only proceed when fields are valid. int newOperationId = operations.Count + 1; newOperation.OperationID = newOperationId; operations.Add(newOperation); newOperation = new Operation(); } // method invokes for device selection. void OnDeviceSelected(ChangeEventArgs e) { int deviceId = Convert.ToInt32(e.Value); newOperation.Device = devices.FirstOrDefault(d => d.DeviceID == deviceId); } void ShowAddOperationModal() { showAddOperationModal = true; Console.WriteLine("Modal opened"); } } <button class="btn btn-primary" @onclick="ShowAddOperationModal">Add New Operation</button> @if(showAddOperationModal) { <!--Bootstrap for adding new operation--> <div class="modal" tabindex="-1" role="dialog"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title">Add New Operation</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <!--form fields for new operation--> <div class="modal-body"> <div class="form-group"> <label for="operationName">Operation Name</label> <input type="text" class="form-control" id="operationName" @bind="newOperation.Name" /> @if (showValidationErrors && string.IsNullOrWhiteSpace(newOperation.Name)) { <p class="text-danger">Operation is required</p> } </div> <!--Order number is required--> <div class="form-group"> <label for="order">Order In Which to Perform</label> <input type="number" class="form-group" id="order" @bind="newOperation.OrderInWhichToPerform" /> @if (showValidationErrors && (newOperation.OrderInWhichToPerform <= 0 || newOperation.OrderInWhichToPerform > 10)) { <p class="text-danger">Order must be between 1 and 10</p> } </div> <!--Image data is required--> <div class="form-group"> <label for="imageUpload">Image Data</label> <input type="file" class="form-control-file" id="imageUpload" /> @if (showValidationErrors && (newOperation.ImageData == null || newOperation.ImageData.Length == 0)) { <p class="text-danger">Image data is required</p> } </div> <!--Device is dropdown--> <div class="form-group"> <label for="deviceSelect">Select Device</label> <select class="form-group" id="deviceSelect" @onchange="OnDeviceSelected"> <option value="">Select device Types</option> @foreach (var device in devices) { <option value="@device">@device.Name</option> } </select> @if (showValidationErrors && (newOperation.Device == null || newOperation.Device.DeviceID <= 0)) { <p class="text-danger">Please select a device</p> } </div> </div> </div> </div> </div> }