how to use detail_<DetailTable>?

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
rodrigofaustino2
User
Posts: 28

how to use detail_<DetailTable>?

Post by rodrigofaustino2 »

anyone have an example of how to use
detail_<DetailTable>

what I intend to do is a report on page view and display the detail tables seen in the example says that it is possible in custom template, but there is no example


motfs
User
Posts: 258

Post by motfs »

rodrigofaustino2 wrote:
a report on page view and display the detail tables

Not quite understand what you try to do. If you want to display additional tables in a report, you may need to customize the page by yourself.


rodrigofaustino2
User
Posts: 28

Post by rodrigofaustino2 »

able to do:
used to report page X view.cshtml
I specifically call the details in one place the source code
@RenderPage ("XXX1grid.cshtml")
@RenderPage ("XXX2grid.cshtml")
and the place I want to call certain fields
<H4> <b style = "color: # 0000FF"> Name Data: </ b> Filmography
@ Html.Raw (xxx1.n1.ViewValue)
@ Html.Raw (xxx1.n2.ViewValue)
@ Html.Raw (xxx1.n3.ViewValue)
@ Html.Raw (xxx2.d1.ViewValue)
@ Html.Raw (xxx2.d2.ViewValue)
</ Div>
the problem and I want to use if block before acodigo up to disappear with the
<H4> <b style = "color: # 0000FF"> Name Data: </ b> Filmography if there is nothing in the field
xxx1.n1.ViewValue,
I do not know if I was clear


motfs
User
Posts: 258

Post by motfs »

if block before acodigo up to disappear with the
<H4> <b style = "color: # 0000FF"> Name Data: </ b> Filmography if there is nothing in the field

Still not clear. But you may check if the ViewValue is null in your code.


Post Reply