Timofey, thank you for your reply.
I have one more question about document journal. I can add command to the context menu of the "managed" list form of the document journal via the code below:
| Code |
|---|
Procedure OnCreateAtServer(Cancel, StandardProcessing)
CommandName = "Onaylama";
currentCommand = Commands.Add(CommandName);
currentCommand.Action = "Onaylama";
currentCommand.Title = "Onayla";
currentButton = Items.Add("Button1", Type("FormButton"), Items.List.ContextMenu);
currentButton.CommandName = CommandName;
EndProcedure |
And, i want to add the same command to the context menu of "standart" list form of the same document journal, how can i do this, thanks in advance..