Skip to content

Commit

Permalink
Merge pull request #226 from jaydevingawale/AttendeeFieldName
Browse files Browse the repository at this point in the history
Task #225 chore:Showing field name on fields list view
  • Loading branch information
ankush-maherwal authored Dec 16, 2019
2 parents 554509f + d22e7c9 commit 9fbe069
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion admin_language/en-GB/en-GB.com_tjfields.ini
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ COM_TJFIELDS_TITLE_FIELDS="Fields"
COM_TJFIELDS_TITLE_FIELD_GROUP="Field Group"
COM_TJFIELDS_FIELDS_ID="ID"
COM_TJFIELDS_FIELDS_LABEL="Label"
COM_TJFIELDS_FIELDS_NAME="0"
COM_TJFIELDS_FIELDS_NAME="Field Name"
COM_TJFIELDS_FIELDS_FIELD_TYPE="Field Type"
COM_TJFIELDS_FIELDS_FIELD_TYPE_FILTER="- Select field_type -"
COM_TJFIELDS_FIELDS_STATE="Publish"
Expand Down
6 changes: 6 additions & 0 deletions administrator/views/fields/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,9 @@
<?php echo JHtml::_('grid.sort', 'COM_TJFIELDS_FIELDS_LABEL', 'a.label', $listDirn, $listOrder); ?>
</th>
<th class='left'>
<?php echo JHtml::_('grid.sort', 'COM_TJFIELDS_FIELDS_NAME', 'a.name', $listDirn, $listOrder); ?>
</th>
<th class='left'>
<?php echo JHtml::_('grid.sort', 'COM_TJFIELDS_FIELDS_FIELD_TYPE', 'a.type', $listDirn, $listOrder); ?>
</th>

Expand Down Expand Up @@ -213,6 +216,9 @@
<?php echo $this->escape($item->label); ?>
<?php endif; ?>
</td>
<td>
<?php echo $this->escape($item->name); ?>
</td>
<td>
<?php echo $item->type; ?>
</td>
Expand Down

0 comments on commit 9fbe069

Please sign in to comment.