This topic is locked
[SOLVED]

Only fields in the 1st TAB will display

12/7/2022 7:23:19 AM
PHPRunner General questions
B
Bill Walker authorDevClub member

Good Morning PHPR Experts,
Bill Newbie here. I have a strange problem. I have noticed that none of my TAB objects are working correctly. Only the fields in the first TAB are displayed but the TAB itselft does not display. Nor does any of the other TABS display. I looked and looked throughout my project to try to locate a reason for this but could find none.
So I switched to the Jobs sample project (I have never even opened this before) and it has the same condition.
Please see video for a more detailed discription.

B
Bill Walker authorDevClub member 12/7/2022

Oops, here is the video
img alt

Nope, sorry cannot figure out how to upload a short video file

B
Bill Walker authorDevClub member 12/7/2022

So I will try these uploaded images.

img alt

img alt

B
Bill Walker authorDevClub member 12/7/2022
B
Bill Walker authorDevClub member 12/7/2022

Update: I created a new project and the TAB object works normally but does not work in existing projects.

admin 12/7/2022

I cannot say anything about your project but the Jobs template may have some additional CSS that hides tabs. That would explain this kind of behaviour.

B
Bill Walker authorDevClub member 12/7/2022

You are spot on Sergey,
This CSS was present. I cannot remember why it was used. I have been poking around in many examples trying to learn as I go. But when I removed this my TABS came back.

.panel-heading{
display:none;
}
.panel-body{
padding:0px !important;
}
.panel-primary {
border-color: white !important;
}
.panel {
margin-bottom: 0px !important;
border: 0px !important;
}
.info-box{
display: block;
min-height: 90px;
width: 100%;
border-radius: 2px;
}
.info-img{
display: block;
float: left;
height: 50px;
width: 50px;
text-align: center;
font-size: 30px;
line-height: 45px;
color:white;
}
.img_bgcolor_red{
background-color:#dd4b39 !important;
}
.img_bgcolor_green{
background-color:#90EE90 !important;
}
.dashtext{
border-radius: 2px;

border: 1px solid #e6e6e6;
min-height: 91px;
padding:7px;
padding-left:97px;
line-height: 1.6em;
background-color:#f5f5f5;
}

B
Bill Walker authorDevClub member 12/7/2022