Maybe you're hitting the chrome bug fixed back in November<https://informatics.gpcnetwork.org/trac/Project/ticket/87#comment:69>?
patch attached. Hm... no, that has different symptoms (the "build data" button is inert). We use the data builder on i2b2 1.7.05, but we've made countless revisions to it over time. If you installed from the zip file<https://informatics.gpcnetwork.org/trac/Project/attachment/wiki/BuilderSaga/heron_extract.zip>, it has a .hg_archival.txt file that contains the revision hash. What do you see in that file? -- Dan ________________________________ From: [email protected] [[email protected]] on behalf of Phillip Reeder [[email protected]] Sent: Friday, August 07, 2015 10:12 AM To: [email protected] Subject: DataBuilder Does the data builder plugin work with the 1.7.05 i2b2 web client? I migrated the plugin over and it shows up, but it’s not allowing me to drag anything into the plugin(concepts, patient sets, etc.). Just wanted to check if anyone else has had success before I start attempting to troubleshoot my install. Phillip ________________________________ UT Southwestern Medical Center The future of medicine, today.
# HG changeset patch # User Dan Connolly <[email protected]> # Date 1415296100 21600 # Thu Nov 06 11:48:20 2014 -0600 # Node ID ec3328396f9f73f975714a8c25af01c20158439c # Parent 8d15e75e519196b5c8a981671a7f7b1ea487ba3f oops... backend was implicitly global (#2971) Chrome seems to enforce inconsistency between 'use strict' and implicit globals. diff -r 8d15e75e5191 -r ec3328396f9f DFBuilder/tool_widgets.js --- a/DFBuilder/tool_widgets.js Thu Oct 23 14:28:47 2014 -0500 +++ b/DFBuilder/tool_widgets.js Thu Nov 06 11:48:20 2014 -0600 @@ -172,7 +172,8 @@ this.startFishing(); - backend = pop(params, 'backend') == 'builder' ? this.builder : this.rgate; + var backend = pop(params, 'backend') == 'builder' ? + this.builder : this.rgate; backend.post(params, show_results, show_error); };
_______________________________________________ Gpc-dev mailing list [email protected] http://listserv.kumc.edu/mailman/listinfo/gpc-dev
