Use column formatting to customize SharePoint
https://learn.microsoft.com/en-us/sharepoint/dev/declarative-customization/column-formatting
ChatGPT: give me json example: share 365 column formatting bigger, bolder current column text
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "div",
"style": {
"font-size": "18px",
"font-weight": "bold"
},
"txtContent": "@currentField"
}
In this example, we define a div element as the root element (elmType) and apply styling to it using the style property. The font-size property sets the font size to 18 pixels, and the font-weight property sets the font weight to bold.
The txtContent property is used to display the value of the current column field (@currentField) inside the div element.
###
SharePoint column formatting examples
https://www.enjoysharepoint.com/sharepoint-modern-list-column-formatting/
SharePoint Column Formatting with JSON
https://steveknutson.blog/2020/06/13/sharepoint-column-formatting-with-json/
Getting started with SharePoint’s custom column formatting
https://pnp.github.io/blog/post/getting-started-with-sharepoint-s-custom-column-formatting/
Using JSON formatting in SharePoint columns to display fields from a Person data column
https://blogs.ed.ac.uk/annabel-treshansky/2022/03/28/using-json-formatting-in-sharepoint-columns-to-display-fields-from-a-person-data-column/
Az oszlopformázás ismertetése
https://support.office.com/hu-HU/client/results?Shownav=true&lcid=1038&ns=SPOStandard&version=16&omkt=hu-HU&ver=16&HelpID=WSSEndUser_ColumnFormatting
Use column formatting to customize SharePoint
https://learn.microsoft.com/hu-hu/sharepoint/dev/declarative-customization/column-formatting
Convert a single line of text column to hyperlink using SharePoint and Microsoft Lists column formatting
https://lists.handsontek.net/convert-single-line-text-column-hyperlink-using-sharepoint-microsoft-lists-column-formatting/