I am trying to get a ListGrid to dynamically group using data from a RestDataSource. When I do a fetchData call, the program hangs on searching for data. It will properly fill in the list grid with data but will then hang with the window open that says "Finding records that match your criteria"
Here is the log from the Developer's Console:
Here is the log from the Developer's Console:
Code:
12:03:22.203:INFO:Log:initialized
12:03:22.609:INFO:Log:isc.Page is loaded
12:03:23.609:WARN:VLayout:isc_OID_0:ignoring bad or negative height: auto [enable 'sizing' log for stack trace]
12:04:05.687:MUP6:INFO:ResultSet:isc_ResultSet_9:setCriteria: filter criteria changed, invalidating cache
12:04:05.687:MUP6:INFO:ResultSet:isc_ResultSet_9:Invalidating cache
12:04:05.703:MUP6:DEBUG:ResultSet:isc_ResultSet_9:getRange(0,999), cache check: 462,536 firstMissingRow: 462 lastMissingRow: 536
12:04:05.703:MUP6:DEBUG:ResultSet:isc_ResultSet_9:getRange: no scrolling direction detected
12:04:05.703:MUP6:INFO:ResultSet:isc_ResultSet_9:getRange(0, 999) will fetch from 0 to 999
12:04:05.703:MUP6:DEBUG:ResultSet:isc_ResultSet_9:getRange(0,1), cache check: 0,37 firstMissingRow: 0 lastMissingRow: 37
12:04:05.703:MUP6:DEBUG:ResultSet:isc_ResultSet_9:getRange: guessing forward scrolling
12:04:05.703:MUP6:INFO:ResultSet:isc_ResultSet_9:getRange(0, 1) will fetch from 0 to 75
12:04:05.718:MUP6:INFO:ResultSet:isc_ResultSet_9:fetching rows 0,75 from server
12:04:05.718:MUP6:DEBUG:RPCManager:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
12:04:05.718:MUP6:DEBUG:RPCManager:Grabbed prompt from first request that defined one: Finding records that match your criteria...
12:04:05.906:MUP6:INFO:RPCManager:sendQueue[0]: 1 RPCRequest(s); transport: xmlHttpRequest; target: searchresults.php
12:04:05.906:MUP6:DEBUG:RPCManager:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
12:04:05.906:MUP6:DEBUG:RPCManager:XMLHttpRequest GET from searchresults.php with fields: {ingredient: "chicken breast",
_operationType: "fetch",
_startRow: 0,
_endRow: 75,
_dataSource: "isc_OID_1"} full URL string: searchresults.php?ingredient=chicken%20breast&_operationType=fetch&_startRow=0&_endRow=75&_dataSource=isc_OID_1
12:04:06.078:MUP6[E]:DEBUG:ResultSet:isc_ResultSet_9:getRange(0,1000), cache check: 500,574 firstMissingRow: 500 lastMissingRow: 574
12:04:06.078:MUP6[E]:DEBUG:ResultSet:isc_ResultSet_9:getRange: no scrolling direction detected
12:04:06.093:MUP6[E]:INFO:ResultSet:isc_ResultSet_9:getRange(0, 1000) will fetch from 0 to 1000
12:04:06.125:XRP0:INFO:RPCManager:transaction 0 arrived after 219ms
Comment