Dialog List

Hi.

Sorry to ask a silly question but I’m not that experienced with Notes.

Is there a way of editing the the text option displayed in a Dialog List??

For instance, one of the options displayed in the Dialog list is Comments and ideally I would like to change this to Acceptance Comments.

I am using the @DBColumn formula to find the values.

@Unique(@DbColumn(“Notes”:“Nocache”;“”;“va_dbptt”;1))

Thanks

Subject: Dialog List

so by using this code u will get all values in dialoglist nayou select the item which ever you want after this get handle of that document then you replace corresponding item value with your value and so on…

rely you status

Subject: Dialog List

You seem to be getting the options from column1 of the view “va_dbptt” as per your formula.

Let’s say you used Form1 in which you get the “comments” options with that formula. Let’s say the formula is using the above view in the which there are documents created with “Form2”.

Create an agent with formula FIELD fieldname := “Acceptance Comments”.

The fieldname is the field which contains “Comments” in the Form2.

Run this agent in the above view by selecting documents in which you see “Comments” in the first column. Make sure this column do not have a formula in designer view.

This change will get you the updated value as your options automatically in the documents created with Form1.

You can update the documents already created with Form1, if contains “Comments” to “Acceptance Comments”, the same way with the above agent. Make sure you run the agent with right “field name” on documents created with Form1 in a different view you have.

Hope this helps.