Ahoj,
Vlastnosti IncludeInPage a Visible nefungují, pokud se nastavují na GridViewTextColumn a GridViewTemplateColumn (dot i bp).
Pokud použiji IncludeInPage, tak se stránka vůbec nezkompiluje s chybou:
DotVVM.Framework.Compilation.DotvvmCompilationException: The control ‘DotVVM.Framework.Controls.GridViewTextColumn’ does not have a property ‘IncludeInPage’ and does not allow HTML attributes!
<dot:GridViewTextColumn ValueBinding="{value: ZnackaZbozi}" IncludeInPage="{resource: Parametry.ZobrazitZboziZnacka}" />
Pokud použiji Visible, tak to funguje, ale pouze s value bindingem, pokud mám resource binding, tak je sloupec zobrazen i při hodnotě false.
<dot:GridViewTextColumn ValueBinding="{value: ZnackaZbozi}" Visible="{resource: Parametry.ZobrazitZboziZnacka}" />