Solved! Go to Solution.
The reason I'm want to experiment with JQuery is from my understanding when using querytask you ended fetching
you results in a datatable or dgrid and because I have to deal with wcag 2.0 (accessibility standard). datagrid or dgrid are not compliant with wcag 2.0.
If I use querytask can I fetch the query result is table generated with JQuery?
$.ajax({
url: "http://sampleserver6.arcgisonline.com/arcgis/rest/services/Census/MapServer/3/query",
data: { f: "json", where: "1=1", returnGeometry: false },
dataType: "jsonp",
jsonpCallback: "callback",
success: function(response) {
console.log("got response: ", response);
}
});
The reason I'm want to experiment with JQuery is from my understanding when using querytask you ended fetching
you results in a datatable or dgrid and because I have to deal with wcag 2.0 (accessibility standard). datagrid or dgrid are not compliant with wcag 2.0.
If I use querytask can I fetch the query result is table generated with JQuery?