Is there a way to have the control scale the image to fit the width of the tile? I would like to show images in the tiles that are much larger than the standard widths of the tiles and everything I try ends up with the image clipped to fit. Since I don't always control the image shown, I need the image to scale down and fit in the tile. Can you show me how to do this? I am databinding with a list(of T). Thanks.
<telerik:RadTileList runat="server" ID="RadTileList1" AppendDataBoundItems="true" TileRows="4">
<DataBindings>
<CommonTileBinding TileType="RadImageTile" Shape="Wide" DataTitleTextField="TileTexts" DataNavigateUrlField="tileNavUrls" />
<ImageAndTextTileBinding DataTextField="TileTexts" DataImageUrlField="TileImagePaths" />
</DataBindings>
<Groups>
<telerik:TileGroup Name="Featured Vehicles">
<telerik:RadContentTemplateTile runat="server" Shape="Square" CssClass="noHover">
<ContentTemplate>
<div class="groupHeadingTitle">
<div class="innerTitle">Featured<br />
Vehicles</div>
</div>
</ContentTemplate>
</telerik:RadContentTemplateTile>
</telerik:TileGroup>
</Groups>
</telerik:RadTileList>
I am here after long time and I remembered, few years ago, Telerik was offering to buy single component from suite. I only need ASP.NET AJAX RadGrid control for my application. Is it possible to buy only this control?
Thanks,
<
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