labkey.deleteRows | Jon (LabKey DevOps) | 2016-02-10 15:27 |
Status: Closed | ||
Hi Laura, Interesting. Can you do one more thing with regard to the Javascript API one? If you're using Google Chrome, can you bring up the wiki page you made, then bring up the Developer Console and go to the Network section? After you get there, click that button and you should see an entry called "query-deleteRows.view". If you click it, it should being up a side panel showing Headers and Response tabs. From the bottom of the Headers tab, you should see a Request Payload section that should show your delete request as a JSON response with the Key value you wanted to remove along with the schema and query names. (See screenshot) On the Response tab, if things worked, it should be showing a JSON response like this indicating what got deleted: { "rowsAffected" : 1, "queryName" : "ListTest", "schemaName" : "lists", "containerPath" : "/Support Tickets/Dashboards/JonY", "rows" : [ { "EntityId" : "5de988d5-b275-1033-b8c3-a3afb159e818", "Check" : false, "Key" : 8, "Name" : "Joe" } ], "command" : "delete" } Regards, Jon |
||