Changes between Version 5 and Version 6 of FieldOfTablePlugin


Ignore:
Timestamp:
Jun 18, 2015, 12:56:49 PM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • FieldOfTablePlugin

    v5 v6  
    11[[PageOutline(2-5,Contents,pullout)]]
    22
    3 = Field of Table Plugin for trac
     3= Field of Table Plugin for Trac
    44
    55== Description
    66
    7 A simple textarea type field with a table, but it forces user to edit it just like a table.
     7This plugin implements a textarea type field with a table, that enables the user to edit it just like a table:
     8
     9'''Input fields:'''
    810
    911[[Image(5.PNG)]]
     12
     13'''Displayed output:'''
     14
    1015[[Image(6.PNG)]]
    1116
     
    1621
    1722If you have any issues, create a
    18 [http://trac-hacks.org/newticket?component=FieldOfTablePlugin&owner=cauly new ticket].
     23[/newticket?component=FieldOfTablePlugin new ticket].
     24
     25[[TicketQuery(component=FieldOfTablePlugin&group=type,format=progress)]]
    1926
    2027== Download
     
    2835== Installation
    2936
    30 1. Install it like any other plugins.
    31 2. in trac.ini, create a custom field like:
    32 {{{
     371. Install it like any other plugin.
     382. In your `trac.ini` file create a custom field like:
     39{{{#!ini
    3340[components]
    3441fieldoftable.* = enabled
    3542
    3643[ticket-custom]
    37 table_field = textarea                                                     # This line matters!
     44table_field = textarea                           # This line matters!
    3845table_field.cols = 68
    39 table_field.format = wiki                                                # This line matters!
     46table_field.format = wiki                        # This line matters!
    4047table_field.label = Test field
    4148table_field.rows = 10
    42 table_field.table = true                                                   # This line matters!
    43 table_field.value = ||=col1=||=col2||=col3=||             # This is the table header and is NOT OPTIONAL!
     49table_field.table = true                         # This line matters!
     50table_field.value = ||=col1=||=col2||=col3=||    # This is the table header and is NOT OPTIONAL!
    4451}}}
    4552