I have a requirement where I need to right align the data in my RadGrid (a row of numbers) and I also need to right align the header and the filter controls.
Currently there is no FilterStyle like there is HeaderStyle or ItemStyle. Yes, I can right align all of the filter columns, but I need to be able to pick-and-choose which columns get right aligned.
When I opened a support ticket the following css was suggested, but that only right aligns the text in the text box, the the controls themselves in the <td>.
.rgFilterRow td:nth-child(4),
.rgFilterRow td:nth-child(7)
{
text-align: right;
}