Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
182 views

     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?

Peter Milchev
Telerik team
 answered on 24 Sep 2020
1 answer
443 views

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.

Peter Milchev
Telerik team
 answered on 24 Sep 2020
4 answers
534 views
Hi,

We are using RadAsyncUpload and saving the ContentType property of the uploaded file.

For most uploaded files, .pdf, .docx etc. the ContentType property has been detected.

When uploading an .msg file the ContentType property is null.

Is this an known issue? Do you have any suggestions?

Thanks.

Dani
Top achievements
Rank 1
 answered on 23 Sep 2020
5 answers
294 views

 

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 ?

 

 

Attila Antal
Telerik team
 answered on 23 Sep 2020
2 answers
326 views
Hi,

I have the following doubts regarding Telerik Rad Scheduler . I would be happy if i get it cleared.. Pls Help

1) In rad scheduler we hane Appointment Click event . But i need an event fired when user clicks on a empty time slot and i should be able to get the time slots date , start and end time via event argument

2) I want the Rad Scheduler to fit into my DIV tag automatically with out specifying a specific height

3) Do we have anything like (Data key items in rad grid) or (attributes in rad tree ) in rad scheduler. i need some extra information to be add with my appointments.

Thanks in advance.

Ravi
TTCPL
Shubham
Top achievements
Rank 1
 answered on 23 Sep 2020
3 answers
301 views

Do you know how to change the text of the undo button when using batch edit delete functionality with the setting HighlightDeletedRows="true".

 

 

Alexandre
Top achievements
Rank 1
 answered on 23 Sep 2020
11 answers
208 views

I have hierarchy grid with nested templates. Opening new level causes already opened chart to dissapear.

All works fine if i use SqlDataSource, but i can't and i load my chart on ItemCommand

Please help

David
Top achievements
Rank 1
Iron
Iron
Veteran
 answered on 22 Sep 2020
3 answers
258 views

Hello,

 

1) Is there a way to do an automatic post-back when files finish uploading without the user having to click on a button? I am trying to save uploaded file information to database for further processing. The event doe not seem to be firing.

 

Thanks.

 

Soumen
Top achievements
Rank 1
Veteran
 answered on 21 Sep 2020
0 answers
184 views

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"<br>                 MultipleFileSelection="Automatic" OnClientFileUploaded="fileUploaded" OnFileUploaded="RadCloudUpload1_FileUploaded" ProviderType="Amazon"  ><br>        </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" />
Soumen
Top achievements
Rank 1
Veteran
 asked on 21 Sep 2020
1 answer
125 views

Hello,

I am working on radcloudupload control to upload files in amazon s3 server using c#. I am facing problem when I am going to upload a file more than 4 mb. it is saying file size related issue, but I have followed all the steps to upload a file more than 4 mb. code is as below:

<telerik:RadCloudUpload ID="RadCloudUpload1" runat="server" MaxFileSize="1048576" RenderMode="Lightweight"
                 MultipleFileSelection="Automatic"  OnFileUploaded="RadCloudUpload1_FileUploaded" ProviderType="Amazon"  >
        </telerik:RadCloudUpload>

 

also I have placed the below mentioned points to web.config for large file upload.

<system.web>
  <httpRuntime maxRequestLength="1048576" executionTimeout="3600" />
</system.web>

<system.webServer>   
    <security>
      <authorization>      
      </authorization>
<requestFiltering>
<requestLimits maxAllowedContentLength="1048576000" />
</requestFiltering>
    </security>
<system.webServer>

how to resolve?

Soumen
Top achievements
Rank 1
Veteran
 answered on 21 Sep 2020
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?