Источник:
http://axstart.spaces.live.com/Blog/...C0A0!249.entry
==============
First add the styles to the CCS of AX this is done in the file AXEP_v3 or AXEP. The syntax is not complex.
For a Table change at a line like table.MYthing. For the Row use the tr tag and for the Table Cell use the TD tag
Код:
tr.red
{
background-color: red;
}
tr.blue
{
background-color: blue;
}
next redeploy your style sheet and you can use it in your weblet
X++:
public void run(Args args = null)
{
int rows;
int columns;
int currentRow;
int currentColumn;
;
rows = 10;
columns = 5;
webSession().writeTxt('');
for (currentRow = 1 ;currentRow....