W
WhiskeyRomeo
I am working in .Net 1.1 (VB.Net). I know very little JavaScript.
I need to display information which is not known until runtime. This is a
perfect situation for a hierarchical grid except web grids cannot have
multiple child bands at the same level (unless someone knows of a company
that makes one -- Infragistics doesn't). This would be easily solved in a
windows environment.
I have all the information I need to display in a dataset but because of
normalization it is not user friendly to see it that way. There are 3
pieces of information that need displaying (this is an ordering system where
packages contain different sizes of photographs taken of the customer). A
package can be a simple 5x7 or 2 5x7’s and 1 8x10, etc. A customer can
choose to add retouching, lamination and/or pearlized paper as options. If
the Package contains a plaque, the customer must supply 1 or 2 or 3 lines of
engraving.
Package (there can be multiple package)
Each Package can have 0 to many Options
Each Package can have 0 to 3 lines of Engraving.
For a particular order, I do know how many Packages have been ordered, what
options have been chosen, and whether or not engraving is present. That is
in the dataset. But for each order these value can vary a lot.
Since I can not use hierarchical data-grid, it seems my only option is to
display an HTML table with asp.net labels. Since I don't think I can insert
HTML code and sever controls at specific location of my choosing on page, it
seems I must dynamically generate the whole HTML.
I would have to iterate through my dataset and generate the html and
apsx.net label controls and set their value in the page_init. Is this
possible in code behind? Are they any good code examples?
WR
I need to display information which is not known until runtime. This is a
perfect situation for a hierarchical grid except web grids cannot have
multiple child bands at the same level (unless someone knows of a company
that makes one -- Infragistics doesn't). This would be easily solved in a
windows environment.
I have all the information I need to display in a dataset but because of
normalization it is not user friendly to see it that way. There are 3
pieces of information that need displaying (this is an ordering system where
packages contain different sizes of photographs taken of the customer). A
package can be a simple 5x7 or 2 5x7’s and 1 8x10, etc. A customer can
choose to add retouching, lamination and/or pearlized paper as options. If
the Package contains a plaque, the customer must supply 1 or 2 or 3 lines of
engraving.
Package (there can be multiple package)
Each Package can have 0 to many Options
Each Package can have 0 to 3 lines of Engraving.
For a particular order, I do know how many Packages have been ordered, what
options have been chosen, and whether or not engraving is present. That is
in the dataset. But for each order these value can vary a lot.
Since I can not use hierarchical data-grid, it seems my only option is to
display an HTML table with asp.net labels. Since I don't think I can insert
HTML code and sever controls at specific location of my choosing on page, it
seems I must dynamically generate the whole HTML.
I would have to iterate through my dataset and generate the html and
apsx.net label controls and set their value in the page_init. Is this
possible in code behind? Are they any good code examples?
WR