Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

List View and Form View #54

Open
goblinfactory opened this issue Jan 24, 2020 · 0 comments
Open

List View and Form View #54

goblinfactory opened this issue Jan 24, 2020 · 0 comments
Assignees
Labels
feature request version 8 planned for version 8

Comments

@goblinfactory
Copy link
Owner

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

var window = new Window();
var listWin = window.SplitLeft("accounts");
var formWin = window.SplitRight("Form View");
var list = new ListView(listWin, accountService.Accounts); // convention based automatic select fields
list.OnSelect(item  => { formWin.Clear(); new Form(formWin).Write(item));
view.Run();
@goblinfactory goblinfactory self-assigned this Jan 24, 2020
@goblinfactory goblinfactory added the version 8 planned for version 8 label Nov 13, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature request version 8 planned for version 8
Projects
None yet
Development

No branches or pull requests

1 participant