Hi!
I am evaluating RadPivotGrid control...And I would like to know how to define my values in Page size combobox?
I saw thar added 10, 20 and 50 in this combo....
Thanks!
Protected Sub RadGrid1_ExcelExportCellFormatting(ByVal source As Object, ByVal e As ExcelExportCellFormattingEventArgs) Handles RadGrid1.ExcelExportCellFormatting |
RadGrid1.MasterTableView.CommandItemSettings.ShowExportToExcelButton = False |
End Sub |
Protected Sub RadGrid1_ExcelExportCellFormatting(ByVal source As Object, ByVal e As ExcelExportCellFormattingEventArgs) Handles RadGrid1.ExcelExportCellFormatting |
RadGrid1.MasterTableView.CommandItemDisplay = GridCommandItemDisplay.None |
End Sub |
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