如何设置 RadDataForm 组 Headers 的样式?
How to style Group Headers of RadDataForm?
DataForm docs 说;我需要创建 GroupTitleStyle 的实例并将其设置为 PropertyGroup 的 titleStyle 属性.
但是如何以及在何处创建 nativescript-vue 中的 grouptitlestyle
?
我创建了一个{N} playground
我已经试过了:
return {
groups: [
Object.assign(new PropertyGroup(), {
name: "Personal",
collapsible: true,
collapsed: false,
titleStyle: {
labelTextSize: 22
}
}),
Object.assign(new PropertyGroup(), {
name: "Address",
collapsible: true,
collapsed: true
})
],
你能帮我设置 labelTextSize
到RadDataForm groups吗?
提前致谢
只需传递 GroupTitleStyle
实例,而不是普通对象。
....
Object.assign(new PropertyGroup(), {
name: "Personal",
collapsible: true,
collapsed: false,
titleStyle: Object.assign(
new GroupTitleStyle(), {
labelTextSize: 40
})
}),
....
DataForm docs 说;我需要创建 GroupTitleStyle 的实例并将其设置为 PropertyGroup 的 titleStyle 属性.
但是如何以及在何处创建 nativescript-vue 中的 grouptitlestyle
?
我创建了一个{N} playground
我已经试过了:
return {
groups: [
Object.assign(new PropertyGroup(), {
name: "Personal",
collapsible: true,
collapsed: false,
titleStyle: {
labelTextSize: 22
}
}),
Object.assign(new PropertyGroup(), {
name: "Address",
collapsible: true,
collapsed: true
})
],
你能帮我设置 labelTextSize
到RadDataForm groups吗?
提前致谢
只需传递 GroupTitleStyle
实例,而不是普通对象。
....
Object.assign(new PropertyGroup(), {
name: "Personal",
collapsible: true,
collapsed: false,
titleStyle: Object.assign(
new GroupTitleStyle(), {
labelTextSize: 40
})
}),
....