Ignore:
Timestamp:
Feb 8, 2011, 11:00:27 PM (13 years ago)
Author:
gav
Message:

Svn merge -r752:r797 branches/features/taskProcedureRework into trunk/.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/views/taskProcedureDetailed/list.gsp

    r467 r798  
    3737                        <thead>
    3838                            <tr>
    39                            
     39
    4040                                <g:sortableColumn property="id" title="Id"  params="${filterParams}" />
    41                            
    42                                 <g:sortableColumn property="name" title="Name"  params="${filterParams}" />
    43                            
    44                                 <g:sortableColumn property="description" title="Description"  params="${filterParams}" />
    45                            
    46                                 <g:sortableColumn property="isActive" title="Is Active"  params="${filterParams}" />
     41                                <th>Description</th>
     42                                <th>Asset</th>
    4743
    4844                                <th></th>
    49                            
     45
    5046                            </tr>
    5147                        </thead>
     
    5349                        <g:each in="${taskProcedureInstanceList}" status="i" var="taskProcedureInstance">
    5450                            <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/taskProcedureDetailed/show/${taskProcedureInstance.id}"'/>
    55                            
     51
    5652                                <td>${fieldValue(bean:taskProcedureInstance, field:'id')}</td>
    57                            
    58                                 <td>${fieldValue(bean:taskProcedureInstance, field:'name')}</td>
    59                            
    60                                 <td>${fieldValue(bean:taskProcedureInstance, field:'description')}</td>
    61                            
    62                                 <td>${fieldValue(bean:taskProcedureInstance, field:'isActive')}</td>
    63                                
     53
     54                                <td>${taskProcedureInstance.description.encodeAsHTML()}</td>
     55
     56                                <td>${taskProcedureInstance.asset?.encodeAsHTML()}</td>
     57
    6458                                <td>
    6559                                    <g:link action="show" id="${taskProcedureInstance.id}">
     
    6761                                    </g:link>
    6862                                </td>
    69                            
     63
    7064                            </tr>
    7165                        </g:each>
     
    8377                                    action="list"
    8478                                    class="overlayPane"
    85                                     excludeProperties="" />
     79                                    additionalProperties="id"
     80                                    excludeProperties=""
     81                                    associatedProperties="linkedTask.description" />
    8682        </div>
    8783    </body>
Note: See TracChangeset for help on using the changeset viewer.