Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Dynamics AX 2012, is there a way to change the background color of multiple cells to different colors?

Order Status     Ship Status     Order ID
[green]          [red]           SO-1234
[green]          [green]         SO-1235
[red]            [red]           SO-1236

I've written a displayOption override that can change the color of one cell, but it seems to apply all the changes at the end, so whatever the last color you specify is the one that gets applied to all cells.

_options.backColor(46080); //green
_options.affectedElementsByControl(OrderStatus.id());

//is there anyway to apply the first change, so I can make a second one?

_options.backColor(255); //red
_options.affectedElementsByControl(ShipStatus.id());

In the code listed above, both cell background colors would be red.

Any suggestions?

Thanks

share|improve this question
[Change the background color of a column in a grid][1] [1]: stackoverflow.com/questions/12621719/… See above link, that may help you... – Mohd Saddaf khan Jan 21 at 6:45
@MohdSaddafkhan I think the question asks if its posslble to have multiple colors on the same grid line. I don't think this is possible. – David Lawson Jan 21 at 8:51
Yes, the request is to color two cells in the same row two different colors. I've already implemented single-cell coloring. Thanks. – Brad Jan 22 at 16:13

1 Answer

up vote 1 down vote accepted

I had a similar task to accomplish, and I did not find a way to do it in Ax (well, techinically you could try Table control, but I strongly encourage you NOT to do so - you will end up swearing out aloud).

What I did is implemented a WPF user control and used this post as a template. This is a small tutorial (found in Answer #7) which shows how to implement a cell background converter in built-in WPF data grid control, to accomplish the task.

After you have it implemented you can populate your datagrid by using LINQ (if using AX 2012 R2), web services, or passing a temporary table - there are many ways to access AX data.

It may not be the ultimate solution, but it works.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.