I'm currently using this code to adjust the width of specific columns by referencing the display name:
English version:
.ms-vh-div(DisplayName = "Recent History")
{
width:300px
}
However, I have encountered a problem where column headers with accents (that is, French versions) are not recognized.
French version:
.ms-vh-div(DisplayName = "Histoire récente")
{
width:300px
}
As a result, I would like to use the static name of the column instead of the display name because all my columns were created in English for the first time and do not have any accents. But I can not execute the code.
.ms-vh-div(StaticName = "Recent_x0020_History")
{
width:300px
}
Any ideas on how to improve my code and / or other workarounds for this problem would be greatly appreciated. Thanks in advance!