14.12.2007, 02:11 | #1 |
Участник
|
referencing grid columns, finding selected records
i have a grid. in the grid i have lines of data. how do i reference the particular columns in the grid to perform some calculations? Also, how do i tell when and what records are selected? datasource is a TEMPORARY table. as soon as records load, the table is blank...
its the DAX 4.0 Inventory Management --> Periodic --> Sales Release Order Picking screen sales lines grid Thank you! Последний раз редактировалось Sveta1978; 14.12.2007 в 18:52. |
|
14.12.2007, 14:45 | #2 |
MCTS
|
Цитата:
what records are selected?
X++: for (InventTable = InventTable_ds.getFirst(1); InventTable.ItemId; InventTable = InventTable_ds.getNext()) { //... }
__________________
В глухомани, в лесу Несмотря на красу Дни проводит Лиса Патрикевна. Я никак не пойму Отчего, почему Не пускают куму На деревню |
|
14.12.2007, 17:04 | #3 |
Moderator
|
PHP код:
|
|
14.12.2007, 18:54 | #4 |
Участник
|
Одна проблема
DataSource of the grid from which data is being dragged is temporary.... it is not stored in the database...
|
|
15.12.2007, 15:19 | #5 |
Administrator
|
Sveta, both of the above examples doesn't imply that the table is stored in database. Hence they are absolutely compliant with your requirements.
However could you please specify what kind of calculations you would like to perform? This might help us to give you a better answer.
__________________
Not registered yet? Register here! Have comments, questions, suggestions or anything else regarding our web site? Don't hesitate, send them to me |
|