\Kendo\UI\UploadLocalization

A PHP class representing the localization setting of Upload.

Methods

cancel

Sets the text of the Cancel button.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->cancel('value');
?>

clearSelectedFiles

Sets the text of the Clear button.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->clearSelectedFiles('value');
?>

dropFilesHere

Sets the hint of the drop-zone.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->dropFilesHere('value');
?>

headerStatusPaused

Sets the paused status message of the header.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->headerStatusPaused('value');
?>

headerStatusUploaded

Sets the status message of the header for the uploaded files.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->headerStatusUploaded('value');
?>

headerStatusUploading

Sets the status message of the header for the files that are in the process of upload.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->headerStatusUploading('value');
?>

invalidFileExtension

Sets the text of the validation message for an invalid file extension.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->invalidFileExtension('value');
?>

invalidFiles

Sets the text of the validation messages for invalid files when the batch property is set to true and two or more files fail the validation.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->invalidFiles('value');
?>

invalidMaxFileSize

Sets the text of the validation message for an invalid maximum file size.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->invalidMaxFileSize('value');
?>

invalidMinFileSize

Sets the text of the validation message for an invalid minimum file size.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->invalidMinFileSize('value');
?>

remove

Sets the text of the Remove button.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->remove('value');
?>

retry

Sets the text of the Retry button.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->retry('value');
?>

select

Sets the text of the Select... button.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->select('value');
?>

statusFailed

Sets the status message for failed uploads.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->statusFailed('value');
?>

statusUploaded

Sets the status message for successful uploads.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->statusUploaded('value');
?>

statusUploading

Sets the status message for files that are in the process of upload.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->statusUploading('value');
?>

uploadFail

Sets the text of the validation message when a file fails to upload.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->uploadFail('value');
?>

uploadSelectedFiles

Sets the text of the Upload files button.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->uploadSelectedFiles('value');
?>

uploadSuccess

Sets the text of the validation message when a file is succesfully uploaded.

Returns

\Kendo\UI\UploadLocalization

Parameters

$value string

Example

<?php
$localization = new \Kendo\UI\UploadLocalization();
$localization->uploadSuccess('value');
?>
In this article
Not finding the help you need?