RadControls for ASP.NET AJAX Telerik.Web.UI.GridDataItemCancelEventArgs OnRowDropping Property
Note |
|---|
To get or set property values for client API properties, you must call property
accessor methods that are named with the get_ and set_ prefixes. For example, to get or set a
value for a property such as cancel,
you call the get_cancel or set_cancel.
|
This event should be attached to identify the target element on which the dragged
grid record is dropped. If this element does not meet your criteria for acceptable target, cancel
the operation by setting args.set_cancel(true) where args is the
second argument passed to the OnRowDropping handler. Additionally, to determine the destination
element or set it explicitly use the get_destinationHtmlElement()
and set_destinationHtmlElement() properties that can be accessed
through the args argument in the handler.
Fired by | RadGrid |
Arguments | targetItemId - the ClientID of the targer dataItem
targetItemIndexHierarchical - the hierarchical index of the
target GridDataItem
targetGridDataItem - the dataItem over which the user is dropping. May
be null if the dataItem has not been instantiated beforehand
targetItemTableView - the GridTableView object, to which the
target GridDataItem belongs
args.get_TargetDataKeyValue(columnName) - a method that
returns a data key value for the specified column name of the target dataItem
domEvent - dom event
draggedItems - an array of the dragged dataItems
destinationHtmlElement - target html element
targetRadGrid - the RadGrid object, to which the target GridDataItem belongs
dropPosition - indicates the position of the drop indicator
if the user is dropping over a RadGrid row - "above" or "below" it
|
Can be canceled | Yes, set eventArgs.set_cancel(true) to cancel |
Example:
CopyASPX
<telerik:RadGrid ID="RadGrid1" runat="server">
<ClientSettings>
<ClientEvents OnRowDropping="RowDropping" />
</ClientSettings>
</telerik:RadGrid>
CopyJavaScript
function RowDropping(sender, eventArgs) {
alert("Dropped target element id is: " + eventArgs.get_destinationHtmlElement().id);
}
function RowDropping(sender, eventArgs) {
eventArgs.set_cancel(true)
}