-
Notifications
You must be signed in to change notification settings - Fork 73
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
Pass through ItemTypes to childcomponents #163
Comments
DEVNOTES I've tried to think a little differently about this, and compared ListView and GridView
Which implies that a GridView is really a ListView short a few useful features. Even though an AspNet gridView and listView might have an intersect, but one isn't wholly a subclass of the other, we do not need that to be the case for BlazorWebComponents. Remembering the objective that we should be able to paste the markup into our page, and the page should render. It doesn't really matter if there are extra features available for the GridView that weren't avaiable in webforms, but any extra GridView properties still need to be added. Reviewing our current implementation, we see that the output is much the same: a table with head, body, tr and td. committed this as an example if anyone wants to review and ponder. |
I like the general idea of implementing the GridView through the ListView. Users should not see a difference on the surface. |
Very interesting approach... I like the simplicity of the approach and
re-use of other components we've already completed
Jeff
…On Fri, Apr 17, 2020 at 3:45 AM Egil Hansen ***@***.***> wrote:
I like the general idea of implementing the GridView through the ListView.
Users should not see a difference on the surface.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#163 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAATF4PFCAHELMMHXTXJNF3RNACK7ANCNFSM4MHWZITA>
.
|
Example: For a GridView, need to pass the ItemType of the Grid through to the column child components so that we don't have to repeat the ItemType on each of the child components
The text was updated successfully, but these errors were encountered: