<
telerik:RadAsyncUpload
ID
=
"Uploader"
runat
=
"server"
Width
=
"0"
Skin
=
"Vista"
ToolTip
=
"Choose images to upload."
MultipleFileSelection
=
"Automatic"
AllowedFileExtensions
=
"jpg,jpeg,png,bmp"
AutoAddFileInputs
=
"true"
OnClientValidationFailed
=
"ValidateType"
OnClientFilesUploaded
=
"CausePostback"
OnPreRender
=
"PictureGrid_OnPreRender"
OnFileUploaded
=
"UploadFiles_FileUploaded"
><
Localization
Select
=
"Upload Pictures"
/></
telerik:RadAsyncUpload
>
My implementation of the RadImageAndTextTile (standalone tiles) is in an IFrame and I need set the target of the navigation link to "_top" so that the containing page navigates to the url, not just the frame contents. Can you tell me how to set the target?
Thanks.
Charles
Is there anything in telerik to detect faces of human beings from image?
Pls Help me, I m Waiting........
I am converting a VB application to C#.
As a novice in C#, I have a very basic question on how to deal with ToolBar settings.
The first line works in VB.
The second line is as close as I get but I am stumped with how to indicate the NavigateUrl portion.
CType(Me.RadToolBar1.Items(toolbar_current), Telerik.Web.UI.RadToolBarButton).NavigateUrl = "lulavision.aspx?show=" & Show_Alias.ToString
(Telerik.Web.UI.RadToolBarButton)RadToolBar1.Items[Toolbar_Current] = "lulavision.aspx?show=" + Show_Alias;
Hi,
I am using the RadAsyncUpload control file.
We want to limit the max upload file size at 30MB.
We have set this up in our Web.Config, and a standard FileUpload form control works fine.
If the user uploads more than 30MB, we handle the 404.13 httpErrors, and redirect to an error page if the user tries to upload more.
However, when testing this with the RadAsyncUpload control, the File upload hangs with a flashing yellow light. Analysing this with developer tools in different browsers, I can see that it tries to upload, but must hit the error, the next command is a call to our error page, URL is all correct, response body is correct, but nothing happens. It appears that the RadAsyncUpload Control somehow surpresses the Redirect and doesn't do anything, but I can see it trying to happen.
I have tried:
What can I do to fix this? I am lost where to go next.
Thanks
Hi All,
I'm creating my grid pragmatically using the approach described here:
http://docs.telerik.com/devtools/aspnet-ajax/controls/grid/defining-structure/changing-the-grid-structure-dynamically-on-postback
It works fine with only one concern - it only retain one column filter value at every turn. Let's say a user filtered results using the first filter. As soon as a second filter is selected, the first filter value will be lost after postback whereas the second filter value remains now. Users need to apply multiple column filters to get the desired results, is there a way to retain all filter values entered by users ?
I can't use bellow scripts because the grid is pragmatically created in Page_Init event and added to the placeholder control
var grid = $find("<%= RadGrid.ClientID %>");
if (grid.get_clientState()) {
var clientState = $.parseJSON(grid.get_clientState());
var keys = clientState.checkListFilterKeys;
for (var i = 0; i < keys.length; i++) {
var selectedValues = clientState.checkListFilterValues[i];
var fieldName = keys[i].split(",")[1];
var filterCell = grid.MasterTableView._getFilterCellByColumnUniqueName(fieldName);
var inputElement = filterCell.children[0];
inputElement.value = selectedValues.join(", ");
}
}
​Thanks in advance