RE: How to replace dialog.input in business central ?
age 50102 "Dialog"
{
Caption = 'Dialog';
PageType = StandardDialog;
SourceTable = "Integer";
SourceTableView = where(number = filter(1));
layout
{
area(content)
{
field(MyInputText; MyInputText)
{
Caption = 'Give me the value';
}
}
}
var
MyInputText: text;
}
I guess that depends what you wanna do with the data. I usually just keep the input in variables on the page until i decide what to do with them.
You can use the integer table as the data item for the page and set tableview to integer 1.
Here is a small sample: