2008-12-30 15:51:51 +00:00
<!doctype html>
< html lang = "en" >
< head >
2009-01-16 22:51:33 +00:00
< title > jQuery UI Sortable - Drop placeholder< / title >
2009-01-07 02:36:51 +00:00
< link type = "text/css" href = "../../themes/base/ui.all.css" rel = "stylesheet" / >
2009-01-14 23:26:15 +00:00
< script type = "text/javascript" src = "../../jquery-1.3.js" > < / script >
2008-12-30 15:51:51 +00:00
< script type = "text/javascript" src = "../../ui/ui.core.js" > < / script >
< script type = "text/javascript" src = "../../ui/ui.sortable.js" > < / script >
2008-12-31 06:29:31 +00:00
< link type = "text/css" href = "../demos.css" rel = "stylesheet" / >
2008-12-30 15:51:51 +00:00
< style type = "text/css" >
2008-12-31 23:10:48 +00:00
#sortable { list-style-type: none; margin: 0; padding: 0; width: 60%; }
2009-01-04 09:20:45 +00:00
#sortable li { margin: 5px; padding: 5px; font-size: 1.2em; }
2008-12-30 15:51:51 +00:00
< / style >
< script type = "text/javascript" >
$(function() {
2008-12-31 06:29:31 +00:00
$("#sortable").sortable({
2008-12-30 15:51:51 +00:00
placeholder: 'ui-state-highlight'
});
});
< / script >
< / head >
< body >
2008-12-31 14:17:03 +00:00
< div class = "demo" >
2008-12-30 15:51:51 +00:00
2008-12-31 06:29:31 +00:00
< ul id = "sortable" >
2008-12-30 15:51:51 +00:00
< li class = "ui-state-default" > Item 1< / li >
< li class = "ui-state-default" > Item 2< / li >
< li class = "ui-state-default" > Item 3< / li >
< li class = "ui-state-default" > Item 4< / li >
< li class = "ui-state-default" > Item 5< / li >
< li class = "ui-state-default" > Item 6< / li >
< li class = "ui-state-default" > Item 7< / li >
< / ul >
2008-12-31 14:17:03 +00:00
< / div > <!-- End demo -->
< div class = "demo-description" >
2009-01-16 22:51:33 +00:00
< p > When dragging a sortable item to a new location, other items will make room for the that item by shifting to allow white space between them. Pass a class into the < strong > placeholder< / strong > option to style that space to be visible. Use the boolean < strong > forcePlaceholderSize< / strong > option to set dimensions on the placeholder.< / p >
2008-12-31 14:17:03 +00:00
< / div > <!-- End demo - description -->
2008-12-30 15:51:51 +00:00
< / body >
< / html >