parent
0645a9e552
commit
1015193ef5
After Width: | Height: | Size: 6.9 KiB |
@ -1,106 +1,58 @@
|
|||||||
<style type="text/css">
|
<style>
|
||||||
|
|
||||||
#feedback-open-button
|
#container {
|
||||||
{
|
width: 850px;
|
||||||
height: 32px;
|
margin: auto;
|
||||||
margin: 2em 0 4em;
|
}
|
||||||
}
|
|
||||||
|
.back
|
||||||
#feedback-form
|
{
|
||||||
{
|
position:absolute;
|
||||||
padding: 0 1em 1em;
|
top:0;left:0;
|
||||||
}
|
}
|
||||||
|
.wrap
|
||||||
#feedback-form label
|
{
|
||||||
{
|
width:550px;
|
||||||
display: block;
|
height:390px;
|
||||||
line-height: 25px;
|
position:relative;
|
||||||
margin-top: 1em;
|
margin:auto;
|
||||||
}
|
overflow:hidden;
|
||||||
|
}
|
||||||
#feedback-form input
|
|
||||||
{
|
.comment
|
||||||
width: 370px;
|
{
|
||||||
}
|
position: absolute;
|
||||||
|
width: 550px;
|
||||||
.form-actions
|
height: auto;
|
||||||
{
|
top: 400px;
|
||||||
padding-top: 1em;
|
left: 0px;
|
||||||
overflow: hidden;
|
letter-spacing: -1px;
|
||||||
}
|
color: white; font: 24px/45px Berlin Sans FB, Sans-Serif;
|
||||||
|
background: #4A4D4A;
|
||||||
.form-actions button
|
padding: 10px;
|
||||||
{
|
filter:alpha(opacity=60);
|
||||||
float: right;
|
-moz-opacity:0.6;
|
||||||
}
|
-khtml-opacity: 0.6;
|
||||||
|
opacity: 0.6;
|
||||||
.example .t-group
|
line-height: 90%
|
||||||
{
|
|
||||||
border-width: 1px;
|
|
||||||
border-style: solid;
|
|
||||||
padding: 0 1em 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
</style>
|
|
||||||
|
|
||||||
@{ Html.Telerik().Window()
|
|
||||||
.Name("Window")
|
|
||||||
.Title("Submit feedback")
|
|
||||||
.LoadContentFrom("TestPartial", "Settings")
|
|
||||||
.Width(400)
|
|
||||||
.Draggable(true)
|
|
||||||
.Modal(true)
|
|
||||||
.Visible(false)
|
|
||||||
.Render();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
<button id="feedback-open-button" class="t-button t-state-default">Submit feedback...</button>
|
|
||||||
@if (ViewData["name"] != null || ViewData["email"] != null || ViewData["comment"] != null) {
|
|
||||||
<div class="t-group">
|
|
||||||
<h3>Feedback:</h3>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Name: @ViewData["name"] <br />
|
|
||||||
E-mail: @ViewData["email"] <br />
|
|
||||||
Comment: @ViewData["comment"]
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
|
|
||||||
@{ Html.Telerik().ScriptRegistrar()
|
</style>
|
||||||
.OnDocumentReady(@<text>
|
|
||||||
// open the initially hidden window when the button is clicked
|
|
||||||
|
|
||||||
</text>); }
|
|
||||||
|
|
||||||
|
<button onclick="overlay()">Click Me!</button>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<div class="wrap">
|
||||||
|
<img class="backer" src="../../Content/leopard.jpg" alt="image"/>
|
||||||
var windowElement;
|
|
||||||
|
<span class="comment">
|
||||||
$('#feedback-open-button')
|
Loading...
|
||||||
.click(function (e) {
|
</span>
|
||||||
e.preventDefault();
|
</div>
|
||||||
|
|
||||||
windowElement = $.telerik.window.create({
|
|
||||||
title: "Season Edition: ",
|
|
||||||
contentUrl: '@Url.Action("SeasonEditor", "Series")' + '/?seriesId=10',
|
|
||||||
width: 400,
|
|
||||||
height: 500,
|
|
||||||
modal: true,
|
|
||||||
resizable: false,
|
|
||||||
draggable: true,
|
|
||||||
scrollable: false
|
|
||||||
});
|
|
||||||
|
|
||||||
windowElement.data('tWindow').center();
|
|
||||||
});
|
|
||||||
// add button hovers
|
|
||||||
$('.t-button').live('mouseenter', $.telerik.buttonHover)
|
|
||||||
.live('mouseleave', $.telerik.buttonLeave);
|
|
||||||
|
|
||||||
function closeWindow() {
|
<script type="text/javascript">
|
||||||
var window = windowElement.data("tWindow");
|
function overlay() {
|
||||||
window.close();
|
$('.wrap').children('.comment').stop().css("top", "0px");
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
Loading…
Reference in new issue