I'm trying to align check boxes centered in the cell, and Dollars right aligned.
<ig:BoundDataField DataFieldName="PaymentAmount" Key="PaymentAmount" Width="125px" DataFormatString="{0:$ #,##0.00}" CssClass="AlignRight"> <Header Text="Amount" /></ig:BoundDataField>
This looks like the example, but I'm missing something, any ideas?
Chuck
Hello csnyder_ptb,
Thank you for posting in our forum.
Please make sure that the setting you set in the custom class for the column -AlignRight are not getting overwritten by the default css classes.
You can do that by setting the !important tag after the setting. For example:
.AlignRight
{
text-align: right !important;
}
I’m attaching a sample with the behavior you’ve described. Let me know if you have any further questions or concerns regarding this issue.
Best Regards,
Maya Kirova
Developer Support Engineer
Infragistics, Inc.
http://es.infragistics.com/support
Thanks, that solved the problem.