문제

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