<link rel="stylesheet" href="http://cdn.kendostatic.com/2014.2.716/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2014.2.716/styles/kendo.dataviz.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2014.2.716/styles/kendo.silver.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2014.2.716/styles/kendo.dataviz.silver.min.css">
<script src="http://cdn.kendostatic.com/2014.2.716/js/kendo.all.min.js"></script>
<body>
<div class="toolbar">
<div class="workgroup">Product Development Tracker</div>
<div class="operations">
<!--
<span class="op-button" id="user_options">Options</span>
<span class="op-button">Help</span>
<span class="op-button">Logout</span>
-->
</div>
</div>
<div class="main-content-wrapper">
<div class="main-content">
<div class="company">Acme Corporation</div>
<div class="user">Susan Smith</div>
<div class="division">Software Development</div>
<div class="time-zone">Pacific Daylight Time</div>
<div class="messages">
<div class="box-message box-message-info">
<div class="content">System will be down for maintenance at 10PM Pacific Time tonight.</div>
<div class="close" title="Click to close this message. It will not be displayed again unless the system message has changed.">x</div>
</div>
<div class="box-message box-message-warn">
<div class="content">Your trial expires in 12 days.</div>
</div>
</div>
<div class="directions">
To get started, open an existing workspace or create a new one.
</div>
<div class="workspaces">
<div class="workspace-list-header">Workspaces</div>
<ul class="workspace-list">
<li class="workspace"><span class="name">Development</span><span class="description">software development for our widget product</span></li>
<li...
$(".box-message .close").kendoTooltip({
position: "left",
callout: true,
width: 300
});
$(".workspace-list").kendoTooltip({
filter: ".name",
content: function (e) {
return "Pretend that clicking here brings you to the <strong>" + e.target.text() + "</strong> workspace (see <a href='http://jsfiddle.net/ejlnr/xsznga7d/light/' target='workspaceFiddle'>this fiddle</a> for an example of the new workspace page layout)."; },
position: "right",
callout: true,
width: 300
});
$("#admin_link").kendoTooltip({
position: "right",
width: 500,
callout: true,
content: "Clicking here will go to the admin page (similar to how it works now). However, I am considering removing this option and just having a separate login for the workgroup admin operations. That would... <ol><li>Make it easier to use different IIS security for admin pages.</li><li>Avoids the difficulties in having an admin interface and end user interfaces in the same web page (requiring admin changes to be immediately reflected in the end user interface).</li><li>Keep ASP code entirely out of the end user login page.</li></ol>"
});
$(".box-message .close").click(function (e) {
tooltip.hide();
$(this).parent().fadeOut(500);
});
$(".operations").kendoMenu({
dataSource: [
{ text: "Account",
items: [
{ text: "Information" },
{ text: "Preferences" }
]
},
{ text: "Help" },
{ text: "Logout" }
]
});
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!
Console
Debug your Fiddle with a minimal built-in JavaScript console.