How to Change Position of Column Label?

Discussions related to customizing hooks. Hooks are documented at http://bigprof.com/appgini/help/advanced-topics/hooks/
Post Reply
mohamed
Veteran Member
Posts: 80
Joined: 2020-04-19 16:18

How to Change Position of Column Label?

Post by mohamed » 2020-10-23 05:34

Hello,

I am wondering How to change the position of the Column Label from default Left to Center and Right.

I have noticed this code of one of the columns as an example with the Label "DOOR", by default its always on the Left side of the Cell.


1. How to change the position to Center and Right of the cell ?

and

2. Do I need jut do the change in one file Projects_templateDV.html in my case ?


---
I have Here is the code of the column on the right, in Projects_templateDV.html
-----

<div class="form-group">
<hr class="hidden-md hidden-lg">
<label for="Door_Name" class="control-label col-lg-3" data-parent_link="view_parent_modal">DOOR</label>
<div class="col-lg-9">
<div class="form-control-static" style="white-space: nowrap; overflow-x: hidden;"><%%COMBO(Door_Name)%%><%%PLINK(Door_Name)%%><%%ADDNEW(Door)%%></div>
</div>
</div>
THANK YOU...
AppGini Pro 24.11 -
Calendar - Search Page Maker - Summary Reports - Mass Update - DataTalk -
bizzworxx AppGini Helper JabaScript Library - bizzworxx Inline Detail-View - bizzworxx Helper Pack - AppGini Helper Packaging Tool -
Udemy course

pbottcher
AppGini Super Hero
AppGini Super Hero
Posts: 1638
Joined: 2018-04-01 10:12

Re: How to Change Position of Column Label?

Post by pbottcher » 2020-10-23 20:57

Hi,

you can do that via the hooks/TABLENAME-tv-js file.

Add:

Code: Select all

$j(function() {
$j('th').css('text-align','center');
})
Any help offered comes with the best of intentions. Use it at your own risk. In any case, please make a backup of your existing environment before applying any changes.

mohamed
Veteran Member
Posts: 80
Joined: 2020-04-19 16:18

Re: How to Change Position of Column Label?

Post by mohamed » 2020-10-24 07:47

Hi pböttcher

its just perfect .. THANK YOU VERY MUCH :)
THANK YOU...
AppGini Pro 24.11 -
Calendar - Search Page Maker - Summary Reports - Mass Update - DataTalk -
bizzworxx AppGini Helper JabaScript Library - bizzworxx Inline Detail-View - bizzworxx Helper Pack - AppGini Helper Packaging Tool -
Udemy course

Post Reply