On Mon, Aug 24, 2015 at 8:31 AM, Charles C <[email protected]> wrote:
> Ryan, > > Here's the DEBUG log when loading the query page > > Thanks for your help! > The "DEBUG: render_ticket_action_control" lines indicate that the template data for batch modify is being added in the request. You could further confirm that BatchModify is activated by navigating to "/batchmodify": you'll get "AttributeError: 'NoneType' object has no attribute 'split'" if the module is loaded, "No handler matched request" if it is not loaded. No permissions checking is done in the request, so your user must have TRAC_ADMIN. That narrows the issue down to just a few possible issues. Note that the BatchModify controls will not be present unless your query returns some results. Also, JavaScript is required for the BatchModify functionality, but I doubt that is your issue. Based on the findings, I can only imagine this to be a problem with the rendering of the controls in JavaScript, so I think we should focus on that JavaScript error. Have you set [trac] jquery_location or [trac] jquery_ui_location? Generally you shouldn't need to set either of those. http://trac.edgewall.org/wiki/TracIni#trac-section Make sure to do a hard-refresh of your browser (hold SHIFT while refreshing) to force a refresh of the static resources. - Ryan -- You received this message because you are subscribed to the Google Groups "Trac Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/trac-users. For more options, visit https://groups.google.com/d/optout.
