Click here to Skip to main content
15,892,697 members
Articles / Web Development / HTML

ASP.NET AJAX Extender for multicolumn drag and drop

Rate me:
Please Sign up or sign in to vote.
4.74/5 (27 votes)
29 Dec 2007CPOL10 min read 187.8K   1.9K   101  
An extender that allows content to be dragged and dropped within columns and across columns. Allows column-wise content flow and reorganization.
// (c) Copyright Omar AL Zabir.
// All rights reserved.

using System;
using System.Collections.Generic;
using System.Text;
using AjaxControlToolkit;

namespace CustomDragDrop
{
    class CustomFloatingBehaviorDesigner : AjaxControlToolkit.Design.ExtenderControlBaseDesigner<CustomFloatingBehaviorExtender>
    {
    }

    [ClientScriptResource(null, "CustomDragDrop.CustomFloatingBehavior.js")]
    public static class CustomFloatingBehaviorScript
    {
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect BT, UK (ex British Telecom)
United Kingdom United Kingdom

Comments and Discussions