I've got a RadGrid in place and I've got my MasterTableView's EditMode set to PopUp.

I was wondering if there is a way to style the default input PopUp? I have considered just creating my own template and using it inline but I like the default PopUp. I would like to be able to modify the background color and maybe the text.

I have checked the documentation but the closest thing I could find to modifying the PopUp was the position when it is opened.

有帮助吗?

解决方案

You are better doing it by RadWindow. You can definitely achieve this by overriding CSS style of Telerik Edit Form.

HERE IS THE STYLE

.rgEditForm table {
/*CHANGE FONTS*/
font: normal 13px 'Your Font',Arial,Helvetica,sans-serif !important;
line-height: 22px !important;

/*CHANGE BACKGROUD - FACEBOOK'S BLUE*/
background-color: #3B5999 !important;
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top