Telerik RadGrid 内联编辑 修改它的外观和感觉

发布于 2024-10-13 02:44:46 字数 63 浏览 6 评论 0原文

我想更改 RadGrid 内联编辑模板外观的样式。如何在不需要向代码后端添加大量 CSS 的情况下实现这一目标?

I would like to change the styling on my RadGrid inline Edit template look. How do I achieve this without needing to add a huge amount of CSS to my code backend?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

椵侞 2024-10-20 02:44:46

网格公开了许多属性供您操作:

<telerik:RadGrid 
        ID="radgrid"
        runat="server"
        Skin="Vista">
        <MasterTableView 
            ItemStyle-VerticalAlign="Top"
            AlternatingItemStyle-VerticalAlign="Top"
            EditFormSettings-FormMainTableStyle-BorderColor="#555555"
            EditFormSettings-FormMainTableStyle-Width="100%"
            EditFormSettings-FormMainTableStyle-BorderWidth="2px"
            EditFormSettings-FormMainTableStyle-BackColor="#f5f5f5"
            CommandItemDisplay="Top">
            <Columns>
            </Columns>
        </MasterTableView>
</telerik:RadGrid>

如果您查看可用的属性,您会发现还有更多属性。

There are a number of properties exposed by the grid for you to manipulate:

<telerik:RadGrid 
        ID="radgrid"
        runat="server"
        Skin="Vista">
        <MasterTableView 
            ItemStyle-VerticalAlign="Top"
            AlternatingItemStyle-VerticalAlign="Top"
            EditFormSettings-FormMainTableStyle-BorderColor="#555555"
            EditFormSettings-FormMainTableStyle-Width="100%"
            EditFormSettings-FormMainTableStyle-BorderWidth="2px"
            EditFormSettings-FormMainTableStyle-BackColor="#f5f5f5"
            CommandItemDisplay="Top">
            <Columns>
            </Columns>
        </MasterTableView>
</telerik:RadGrid>

If you look through the available properties you'll see there are many more.

2024-10-20 02:44:46

我不确定为什么我无法发表评论,但是是的,我想设置包含 TD 和控件的样式。另外,我还想以某种方式确保隐藏的模板控件在表单处于编辑模式时保持隐藏状态。

I am not certain why I am unable to post a comment but yes, I would like to style the containing TDs and the controls. Also, I would also like to somehow make sure hidden template controls stay hidden when the form is in edit mode.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文