UpdateProgress display Problem

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Guramrit Singh

    UpdateProgress display Problem

    Hello everybody,
    is there any control adapter made for updatepanel and updateprogress.
    actually updateprogress control is rendered as display:block, but I want it
    as display:inline. and it doesn't contain property like rendermode or style.
    I think I can made it possible using control adapter.

    Any other solution for this.

    Thanx in advance


  • Munna

    #2
    Re: UpdateProgress display Problem

    Hi

    you can set your progesstemplate s innerelements style to what every
    you like ...
    even display in any position of the screen with absolute positioning

    <asp:UpdateProg ress ID="UpdateProgr ess1" runat="server">
    <ProgressTempla te>
    <div class="CustomSt yle">
    //display elements will go here
    </div>
    </ProgressTemplat e>
    </asp:UpdateProgr ess>

    best of luck

    Munna

    Comment

    Working...