America/US Samples
Europe Samples
Asia Samples

Enhanced Window

Effects can be added to various events for some of the advanced Widgets. In this demo the Gaia Window introduces custom Close, Appear, Minimize and Restore effects


Markup (ASPX/.aspx)

   1:   
   2:   
   3:      <gaia:Button 
   4:          id="buttonOpen" 
   5:          runat="server" 
   6:          Text="Open Enhanced Window" 
   7:          OnClick="buttonOpen_Click" />
   8:   
   9:      <gaia:Window 
  10:          ID="window" 
  11:          runat="server"
  12:          OpacityWhenMoved="1" 
  13:          Caption="Gaia Ajax Window" 
  14:          Width="320px" 
  15:          Height="200px"
  16:          Visible="false"
  17:          Draggable="true">
  18:              <div></div>
  19:          </gaia:Window>
  20:   
  21: