Per
|
| Posted: 08/30/2002, 2:51 PM |
|
thanks again, Nicole.
The tips you have given has indeed open a new world to me.
With the solutions you provided I realize there is a lot more to get from CCS than I expected.
Now I have succesfully implemented your propositions on how to alter a record before insert and before update.
Doing this I realize my database would not have any redundant information if I instead of merging data before insert could merge them before showing them, after SELECT has been executed on a record set.
Today I have been trying this but it is not working out. I don't understand what CCS function I need to use.
Suppose my recordset contains table field names from different tables and that I want to combine and concatenate them before I show them.
Doing so I have not succeeded to create a concatenation of items before show.
I have tried using a technique similar to the one proposed for inserting a concatenated string value looking like this:
global $form_name
$form_name->field_name->SetValue("concatenation of string values and". $selected_record_1. $selected_record_2. "and so on". $form_name->field_name->Value);
In any case I don't get this to change items in my grid. It seems that the function needed for grabbing data from a selected recordset or even passed parameters, is different from using SetValue().
Could you help me to move ahead on this one?
Thanks
Per
|
|
|
 |
Per
|
| Posted: 08/31/2002, 8:37 AM |
|
Problem has been solved.
I needed to use Before Show Row instead of Before Show
|
|
|
 |
|