All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
<
telerik:RadAsyncUpload
runat
=
"server"
ID
"RadAsyncUpload1"
OnClientFileUploaded
"onClientFileUploaded"
MultipleFileSelection
"Automatic"
>
</
<script type=
"text/javascript"
var
$ = $telerik.$;
function
onClientFileUploaded(radAsyncUpload, args) {
$row = $(args.get_row());
inputName = radAsyncUpload.getAdditionalFieldID(
"TextBox"
);
inputType =
"text"
;
inputID = inputName;
input = createInput(inputType, inputID, inputName);
label = createLabel(inputID);
$row.append(
"<br/>"
$row.append(label);
$row.append(input);
}
createInput(inputType, inputID, inputName) {
input =
'<input type="'
+ inputType +
'" id="'
+ inputID +
'" name="'
+ inputName +
'" />'
return
input;
createLabel(forArrt) {
label =
'<label for='
+ forArrt +
'>File info: </label>'
label;
</script>