<kendo:fileManager-dialogs-upload-action>

A collection of objects containing text, action and primary attributes used to specify the dialog buttons.

Example

<kendo:fileManager-dialogs-upload-actions>
    <kendo:fileManager-dialogs-upload-action></kendo:fileManager-dialogs-upload-action>
</kendo:fileManager-dialogs-upload-actions>

Configuration Attributes

action java.lang.String

The callback function to be called after pressing the action button.

Example

<kendo:fileManager-dialogs-upload-action action="action">
</kendo:fileManager-dialogs-upload-action>

primary boolean

A boolean property indicating whether the action button will be decorated as primary button or not.

Example

<kendo:fileManager-dialogs-upload-action primary="primary">
</kendo:fileManager-dialogs-upload-action>

text java.lang.String

The text to be shown in the action's button.

Example

<kendo:fileManager-dialogs-upload-action text="text">
</kendo:fileManager-dialogs-upload-action>

Event Attributes

action String

The callback function to be called after pressing the action button.

Example

<kendo:fileManager-dialogs-upload-action action="handle_action">
</kendo:fileManager-dialogs-upload-action>
<script>
    function handle_action(e) {
        // Code to handle the action event.
    }
</script>

Event Tags

kendo:fileManager-dialogs-upload-action-action

The callback function to be called after pressing the action button.

Example

<kendo:fileManager-dialogs-upload-action>
    <kendo:fileManager-dialogs-upload-action-action>
        <script>
            function(e) {
                // Code to handle the action event.
            }
        </script>
    </kendo:fileManager-dialogs-upload-action-action>
</kendo:fileManager-dialogs-upload-action>
In this article
Not finding the help you need?