Usage of Required Mark in Sublist

Hi,

I would like to ask what is the usage of Required Mark in Sub List → a Field Control Setting → Style Tab → Title Section → Required Mark? It has no change if I change the color

However, for a textbox outside Sub List, I change the colour and it reflects on the page immediately

Thanks a lot

Best regards,
Andy

Hi Andy,

Currently, required Mark doesn’t show in table view. Instead, you can try custom css to achieve this.

  1. give an CSS ID to the sub list.
    image

  2. add below CSS

#MyList thead tr th:nth-child(2) span:after {
	display: inline-block;
    margin-left: 4px;
    content: "*" !important;
    font-family: 'Poppins', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    line-height: 1;
    font-size: 12px;
    color: #f04134;
}

Regards,
Frank