I would like to update the following code to On Style event listener: dojo.connect(queryTask, "onComplete", function (fset) {
From what I've read it might be something like this:queryTask.on("complete", function (fset) {
or
queryTask.on("execute-complete", function (fset) {
They don't work. I was able to get the buffer complete working:gsvc.on("buffer-complete", function (result) {
Thanks for your help.