I have a slider like this: link
In my case it is displaying the following error in the console when I click the drag / drop button:
TypeError: $.event.props is undefined[Learn More] jquery.ui.widget.js:20:361
_trigger http://localhost/201...
I have created an Ajax request to populate a select field when the user clicks on a certain specialty to appear only the trained professionals for it. However, when clicking on another specialty the name of other professionals prevail there. I...
I have two elements that need to be updated a DIV and another INPUT
One has to be updated value and another the html, example
...
$.each(json, function (index, value) {
if (typeof $("#" + index).val() !== "undefined") {...
I'm having the following problem sirs.
I have the following function
function sortTable() {
arr = JSON.parse(localStorage.context_data);
$('#tableLemos th').click(function () {
console.log("funcao carregada...")
var id =...
I'm trying to use JavaScript to dynamically calculate my prices multiplied by the quantities and result in the total for each row, but it calculates the grand total and plays in the last field of the Total column. Like the picture below:...
I have a problem loading the select fields in my project.
My forms are all done with Razor and only the select's (combobox) I load by ajax.
Problem: When I start the form the ajax event to load the combos is triggered before I get the d...
I have a table of plans here, and it has 5 columns, for 5 plans obviously.
In each column there is a select to choose the periodicity of each plan.
According to the option selected in this select, it should change the value that is being d...
I have a function that searches the database for an entity list and shows it in select. However, I need this same list to be shown in a checkbox where the user can select more than one option.
Showing this list of results in < input type="checkb...
I have a view model that has a block that opens modal windows for CRUD actions. I have 4 partial viewls: create, delete, details and edit ... All in common have the field Description (Description). I need to make sure that whenever the modal win...