Yes,
A and B is text ; C is decimal
(A= Item.Description;B=Item."Description 2",C=Inventory)
i create a little example that works. this is the object
OBJECT Page 50000 arraytest
{
OBJECT-PROPERTIES
{
Date=28/04/11;
Time=12:38:21;
Modified=Yes;
Version List=;
}
PROPERTIES
{
SourceTable=Table2000000026;
SourceTableView=WHERE(Number=FILTER(<=3&>0));
OnInit=BEGIN
FOR i := 1 TO 3 DO BEGIN
a[i] := i;
END;
FOR i := 1 TO 3 DO BEGIN
b[i] := i+1;
END;
FOR i := 1 TO 3 DO BEGIN
c[i] := i+2;
END;
END;
OnOpenPage=BEGIN
i := 0;
END;
OnAfterGetRecord=BEGIN
IF i < 3 THEN
i += 1;
END;
}
CONTROLS
{
{ 1101366000;;Container;
ContainerType=ContentArea }
{ 1101366001;1;Group ;
GroupType=Repeater }
{ 1101366002;2;Field ;
CaptionML=ENU=a;
SourceExpr=a[i] }
{ 1101366003;2;Field ;
CaptionML=ENU=b;
SourceExpr=b[i] }
{ 1101366004;2;Field ;
CaptionML=ENU=c;
SourceExpr=c[i] }
}
CODE
{
VAR
a@1101366000 : ARRAY [3] OF Integer;
b@1101366001 : ARRAY [3] OF Integer;
c@1101366002 : ARRAY [3] OF Integer;
i@1101366003 : Integer;
BEGIN
END.
}
}
Comments
We can have 2 columns as of now..
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
( :oops: execuse me if page isn't nice but is a quick test)
edit: I think you could use also fixedlayout, but depends on what you want to do with this factbox.
It works as expected... More or Less...
I would like to see a list, which includes data from an array.
Line 1: A[1] ; B[1] ; C[1];
Line 2: A[2] ; B[2] ; C[2];
2. the structure of the page is the following: what type of array are you using? text, integer? and what about dimensions?
It works as expected... More or Less...
It works as expected... More or Less...
A and B is text ; C is decimal
(A= Item.Description;B=Item."Description 2",C=Inventory)
i create a little example that works. this is the object
It works as expected... More or Less...