Changes between Version 7 and Version 8 of GridModifyPlugin


Ignore:
Timestamp:
Sep 29, 2009, 5:14:56 AM (15 years ago)
Author:
Abbywinters.com WebDev
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GridModifyPlugin

    v7 v8  
    33== Description ==
    44
    5 For any ticket field of type `select` (e.g. type, priority, component, milestone, etc.) this plugin modifies the `query` and `report` views of tickets to include a select (dropdown) widget for editing those values.
     5For any ticket field this plugin modifies the `query` and `report` views of tickets to include a widget for editing those values. This works for all field types except for textareas.
    66
    7 Changes to any of the select widgets will immediately fire off an AJAX request to update the ticket so there is no need to press any save or submit button.
     7Changes to any of the widgets will immediately fire off an AJAX request to update the ticket so there is no need to press any save or submit button. A small icon will show the progress of each ajax request (in progress, succeeded, failed) once it is fired off.
    88
    99The status of the updates is logged to [http://getfirebug.com/ Firebug's] console if you have that installed.
     
    1414
    1515Note that the feature is only enabled for users who have been granted the `TICKET_GRID_MODIFY` or `TICKET_ADMIN` [TracPermissions permission].
     16
     17You can limit the fields to which gridmodify applies by specifying them in trac.ini.
     18
     19{{{
     20[components]
     21gridmod.* = enabled
     22
     23[gridmodify]
     24fields=status,priority,milestone,scope,blockedby,estimatedhours
     25}}}
    1626
    1727== Bugs/Feature Requests ==