I am using a Listbox and Telerik Scheduler in my web page. I need to drag an item from listbox to scheduler control. How can I do that?
Darg n Drop from ListBox to Telerik Scheduler in ASP.NET
1.7k Views Asked by Sauron At
1
There are 1 best solutions below
Related Questions in LISTBOX
- What is this namespace ITypeOfObjectsBoundToListBox ? Couldn't find it
- Wpf No Highlight on ListBoxItem for Touch Devices
- Marshalling C# from DLL to WPF form
- Multiple listboxes created dynamically with event
- WPF Interactions CallMethodAction for DataTemplate in ListCheckBox thrown a exception "Could not find method on object of type"
- WPF Extended ListBox doesn't find definition
- Get selected values of a ListBox
- How can I change hflex zk of Listbox
- Select2 using Ajax (multi select) - when selecting second one first one disappars
- c# How to sort an array and put in a listbox?
- ListBox with nothing selected shows highlighted entry
- Getting selected items from a listbox using the index instead of value
- ListBox with multiselect property loses selected items
- ListBox SelectedItem does not work in MVVM
- How to convert ListBox.items to string of array collection in c#
Related Questions in DRAG-AND-DROP
- Easeljs snap to grid
- Can a dialog intercept drag'n'drop messages passed to its controls?
- Drag and drop whole table row
- python pygame - how to create a drag and drop with multiple images?
- Image dis-appears on droppping imageview android
- Android Listview OnDragListener Item Position On Drop
- Dragging element obscures drop target
- RichTextBox change text on drag or drop
- C#: Dragging/dropping between controls inside flow layout panel
- Drop on same dragged element
- Issues with drag and drop in CKEditor
- Angular Js Drag and Drop - Passing $index to Directive
- Dropzone js - Drag n Drop file from same page
- With iOS 9's multitasking, can my app receive dragged content from another app?
- GridView Rearange switch by drag and drop
Related Questions in ASP.NET-3.5
- How to bind date in 24 hour format in ms chart
- Why are there two sets of Build and Rebuild options in my ASP.NET project?
- Can Telerik Themes be assigned to the BackColor property of elements?
- Show progress bar while downloading excel
- How to debug a HRESULT: 0x80131047 compile error
- DLL comparison to confirm If same source code is used
- Asynchronous operation exception if I want to create an instance of a class
- IIS7/8 and .asmx/<methodname> giving 404
- Unit Testing methods that delete multiple files from a specified directory using NUnit
- Assign static variable inside Class
- How to dynamically add and remove list item in asp.net web form?
- how to insert record to multiple tables with multiple file with linq2sql
- what's the difference between ASP.NET controls and Html.helpers in ASP.NET MVC?
- None of my "code behind" code is being called
- Master page issue in asp.net after publishing
Related Questions in TELERIK-SCHEDULER
- Allowing user to select radscheduler timeline's scale
- Is it possible to create different timeline for each Resource group in telerik scheduler?
- Can RadScheduler display dates on y axis?
- The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>). Telerik Application
- Telerik ScheduleView Appointments CollectionChanged fires with empty object
- Telerik Kendo Scheduler: Show all day event in the main part of Week View
- Strange behavior of confirmation in Telrik ?
- Darg n Drop from ListBox to Telerik Scheduler in ASP.NET
- Telerik Scheduler "UniqueId property" - how to access it
- Telerik Scheduler - drag and drop
- Telerik RadScheduler cancel appointment move after Server-Side validation error
- RadScheduler to show All Day Event
- Telerik RadScheduler and appointment attributes
- Issue with session parameter "Must declare the scalar variable"
- How do i group user calender on button click using kendo scheduler in MVC razor
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I know this question is quite old now, but I thought I'd provide an answer to help others that arrive here.
RadScheduler (like all Telerik controls) provides a rich client-side API that makes it possible to write some JavaScript to handle drag-and-drop scenarios. There is a complete demo showing you how to drag-and-drop between a RadGrid and RadScheduler online:
http://demos.telerik.com/aspnet-ajax/scheduler/examples/draganddropintegration/defaultcs.aspx
In this example, you see how to use RadGrid's
RowDroppingclient-side event and RadScheduler's client-side API to determine where an item has been dropped. Ajax is then used to add the appointment to the Scheduler.To adapt this for a ListBox, you need to have a similar event that can be fired when your ListBox item is dropped. Unfortunately, the default listbox will not provide that, but you can use something like the RadListBox (which has more client-side events, including
OnClientDropping). Here, ListBox drag-drop is integrated with a RadTreeView:http://demos.telerik.com/aspnet-ajax/listbox/examples/applicationscenarios/treeviewdraganddrop/defaultcs.aspxt
I hope that helps.