Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
140
Right align inside Column
posted

Hi,

I am using 9.2.20092.2056.

I try to RIght align the text by:

    <style type="text/css">
        .RAlign { text-align:right; font-weight:bold;}
    </style>
....

<ig:BoundDataField 
  DataFieldName="FirstName" 
  Header-Text="First Name" 
  Key="FirstName"  CssClass="RAlign"  >
 <Header Text="First Name" />
</ig:BoundDataField>

The font is bold which shows the CssClass is working.

But the text is not right align.

Did I miss anything?

Thanks!

David

 

Parents
  • 14049
    Offline posted

    Hello David,

    The css class should have a selector like following:

        <style type="text/css">
            tbody > tr > td.RAlign { text-align:right; font-weight:bold;}
        </style>

Reply Children