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

Wizard asp with RadAsyncUpload problem

1 Answer 145 Views
AsyncUpload
This is a migrated thread and some comments may be shown as answers.
Georget
Top achievements
Rank 2
Georget asked on 08 Jul 2011, 05:16 PM
I tried the async file upload example from the demos, but within the wizard asp.
The code is this:

 

<asp:Wizard ID="Wizard2" runat="server" 
            ActiveStepIndex="0" BackColor="#EFF3FB" 
                                    BorderColor="#B5C7DE" BorderWidth="1px" 
            Font-Names="Verdana" Font-Size="0.9em" 
                                    Height="180px" Width="640px" 
                                    onnextbuttonclick="Wizard1_NextButtonClick" 
                                    onsidebarbuttonclick="Wizard1_SideBarButtonClick" 
                                    onfinishbuttonclick="Wizard1_FinishButtonClick">
                                    <HeaderStyle BackColor="#284E98" BorderColor="#EFF3FB" BorderStyle="Solid" 
                                        BorderWidth="2px" Font-Bold="True" Font-Size="0.9em" ForeColor="White" 
                                        HorizontalAlign="Center" />
                                    <NavigationButtonStyle BackColor="White" BorderColor="#507CD1" 
                                        BorderStyle="Solid" BorderWidth="1px" Font-Names="Verdana" Font-Size="0.8em" 
                                        ForeColor="#284E98" />
                                    <SideBarButtonStyle BackColor="#00AEEF" Font-Names="Verdana" 
                                        ForeColor="White" />
                                    <SideBarStyle BackColor="#00AEEF" Font-Size="0.9em" VerticalAlign="Top" 
                                        Width="200px" />
                                    <StepStyle Font-Size="0.8em" ForeColor="#333333" />
                                    <WizardSteps>
                                        <asp:WizardStep runat="server" title="Selección Fecha">
                                            <table align="center" class="style1">
                                                <tr>
                                                    <td class="style3">
                                                        Mes</td>
                                                    <td style="text-align: center">
                                                        <telerik:RadComboBox ID="RadComboBox3" runat="server" Skin="Windows7">
                                                            <Items>
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Enero" Value="01" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Febreo" Value="02" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Marzo" Value="03" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Abril" Value="04" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Mayo" Value="05" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Junio" Value="06" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Julio" Value="07" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Agosto" Value="08" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Septiembre" Value="09" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Octubre" Value="10" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Noviembre" Value="11" />
                                                                <telerik:RadComboBoxItem runat="server" Owner="" Text="Diciembre" Value="12" />
                                                            </Items>
                                                        </telerik:RadComboBox>
                                                    </td>
                                                </tr>
                                                <tr>
                                                    <td class="style3">
                                                        Año</td>
                                                    <td style="text-align: center">
                                                        <telerik:RadComboBox ID="RadComboBox4" runat="server" Skin="Windows7">
                                                        </telerik:RadComboBox>
                                                    </td>
                                                </tr>
                                                <tr>
                                                    <td class="style3">
                                                         </td>
                                                    <td>
                                                         </td>
                                                </tr>
                                            </table>
                                        </asp:WizardStep>
                                        <asp:WizardStep runat="server" title="Cargar Datos">
                                            <div style="height: 32px">
                                                <br />
                                                  
                                                <telerik:RadAsyncUpload ID="RadAsyncUploadPrueba0" runat="server" 
                                                    AllowedFileExtensions="xls,xlsx" MaxFileInputsCount="1" MaxFileSize="524288" 
                                                    OnClientFileSelected="" OnClientFilesSelected="" 
                                                    OnClientValidationFailed="validationFailed" 
                                                    OnFileUploaded="RadAsyncUpload1_FileUploaded">
                                                    <filefilters>
                                                        <telerik:FileFilter Description="*.xls; *.xlsx" Extensions="xls,xlsx" />
                                                    </filefilters>
                                                </telerik:RadAsyncUpload>
                                                  
                                                <br />
                                            </div>
                                                      
                                        </asp:WizardStep>
                                    </WizardSteps>
                                </asp:Wizard>

the error is in the filter property RadAsyncUpload, can not be established.
Thx a lot.

1 Answer, 1 is accepted

Sort by
0
Accepted
Genady Sergeev
Telerik team
answered on 14 Jul 2011, 11:04 AM
Hi Georget,

This is a bug in RadAsyncUpload which we are aware of. We will do our best to fix it for the next latest internal build, meanwhile it is not possible to use design view for upload which has set FileFilter set on it.

Regards,
Genady Sergeev
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

Tags
AsyncUpload
Asked by
Georget
Top achievements
Rank 2
Answers by
Genady Sergeev
Telerik team
Share this question
or