#css #json #sharepoint
Вопрос:
Я работаю в SharePoint, и есть возможность настраивать списки с помощью JSON. Я хочу иметь 3 дива.
- Изображение (50х50)
- Заголовок (занимает остальную часть строки)
- Под строкой изображения/заголовка я хочу поместить div с кнопкой.
Но я продолжаю получать…
Мой код json приведен ниже…
"elmType": "div",
"attributes": {
"class": "ms-borderColor-neutralTertiary"
},
"style": {
"width": "99%",
"border-top-width": "0px",
"border-bottom-width": "1px",
"border-left-width": "0px",
"border-right-width": "0px",
"border-style": "solid",
"margin-bottom": "16px"
},
"children": [
{
"elmType": "div",
"style": {
"display": "flex",
"box-sizing": "border-box",
"align-items": "center"
},
"children": [
{
"elmType": "div",
"attributes": {
"iconName": "Group",
"class": "ms-fontSize-42 ms-fontWeight-regular ms-fontColor-themePrimary",
"title": "Details"
},
"style": {
"flex": "none",
"padding": "0px",
"padding-left": "0px",
"height": "36px"
}
}
]
},
{
"elmType": "div",
"attributes": {
"class": "ms-fontColor-neutralSecondary ms-fontWeight-bold ms-fontSize-24"
},
"style": {
"box-sizing": "border-box",
"width": "100%",
"text-align": "left",
"padding": "21px 12px",
"overflow": "hidden",
"border": "1px solid green",
"position": "relative"
},
"children": [
{
"elmType": "div",
"txtContent": "='Details for document: ' [$Title]"
}
]
},
{
"elmType": "div",
"style": {
"width": "auto",
"float": "left",
"border": "1px solid red"
},
"children": [
{
"elmType": "button",
"txtContent": "Create a New PR"
}
]
}
]
}```