Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
PaulNaude #1
Child of many parents
How do you assign a child datagrid which have more than one parent?
When you have a parent and child datagrid pair, you can assign the child
datagrid using:
DataSet11.Relations.Add("ParentChildRelationshipNa me", _
DataSet11.Tables("ParentTable").Columns("FieldName "), _
DataSet11.Tables("ChildTable").Columns("FieldName" ))
DataGrid2.DataSource = DataSet11
DataGrid2.DataMember = "ParentTable.ParentChildRelationshipName"
BUT, now I have multiple parent datagrids, each with a relationship to one
child table. How do I set the DATAMEMBER property then?
PaulNaude Guest
-
Parent/Child relations - Trying to access child control for save
I have a parent datagrid that has my customer information. For each customer I have a child datagrid with all their part information. In the... -
[PHP] popups, parents, parameters, and php
Those are the requirements. Should be easy, but I am finding it very difficult to tie the pieces together. Any advice or url of a relevant... -
popups, parents, parameters, and php
I have been asking specific questions, and getting helpful answers, but I realized I am getting ahead of myself and thinking about the trees when I... -
Parents and Children
As an option, can you recreate the form in the Child database, using relationships to the Parent and Grandchild databases to display all the same... -
protect parents from children
I cannot easily find a way around your problem, if all you want is protection of an instance variable you could create access method for that...



Reply With Quote

