Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - fred

Pages: [1]
1
Help for ParamQuery Select / refreshData after running Ajax on checkbox
« on: February 26, 2020, 05:12:58 pm »
Hi,

I am running some Ajax when I untick checkboxes of a PQselect element but I am struggling to achieve the full desired effect. I am running the Ajax with the 'onchange' event. If the Ajax query returns TRUE, I need the checkbox tick to remain, if FALSE, I need the checkbox to be unticked.
As I am using the onchange event, the unticking of the checkbox has taken place before I run my ajax. On the completion of the Ajax query, I decide whether the tick should be reapplied or not. This is partly working as I am able to re-tick the checkbox and do a refreshData. Despite the fact the checkbox is ticked and I have ran a 'refreshData', If I try to untick again the same checkbox, the Ajax does not run. It is as if the widget did not know the state on the checkbox.

If I run a refreshData in the broswer console after the completion of the ajax query, the widget behave properly and runs the ajax when I try the re-untick the same checkbox.


Code: [Select]
$('#mydropdown').on('change', function() {

var $sel = $(this),
val = $(this).val(),
$opts = $sel.children(),
prevUnselected = $sel.data('unselected');

// create array of currently unselected
var currUnselected = $opts.not(':selected').map(function() {
return this.value
}).get();


// see if previous data stored
if (prevUnselected) {

var unselected = currUnselected.reduce(function(a, curr) {
if ($.inArray(curr, prevUnselected) == -1) {
a.push(curr)
}
return a
}, []);


// "unselected" is an array if it has length some were removed
if (unselected.length) {

var answer = confirm("Do you really want to remove this item?");
if (answer){

$.each(unselected, function( key, value ) {
item_id = value;

var data = { //Fetch form data
'item_id': item_id,
'item_type': 'preset'
};



//finds out if the job has an allocated value in the scenario editor
$.ajax({
type: 'POST',
async: true,
url: "https://myajaxurl",
data: data,
beforeSend: function() {
},
success: function(data) {

if (!data.success) { //If fails

//reselect the item in the select
toselect = $('#mydropdown').val();
toselect.push(item_id);

$('#mydropdown').val(toselect);
$("#mydropdown").pqSelectCustomJobs( "refreshData" );

alert('This item could not be deleted as it is in use');

} else {

/* do some stuff */

}
},
error: function(xhr) {

},
complete: function() {

},
dataType: 'json'
});


});

} else {

toselect = $('#mydropdown').val();
toselect.push(item_id);

$('#mydropdown').val(toselect);
$("#mydropdown").pqSelectCustomJobs( "refreshData" );

}

}

}

// create array of currently unselected
var currUnselected = $opts.not(':selected').map(function() {
return this.value
}).get();

$sel.data('unselected', currUnselected);

}).change();


Any help, ideas, suggestions appreciated

2
Hi,

I am after some jquery that will trigger programmatically the `onchange`clause of the pqselect

I am loading some Ajax that fill in the select. Based on what is ticked, I need to run further Ajax that select more pqselect selectors. At the moment, I can tick all the options I need but I can not trigger the `onchange` clause .

Any ideas?

3
Help for ParamQuery Select / onclick function?
« on: November 08, 2016, 07:45:54 pm »
Hi,

Is there a function that would allow me to detect when an option is selected and deselected
The plugin examples show the `onchange` function working but it does not detect when a checkbox is unselected.

4
Help for ParamQuery Select / How can I get the selected value
« on: November 07, 2016, 03:15:39 pm »
Hi,

I am using pqselect with checkboxes and I would like to get the value of the item selected. (and not all the values selected that I would get using  .val() )
Does anyone know how to get it?

Pages: [1]