StatusTemplate section C1Window in C1Dialog 2025v2 399

Posted by: enrique.pv-ext on 29 June 2026, 9:52 am EST

    • Post Options:
    • Link

    Posted 29 June 2026, 9:52 am EST

    Hi,

    Migrate from 2010v1 to 2025v2 399 in ASP.NET WebForms NET Framework 4.8.1.

    Using C1Dialog from C1.Web.Wijmo.Controls.48.dll

    Now, this not compiles:

    <cc2:C1Dialog ID="PlaceWindow" 
                runat="server" 
                Position="[0,0]"
                Height="194px"
                Resizable="false" 
                Width="219px"> 
    
        <StatusTemplate>
            <div class="enlaceVia">
                <asp:HyperLink ID="HyperLink1" runat="server" Font-Names="Tahoma" ForeColor="#405E7A" Font-Size="12px" 
                     Font-Bold="True">
                </asp:HyperLink>
            </div>
        </StatusTemplate>
       <Content>

    StatusTemplate is property for C1Window, not C1Dialog.

    Any alternative , please?

  • Posted 30 June 2026, 7:52 am EST - Updated 1 July 2026, 12:26 am EST

    Hi,

    You are correct that the StatusTemplate property is not available in the C1Dialog control. The newer C1Dialog utilizes a lighter DOM that no longer contains a dedicated status-bar.

    To create a status bar, you will need to create it manually within the main “Content” tag. Below is a small sample showing how we have moved your markup into the main “Content” tag:

    <main>
        <wijmo:C1Dialog ID="PlaceWindow"
            runat="server"
            Height="194px"
            Resizable="false"
            Width="219px">
            <Content>
                <div class="dialog-body" style="height: calc(100% - 35px); overflow: auto;">
                    <p>Main dialog content...</p>
                </div>
    
                <div class="dialog-statusbar" style="position: absolute; bottom: 0; left: 0; right: 0; height: 35px; border-top: 1px solid #ccc; background: #f9f9f9; padding: 5px 10px; display: flex; align-items: center;">
                    <div class="enlaceVia">
                        <asp:HyperLink ID="HyperLink1" runat="server" Font-Names="Tahoma" ForeColor="#405E7A" Font-Size="12px" Font-Bold="True">
                            HyperLink1
                        </asp:HyperLink>
                    </div>
                </div>
            </Content>
        </wijmo:C1Dialog>
    </main>

    Best Regards,

    Kartik

Need extra support?

Upgrade your support plan and get personal unlimited phone support with our customer engagement team

Learn More

Forum Channels