1: <%@ Page Language="C#" Title="AtomicTabs -- Move" AutoEventWireup="true" CodeBehind="Move.aspx.cs" Inherits="Atom.Website.Samples.AtomicTabs.Move" %>
2:
3: <%@ Register Src="../Source.ascx" TagName="Source" TagPrefix="sample" %>
4: <%@ Register Assembly="Atom.Web" Namespace="Atom.Web.UI.WebControls" TagPrefix="atom" %>
5: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6: <html xmlns="http://www.w3.org/1999/xhtml">
7: <head id="Header1" runat="server">
8: <link rel="Shortcut Icon" type="image/ico" href="../images/icon.png" />
9: <!-- The jQuery UI theme that will be used by the components. -->
10: <link href="../themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
11: <!-- jQuery runtime minified -->
12: <script src="../Scripts/jquery-1.9.1.js" type="text/javascript"></script>
13: <!-- jQuery UI runtime minified, client-side javascript of the components.-->
14: <script src="../Scripts/jquery-ui-1.10.3.custom.min.js" type="text/javascript"></script>
15: <!-- This style reference is needed only for the current example. -->
16: <link href="../css/example.css" rel="stylesheet" type="text/css" />
17: </head>
18: <body>
19: <form id="form1" runat="server">
20: <fieldset>
21: <legend>Action </legend>
22: <asp:CheckBox Text="Allow move" runat="server" AutoPostBack="true" Checked="true"
23: ID="AllowMove" OnCheckedChanged="AllowMove_CheckedChanged" />
24: </fieldset>
25: <br />
26: <div>
27: <atom:AtomicTabs ID="AtomicTabs1" runat="server" AllowMove="true">
28: <Tabs>
29: <atom:TabItem runat="server" Enable="True" Header="Stephen Edwin King">
30: <Template>
31: <div class="tab-example-content">
32: <img src="../images/authors/stephen_edwin_king.jpg" title="Stephen Edwin King" alt="Stephen Edwin King"
33: class="left-side-image" />
34: <span>
35: <p>
36: Stephen Edwin King (born September 21, 1947) is an American author of contemporary
37: horror, suspense, science fiction and fantasy fiction. His books have sold more
38: than 350 million copies and have been adapted into a number of feature films, television
39: movies and comic books. As of 2011, King has written and published 49 novels, including
40: seven under the pen name Richard Bachman, five non-fiction books, and nine collections
41: of short stories. Many of his stories are set in his home state of Maine.
42: </p>
43: <p>
44: King has received Bram Stoker Awards, World Fantasy Awards, British Fantasy Society
45: Awards, his novella The Way Station was a Nebula Award novelette nominee, and in
46: 2003, the National Book Foundation awarded him the Medal for Distinguished Contribution
47: to American Letters. He has also received awards for his contribution to literature
48: for his whole career, such as the World Fantasy Award for Life Achievement (2004),
49: the Canadian Booksellers Association Lifetime Achievement Award (2007) and the Grand
50: Master Award from the Mystery Writers of America (2007).
51: </p>
52: </span>
53: </div>
54: </Template>
55: </atom:TabItem>
56: <atom:TabItem runat="server" Enable="True" Header="Vladimir Vladimirovich Nabokov">
57: <Template>
58: <div class="tab-example-content">
59: <img src="../images/authors/vladimir_vladimirovich_nabokov.jpg" alt="Vladimir Vladimirovich Nabokov"
60: title="Vladimir Vladimirovich Nabokov" class="right-side-image" />
61: <span>
62: <p>
63: Vladimir Vladimirovich Nabokov (Russian: Влади́мир Влади́мирович Набо́ков, 22 April
64: [O.S. 10 April] 1899c – 2 July 1977) was a multilingual Russian novelist, poet and
65: short story writer. Nabokov's first nine novels were in Russian. He then rose to
66: international prominence as a writer of English prose. He also made serious contributions
67: as a lepidopterist and chess composer.
68: </p>
69: <p>
70: Nabokov's Lolita (1955) is frequently cited as among his most important novels and
71: is his most widely known, exhibiting the love of intricate word play and synesthetic
72: detail that characterised all his works. The novel was ranked at No. 4 in the list
73: of the Modern Library 100 Best Novels. Pale Fire (1962) was ranked at No. 53 on
74: the same list. His memoir, Speak, Memory, was listed No. 8 on the Modern Library
75: nonfiction list.
76: </p>
77: </span>
78: </div>
79: </Template>
80: </atom:TabItem>
81: <atom:TabItem runat="server" Enable="True" Header="Thomas Mayne Reid">
82: <Template>
83: <div class="tab-example-content">
84: <img src="../images/authors/thomas_mayne_reid.jpg" alt="Thomas Mayne Reid" title="Thomas Mayne Reid" class="left-side-image" />
85: <span>Thomas Mayne Reid (April 4, 1818 – October 22, 1883), was an Irish-American novelist.
86: "Captain" Reid wrote many adventure novels akin to those written by Frederick Marryat
87: and Robert Louis Stevenson. He was a great admirer of Lord Byron. These novels contain
88: action that takes place primarily in untamed settings: the American West, Mexico,
89: South Africa, the Himalayas, and Jamaica. </span>
90: </div>
91: </Template>
92: </atom:TabItem>
93: <atom:TabItem runat="server" Enable="True" Header="Alphonse de Lamartine">
94: <Template>
95: <div class="tab-example-content">
96: <img src="../images/authors/alphonse_de_lamartine.jpg" alt="Alphonse de Lamartine"
97: title="Alphonse de Lamartine" class="right-side-image" />
98: <span>Alphonse Marie Louis de Prat de Lamartine (21 October 1790 – 28 February 1869)
99: was a French writer, poet and politician who was instrumental in the foundation
100: of the Second Republic. </span>
101: </div>
102: </Template>
103: </atom:TabItem>
104: </Tabs>
105: </atom:AtomicTabs>
106: </div>
107: <br />
108: <sample:Source ID="Code" runat="server" />
109: </form>
110: </body>
111: </html>