This is a migrated thread and some comments may be shown as answers.

Problem on tab focus

3 Answers 69 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Mona
Top achievements
Rank 1
Mona asked on 08 Oct 2010, 11:48 AM
Hello All,

The following yellow line displays when I press tab key on Category drop down.
I am using a telerik RadAsynchronous upload for file uploading where this yellow line on tab focus is coming.


 <telerik:RadAsyncUpload ID="RadUploadDocument" runat="server" OnClientDeleting="ToDeleteFile" EnableEmbeddedSkins="false"
                        AllowedFileExtensions=".pdf,.doc,.xls,.ppt,.pdfx,.xlsx,.docx,.pptx" ControlObjectsVisibility="none"
                        InputSize="50" Font-Names="Arial" MaxFileSize="5242880" OnClientFileUploaded="OnValidationSucceed"
                        AutoAddFileInputs="true" OnClientValidationFailed="validationFailed" MaxFileInputsCount="1"
                        Style="position: relative; float: left; margin: 3px 0px 0px 10px; width: 385px;
                        ">
                    </telerik:RadAsyncUpload>  

3 Answers, 1 is accepted

Sort by
0
Iana Tsolova
Telerik team
answered on 14 Oct 2010, 07:59 AM
Hello Mona,

I assume the attached screenshot illustrates the RadGrid edit form. However, can you confirm the problem with the RadAsyncUpload does not persist is the controls in the edit form are outside the RadGrid?

Best wishes,
Iana
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Mona
Top achievements
Rank 1
answered on 02 Nov 2010, 05:43 AM
No this control is not in the RadgRid, It is directly applied in the page inside a div container.
0
Accepted
Genady Sergeev
Telerik team
answered on 04 Nov 2010, 01:54 PM
Hi Mona,

This is a bug in RadAsyncUpload which we have already fixed for the upcoming Q3 release. Meanwhile, you can fix the issue via removing the tabindex set to the object that holds the flash uploader. Here is some sample code:

1) Add handler for the OnClientAdded event
2) Use the following code to remove the tabindex:

function clientAdded(sender, args) {
         $telerik.$("object", args.get_row()).removeAttr("tabindex");
     }


All the best,
Genady Sergeev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Grid
Asked by
Mona
Top achievements
Rank 1
Answers by
Iana Tsolova
Telerik team
Mona
Top achievements
Rank 1
Genady Sergeev
Telerik team
Share this question
or