Hi!
So I was trying to get the next thing to work with my table
| Value 1 | Value 2 | Value 3 |
Based in my value 2, I want to filter my Value 3, but I’m not able to obtain value 2 to send through AJAX, right now I tried:
{
data: “model”,
type: ‘autocomplete’,
source: function (query, process) {
$.ajax({
url: ‘partNumber.php’,
dataType: ‘json’,
data: {
query: query,
die: hot.getDataAtCell(0,2)
},
success: function (response) {
process(response);
console.log(dado);
}
})
}
I tried to get the “die” value with getDataAtCell but no luck so far, so, Is it posibble to do this with hot? And if is posible, can the value be changed depending on the row where I’m typing?