I have an older .NET 4.0 app that I have recently opened in Visual Studio. There are NO Telerik controls in this app, yet when I run the code on our server it is giving me this "Could not load type 'Telerik.Web.UI.RadUploadHttpModule'" error.
Nowhere in the web.config or application or bin references any Telerik controls. The Telerik controls are available and show in the toolbox and I have made many other apps with Telerik controls, just not this particular app.
What am I missing here?
Thanks.
Dear All,
I have 3 upload controls and a single radbutton. What I want to achieve is; when files are selected, upload doesnot start yet. When the button is clicked; All uploads start;
After all 3 uploads are finished; the radbuttons click event is fired.
Any ideas?
Thanks a lot in advance,
<telerik:RadAsyncUpload ID="RadAsyncUpload1" MultipleFileSelection="Disabled" runat="server"></telerik:RadAsyncUpload>
<telerik:RadAsyncUpload ID="RadAsyncUpload2" MultipleFileSelection="Disabled" runat="server"></telerik:RadAsyncUpload>
<telerik:RadAsyncUpload ID="RadAsyncUpload3" MultipleFileSelection="Disabled" runat="server"></telerik:RadAsyncUpload>
<telerik:RadButton ID="RadButton1" OnClick="RadButton1_Click" runat="server" Text="Upload Files"></telerik:RadButton>
Hi,
I have CSS similar to this:
<AppointmentTemplate>
<div style=
"height:95px;display:block;"
>
<%#Eval(
"Subject"
)%>
</div>
</AppointmentTemplate>
Hi,
When ContentAreaMode="Div" on a RadEditor, and you perform a "find", it does find and highlight the text but it will not scroll to it as it does in the default "Iframe" mode.
I've seen this question addressed as a part of another thread (http://www.telerik.com/forums/begin-in-edit) but I am not able to make this work. I have a page with a RadDataForm that has an ItemTemplate, and InsertItemTemplate defined. The RadDataForm is connected to a SQLDataSource via the DataSourceID property. I tried using the PreRender event as follows to start the RadDataForm in insert mode:
protected void ResourceDataForm_PreRender(object sender, EventArgs e) {
if (!Page.IsPostBack) {
(sender as RadDataForm).IsItemInserted=true;
(sender as RadDataForm).Rebind();
}
The page loads, but my insert template is not showing. Actually, there is nothing that is showing from the RadDataForm. If I load the page so that a record is displayed in the ItemTemplate, then I can successfully insert a new record using a RadButton that has a CommandName property of "InitInsert".
Any thoughts on what I'm doing wrong ?
Thanks -- Jeff Gaiche
I need to implement a very straightforward (and I believe most common) requirement to limit to a couple the predefined crop sizes in the crop dialog, e.g. 1000x500 and 950x500.
How can we do it? Based your documentation we must:
It seems to be too much for such a simple task, isn't it? Same think to resize dialog.
I wonder is there a better/simpler way to accomplish this task which would work in any render mode?
I would really appreciate if the crop/resize dropdown items could be configurable at design time.
Thanks in advance.
I have all my images in byte[] and I would like to use it in a radtile list , is there an easy way to do this ?, all I see so far is that we need to have to Image URL
please help