diff --git a/docs/guide/index.md b/docs/guide/index.md index 9b6d2f8c8630a57e5970d2ba3ca7daeddea3ce7f..115775542cf3d495a3cd1244ca9fb53699c81bf6 100644 --- a/docs/guide/index.md +++ b/docs/guide/index.md @@ -77,6 +77,10 @@ disabledFields: [ ]; ``` +To highlight, which fields are disabled, the `disabledField` slot can be used. It receives the slot prop `isDraggedOver`, +which is a boolean indicating whether something is currently dragged over the grid. This can be used to only show the +disabled fields when something is dragging. An example for this can be found in Example number 7. + ## Prevent items from being dragged To disable dragging of a specific item, simply set the attribute `disabled` of the item to `true`.