You are viewing limited content. For full access, please sign in.

Question

Question

New 'Layout' Designer v11 - rotated labels for mobile?

asked two days ago Show version history

So I had to do this a different way than what i posted on this thread since LFForm object can't modify css. I needed to keep my labels and then update them with javaScript (changeFieldSettings). That works great. I have a lookup table populate with values and then pass those values to the 45 degree angle labels on the table. 

New challenge: The only way I could get the labels to line up was by using css "position: absolute;", that basically ruins it for any mobile usage. My current plan is to just tell users to switch their mobile browser to 'desktop mode', but has anyone else figured this out?
 

here is my current CSS & javaScript in case anyone can take the ball & run with it.

/* Rotates and repositions header cells in columns 4 & 5 of table #q353.
   WARNING: Absolute positioning assumes fixed column widths.
   Adjust `left` values if table layout changes. */

.workMonthHours .fl-table.fl-component th {
	border: none !important;
}
/* Keep overflow open so rotated text can spill out */
#q353,
#q353 .fl-table.fl-component,
#q353 thead,
#q353 thead tr {
  overflow: visible !important;
}

/* Keep <thead> or <tr> relative to anchor absolute children */
#q353 thead {
  position: relative !important;
}
/* COLUMN 4: relatively positioned for gentle shifting */
#q353 thead th.table-header-cell:nth-child(4) {
  position: absolute !important;
  width: 242px !important;
  transform: rotate(315deg);
  transform-origin: bottom left;

  white-space: normal !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;

  padding-left: 30px;
  bottom: -19px;
  left: 293px;

  line-height: 1;
  vertical-align: bottom;
  text-align: left;
  z-index: 10;
}

/* COLUMN 5: absolutely positioned for overlap/freedom */
#q353 thead th.table-header-cell:nth-child(5) {
  position: absolute !important;
  width: 242px !important;
  transform: rotate(315deg);
  transform-origin: bottom left;

  white-space: normal !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;

  padding-left: 30px;
  bottom: -19px;
  left: 376px;

  line-height: 1;
  vertical-align: bottom;
  text-align: left;
  z-index: 10;
}
/*=====================rotate Labels=====*/
LFForm.onLookupDone(async function () {
  await new Promise(resolve => setTimeout(resolve, 100));

  const jcDescrValues = LFForm.getFieldValues({ fieldId: 426 });

  const label1 = jcDescrValues[0]?.trim() || 'Job Code 1';
  const label2 = jcDescrValues[1]?.trim() || 'Job Code 2';

  const hours1Exists = LFForm.getFieldValues({ fieldId: 363 }).length > 0;
  const hours2Exists = LFForm.getFieldValues({ fieldId: 364 }).length > 0;

  if (hours1Exists) {
    LFForm.changeFieldSettings({ fieldId: 363 }, { label: label1 });
  } else {
    console.warn('Field hours_1 (ID 363) not found — is the row missing?');
  }

  if (hours2Exists) {
    LFForm.changeFieldSettings({ fieldId: 364 }, { label: label2 });
  } else {
    console.warn('Field hours_2 (ID 364) not found — is the row missing?');
  }
}, { lookupRuleId: 16 });
0 0

Replies

replied two days ago

I tweaked your CSS a bit, and removed the need for position absolute. My table column names weren't too long so I don't know how well this would work for you. You can parameterize the mixins to change the width as it won't break words like you may need.

 

/* Rotates and repositions header cells in columns 4 & 5 of table #q353.
   WARNING: Absolute positioning assumes fixed column widths.
   Adjust `left` values if table layout changes. */

.fl-table.fl-component th {
	border: none !important;
}
/* Keep overflow open so rotated text can spill out */
table,
table .fl-table.fl-component,
table thead,
table thead tr {
  overflow: visible !important;
}

/* Keep <thead> or <tr> relative to anchor absolute children */
thead {
  position: relative !important;
}

.rotate-col-container {
  display: flex !immportant;
  align-items: center;
  justify-content: center;
}
.rotate-col {
  width: fit-content !important;
  transform: rotate(315deg);
  transform-origin: bottom left;

  white-space: normal !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

/* COLUMN 4: relatively positioned for gentle shifting */
table thead th.table-header-cell:nth-child(4) > fl-field-label {
  .rotate-col-container();
  & > div {
   .rotate-col();
  }
}

/* COLUMN 5: absolutely positioned for overlap/freedom */
table thead th.table-header-cell:nth-child(5) fl-field-label {
  .rotate-col-container();
  & > div {
   .rotate-col();
  }
}

It looks like this on desktop, and reformats appropriately when on mobile screen sizes via the default form behavior

2 0
replied one day ago

thanks! this did not rotate out of the gate. I'll mess around with this concept. 

 

0 0
replied one day ago

Hu, I removed your ids from the selectors but otherwise the CSS should be identical. The key pieces were removing the absolute/widths/padding and centering the labels with the flex display 

1 0
You are not allowed to follow up in this post.

Sign in to reply to this post.