You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
List view to allow you to render a list of entities in window X.
Form view to allow you to specify that a selected item on a list, is rendered inside window Y.
example
varwindow=newWindow();varlistWin=window.SplitLeft("accounts");varformWin=window.SplitRight("Form View");varlist=newListView(listWin,accountService.Accounts);// convention based automatic select fieldslist.OnSelect(item =>{formWin.Clear();newForm(formWin).Write(item));view.Run();
The text was updated successfully, but these errors were encountered:
List view to allow you to render a list of entities in window X.
Form view to allow you to specify that a selected item on a list, is rendered inside window Y.
example
The text was updated successfully, but these errors were encountered: