<
div
>
<
telerik:RadSpreadsheet
runat
=
"server"
ID
=
"rssTest"
></
telerik:RadSpreadsheet
>
</
div
>
Protected
Sub
Page_Init(
ByVal
sender
As
Object
,
ByVal
e
As
System.EventArgs)
Handles
Me
.Init
Dim
provider
As
SpreadsheetDocumentProvider<br>
Dim
path
As
String
= Server.MapPath(
"~/App_Data/20150530_C09_Schedule.xlsx"
)
provider =
New
SpreadsheetDocumentProvider(path)
rssTest.Provider = provider
End
Sub
Is there any way to get radgrid grouping by a specific column?
Thanks,
d-cpt
Hello I am working in RadCloudUpload to upload files in amazon s3 server. It working with Single file (20MB) perfectly. But when I am trying to open multiple files (ex: 10MB, 20MB, 5MB, 8MB) it is uploading only One or Two files at a time.Not all the files are uploaded. but If I am trying to upload files with smaller size (ex: 10KB, 2MB, 100KB, 3MB) then all the files are uploaded to S3 server. How to resolve this problem ?
<telerik:RadCloudUpload ID=
"RadCloudUpload1"
runat=
"server"
MaxFileSize=
"91943040"
RenderMode=
"Lightweight"
MultipleFileSelection=
"Automatic"
OnClientFileUploaded=
"fileUploaded"
OnFileUploaded=
"RadCloudUpload1_FileUploaded"
ProviderType=
"Amazon"
> </telerik:RadCloudUpload>
function
fileUploaded(sender, args)
{ theForm.submit(); }
protected void RadCloudUpload1_FileUploaded(object sender, CloudFileUploadedEventArgs args)
{
long contentLenght = args.FileInfo.ContentLength;
string contentType = args.FileInfo.ContentType;
string keyName = args.FileInfo.KeyName;
string originalName = args.FileInfo.OriginalFileName;
args.IsValid = true;
}
<httpRuntime maxRequestLength=
"91943040"
executionTimeout=
"3200"
/>
please help !!!
Hello,
When I run IMager manager in rad editor, I can't load css and get the error as shown. please show me another way to fix this problem, thanks
Not sure if this is even possible.
I have an update panel that fires off fine when a button is clicked and it shows "Processing request. Please wait...."
All fine and dandy.
Certain actions may take a while and I would like to be able to change the message content (attempting through threading and delegates) with status updates as to the background process.
Is this even remotely possible?
I'm using the spreadsheet component for completing a template file. Several columns have dropdown box values to ensure known values.
Until now I was only able to use the mouse for opening a dropdown box + selecting a value.
The users asked me if there is also a keyboard shortcut way of opening the dropdown box and selecting a value for speeding up the data entry.
i am using RadGrid BatchEdit, which is using combobox where CheckBoxes="true". i can't acess checkbox values in server side.
telerik:GridTemplateColumn UniqueName="AmountAttributeCategory" HeaderText="Tax" >
<ItemTemplate>
<asp:Label runat="server"><%#DataBinder.Eval(Container.DataItem, "TaxesName")%></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<telerik:RadComboBox runat="server" ID="RadComboBoxAttribute" CheckBoxes="true" AllowCustomText="true" CheckedItemsTexts="DisplayAllInInput"
OnItemsRequested="RadComboBoxAttribute_ItemsRequested"
EnableLoadOnDemand="true" DataValueField="TaxesID" DataTextField="Text"
>
<ItemTemplate>
<table>
<tr>
<td style="width:100px;text-align:left;"><%# DataBinder.Eval(Container, "Text")%></td>
<td style="width:100px;text-align:left;"><%# DataBinder.Eval(Container, "Attributes['Amount']")%></td>
</tr>
</table>
</ItemTemplate>
</telerik:RadComboBox>
</EditItemTemplate>
</telerik:GridTemplateColumn>
protected void RadGrid1_BatchEditCommand(object sender, Telerik.Web.UI.GridBatchEditingEventArgs e)
{
foreach (GridBatchEditingCommand command in e.Commands)
{
Hashtable oldValues = command.OldValues;
Hashtable newValues = command.NewValues;
// GridTemplateColumn file = (GridTemplateColumn)newValues["AmountAttributeCategory"];
// RadComboBox ddlDesc = RadGrid1.FindControl(RadGrid1.MasterTableView.ClientID + "_AmountAttributeCategory").FindControl("RadComboBoxAttribute") as RadComboBox;
}}
how to get checkbox values which is binded in combobox RadGrid GridTemplateColumn ?