I was able to successfully build a web form and using the ajax uploader control, upload files to an azure blob container (i.e. MyFiles-Blobs/hsc/so/file.txt). Now I would like the user to come back to the form and view the uploaded files and download the files at a later time. Can the uploaded control do this and if so is there an example I can use. Or is there a better way of doing this task? Thanks for the help with this request!


Hello,
I have a problem when i work with two radcombox inside radgrid. The problem is that when the event SelectedIndexChanged is fired the second radcombox is not filled. Besides the entire form is reloaded.
I try to put a radAjaxpanel inside label <FormTemplate> to solve this problem. But the second radcombo is not filled.
I do not understand what is the problem.
The code is the next
<telerik:RadGrid runat="server" Id="rgDirecciones" AutoGenerateColumns="False" OnItemDataBound="rgDirecciones_ItemDataBound" CellSpacing="-1" GroupPanelPosition="Top" > <mastertableview datakeynames="IdDireccion,IdSucursal,IdEmpresa"> <rowindicatorcolumn visible="False"> </rowindicatorcolumn> <expandcollapsecolumn created="True"> </expandcollapsecolumn> <Columns> <telerik:GridEditCommandColumn UniqueName="EditCommandColumn" ButtonType="ImageButton" EditImageUrl="../imagenes/Edit.png" InsertImageUrl="../imagenes/Edit.png" Exportable="False"> <HeaderStyle Width="30px" /> </telerik:GridEditCommandColumn> <telerik:GridBoundColumn DataField="IdDireccion" UniqueName="IdDireccion" HeaderText="No Dirección"> <HeaderStyle Width="80px" /> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Pais" UniqueName="Pais" HeaderText="Pais"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="DivisionTerritorial" UniqueName="DivisionTerritorial" HeaderText="Division Territorial"> </telerik:GridBoundColumn> <telerik:GridButtonColumn ConfirmText="Desea eliminar este registro?" ConfirmDialogType="RadWindow" ConfirmTitle="Eliminar" ButtonType="ImageButton" CommandName="Delete" ImageUrl="../imagenes/Delete.png" UniqueName="DeleteColumn" Text="Eliminar" FilterControlAltText="Filter DeleteColumn column" Exportable="False"> <HeaderStyle Width="30px" /> </telerik:GridButtonColumn> </Columns> <editformsettings editformtype="Template"> <formtemplate> <table class="table table-condensed"> <tr> <td style="width: 150px"> <asp:Label ID="lbIdDireccion" runat="server" Text="No Dirección"></asp:Label> </td> <td> <telerik:RadNumericTextBox ID="txtIdDireccion" runat="server" Enabled="<%# (Container is GridEditFormInsertItem) ? true : false %>" MaxLength="2" MaxValue="99" MinValue="0" Text='<%# Bind("IdDireccion") %>' Width="80px"> <numberformat decimaldigits="0" groupseparator="" /> </telerik:RadNumericTextBox> <asp:RequiredFieldValidator ID="rfvIdDireccion" runat="server" ControlToValidate="txtIdDireccion" Display="Dynamic" ErrorMessage="Campo Obligatorio" ForeColor="Red"> </asp:RequiredFieldValidator> </td> </tr> <tr> <td style="width: 150px"> <asp:Label ID="lbPaisDire" runat="server" Text="PaÃs"></asp:Label> </td> <td> <telerik:RadComboBox ID="cmbPais" Runat="server" Width="350px" Height="150px" AutoPostBack="True" OnSelectedIndexChanged="combo_SelectedIndexChanged"> </telerik:RadComboBox> <asp:RequiredFieldValidator ID="rfvcmbPais" runat="server" Display="Dynamic" ForeColor="Red" ControlToValidate="cmbPais" ErrorMessage="Campo Obligatorio"> </asp:RequiredFieldValidator> </td> </tr> <tr> <td style="width: 150px"> <asp:Label ID="lbDivisionTerritorial" runat="server" Text="División Territorial"></asp:Label> </td> <td> <telerik:RadComboBox ID="cmbDivisionTerritorial" Runat="server" Width="350px"> </telerik:RadComboBox> </td> </tr> <tr> <td colspan="2"> <telerik:RadButton ID="RadButton1" runat="server" causesvalidation="true" CommandName='<%# (Container is GridEditFormInsertItem) ? "PerformInsert" : "Update" %>' Text='<%# (Container is GridEditFormInsertItem) ? "Agregar" : "Guardar" %>' validationgroup="Textbox"> <icon primaryiconurl="../imagenes/save_16x16.png" /> </telerik:RadButton> <telerik:RadButton ID="RadButton2" runat="server" CausesValidation="False" CommandName="Cancel" Text="Cancelar"> <icon primaryiconurl="../imagenes/cancel.png" /> </telerik:RadButton> <asp:Label ID="Label2" runat="server" CssClass="opcionales" Text="* Opcionales"></asp:Label> </td> </tr> </table> </formtemplate> </EditFormSettings> <CommandItemTemplate> <div class="col-xs-6"> <asp:LinkButton ID="lbAgregarDirecciones" runat="server" CommandName="InitInsert" Visible='<%# !rgDirecciones.MasterTableView.IsItemInserted %>'><img style="border:2px;vertical-align:middle;" alt="" src="../imagenes/AddRecord.png"/> Agregar</asp:LinkButton> <asp:LinkButton ID="lbRefrescarDirecciones" runat="server"> <img style="border:2px;vertical-align:middle;" alt="" src="../imagenes/Refresh.png"/> Refrescar </asp:LinkButton> </div> </CommandItemTemplate> </mastertableview></telerik:RadGrid>code c #
protected void rgDirecciones_ItemDataBound(object sender, GridItemEventArgs e) { if (e.Item is GridEditFormInsertItem || e.Item is GridDataInsertItem) { GridEditFormItem editItem = (GridEditFormItem)e.Item; //insert item //Fill combobox Pais Clases.MetodosGlobales.ObtenerInformacion("ADMMPaises_getCombo"); Clases.MetodosGlobales.LlenarComboBox("cmbPais", "Nombre", "Pais", editItem, RadComboBoxFilter.StartsWith); } else { if (e.Item is GridEditFormItem && e.Item.IsInEditMode)editform { GridEditFormItem editItem = (GridEditFormItem)e.Item; //edit item RadComboBox comboPais = (RadComboBox)editItem.FindControl("cmbPais"); comboPais.SelectedValue = editItem["Pais"].Text; } } }protected void combo_SelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e) { GridEditableItem editedItem = (sender as RadComboBox).NamingContainer as GridEditableItem; GridEditFormItem item = (sender as RadComboBox).NamingContainer as GridEditFormItem; RadComboBox comboPaises = sender as RadComboBox; RadComboBox comboDivisionTerritorial = (RadComboBox)editedItem.FindControl("cmbDivisionTerritorial"); var parametrosSQL = new string[] { null, e.Value }; DataSet ds = Clases.MetodosGlobales.ObtenerInformacionObjeto("ADMMDivisionesTerritoriales_get", parametrosSQL); comboDivisionTerritorial.Text = null; comboDivisionTerritorial.EmptyMessage = "- Seleccione un valor -"; comboDivisionTerritorial.Filter = RadComboBoxFilter.StartsWith; comboDivisionTerritorial.DataSource = ds.Tables[0]; comboDivisionTerritorial.DataTextField = "Descripcion"; comboDivisionTerritorial.DataValueField = "Divisionterritorial"; comboDivisionTerritorial.DataBind(); }Regards,

Hi Team,
I am developing hybrid app using kendo mobile ui, while dragging/scrolling the page is getting refreshed and clearing all data.
I have implement pull-to-refresh = "false", but still facing the same problem
Its not reproducible in simulator, either user browser stack or android handset.
Here is the links
http://dojo.telerik.com/IMODA/ (with out data-pull-to-refresh)
http://dojo.telerik.com/IMODA/2 (with data-pull-to-refresh= false)
Could you please provide your suggestion.
Thank you,
Teja Jyothi



I support a C#.net 2012 web form application. I am thinking of adding the radeditor to the application so users can edit letters like a word document on the web. There will be letters that are to be written in several languages like Spanish, Arabic, French, English and a few other languages. When the application is running a 'generic' template letter will be loaded and the user can edit the letter in the various languages. Almost all the users will only know English and Spanish and they do not know the other languages.
Thus my few questions are about the foreign languages are:
1. Can the radeditor handle the different languages? If so, do I need to change any radeditor settings to handle these different languages? If so, what would I need to change?
2. Can the radeditor format date/time that is applicable for the languages? If so, what would I need to do to format the date/time information?

Hi,
in my webapplication I use a RadMenu that contains some RadMenuItems.
The code is the following:
<asp:Content ID="Content2" ContentPlaceHolderID="FolderContent" runat="Server"> <telerik:RadMenu RenderMode="Lightweight" ID="RadMenu1" Flow="Vertical" CssClass="mainMenu" runat="server" ShowToggleHandle="true"> <Items> <telerik:RadMenuItem Text="Leistungen" NavigateUrl="Views/Office/ServiceListView.aspx" /> <telerik:RadMenuItem Text="Warengruppen" NavigateUrl="" /> <telerik:RadMenuItem Text="Artikel" NavigateUrl="Views/Office/ArticleListView.aspx"></telerik:RadMenuItem>
When I click on MenuItem "Leistungen" the page ServiceListView.aspx in the folder Views/Office/ should be load in the MainContent and in the browser.
But it doesn't work.
I get the following error message:
System.Web.HttpException: "Vorangestellte .. können nicht zum Beenden auf oberster Verzeichnisebene verwendet werden."
How can I adjust the path without errors?

at System.Globalization.
at Telerik.Web.UI.Scheduler.
at Telerik.Web.UI.Scheduler.
at Telerik.Web.UI.RadScheduler.
at Telerik.Web.UI.RadScheduler.
at System.Web.UI.Control.
at System.Web.UI.Control.
at Telerik.Web.
at Telerik.Web.
at Telerik.Web.
at Telerik.Web.UI.RadAjaxControl.
at System.EventHandler.Invoke(
at System.Web.UI.Control.
at System.Web.UI.Control.
at System.Web.UI.Page.
