Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
83 views
Hi,

Is it possible to control what appears in the "Files of type" combo in the "Choose file to upload" dialog?
If I want to upload just .xyz files then I possible want just .xyz to appear in the "Files of type" combo.
But I guess it's not possible?

Regards,
Peter
Genady Sergeev
Telerik team
 answered on 21 Dec 2010
1 answer
138 views
Hello,
         I have a RadAsyncUpload control inside UpdatePanel(AJAX). When I upload the file, the upload never completes. I tried with the latest 2010 version. I still cant upload the file when RadAsyncUpload is insde the UpdatePanel. If I remove the UpdatePanel, then I m able to upload the file, but the entire screen refreshes, which is what I want to avoid.


Thanks,
Bharani
Genady Sergeev
Telerik team
 answered on 21 Dec 2010
4 answers
215 views
There are several examples to enable Dynamic Data support on a gridview without using the full Dynamic Data scaffolding (global.asax + dynamicdata folder) such as on this video

I followed along with the example as shown in the video and I was able to get gridview to work correctly with dynamic support.

However, the same steps do not work with DynamicRadGrid. I get the error:
Could not determine a MetaTable. A MetaTable could not be determined for the data source 'EntityDataSource1' and one could not be inferred from the request URL. Make sure that the table is mapped to the dats source, or that the data source is configured with a valid context type and table name, or that the request is part of a registered DynamicDataRoute.

Here are steps I took:
1. In the Page_Init:
RadGrid1.EnableDynamicData(typeof(Plan));
2. Made a MetaData Class:
[MetadataType(typeof(PlanMD))]
    public partial class Plan
    {
        public class PlanMD
        {
            [StringLength(50), Required]
            public string Name { get; set; }
        }
    }
3. Added a validation summry on the page
4. Add a dynamicradgrid on the page with DynamicColumn
<dynamic:DynamicRadGrid ID="RadGrid1" runat="server" AllowAutomaticInserts="True"
            AllowAutomaticUpdates="True" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False"
            AutoGenerateDeleteColumn="True" AutoGenerateEditColumn="True" DataSourceID="EntityDataSource1"
            GridLines="None">
            <MasterTableView AllowAutomaticInserts="False" CommandItemDisplay="Top" DataKeyNames="Id"
                DataSourceID="EntityDataSource1">
                <CommandItemSettings ExportToPdfText="Export to Pdf"></CommandItemSettings>
                <RowIndicatorColumn>
                    <HeaderStyle Width="20px"></HeaderStyle>
                </RowIndicatorColumn>
                <ExpandCollapseColumn>
                    <HeaderStyle Width="20px"></HeaderStyle>
                </ExpandCollapseColumn>
                <Columns>
                    <dynamic:DynamicGridBoundColumn DataField="Name" HeaderText="Name" UniqueName="Name">
                    </dynamic:DynamicGridBoundColumn>
  
                </Columns>
            </MasterTableView>
        </dynamic:DynamicRadGrid>


Please advise if DynamicRadgrid is even designed to work in this scenario. Thanks
Radoslav
Telerik team
 answered on 21 Dec 2010
3 answers
419 views
Hello, having some issues with having a TextBox in an ItemTemplate.

First it was the text box not accepting "space" but i found the workaround in the forums.
http://www.telerik.com/help/aspnet-ajax/listbox-space-ignored-textbox-itemtemplate.html

Now, typing text into the textboxes creates unwanted behavior when using the "s" character. The behavior im seeing is when typing the "s" charater in the RadListBoxItem.Textbox the selection attempts a changes to the next visible list box item. the focus bounces back and forth between the visible items (I only have 2 items visible at any given time due to size contraints.). I've looked high and low on a way to disable the listbox keyboard shortcuts but found nothing.

Im unsure how many other keyboard shortcuts are associated with this control, but since i need a textbox (well, a couple) I'd like to simply turn off keyboard support for this control.

Heres the markup:

 

<telerik:RadListBox runat="server" ID="listBoxSlideShowActiveItems" 
    SelectionMode="Multiple" EnableDragAndDrop="true" 
    AllowDelete="false" AllowReorder="true" Height="200px" Width="370px" AllowTransferOnDoubleClick="false">
    <ItemTemplate>  
        <fieldset>
            <legend style="font-size:8pt;padding-bottom:2px;">Slide Description</legend>
            <table border="0" width="100%">
                <tr>
                    <td style="width:80px;" valign="top">
                        <asp:Image ID="imageActiveItemThumbnail" runat="server" CssClass="thumbnailImageSlideShowLarge" ImageUrl="~/SiteImages/spacer.gif" />
                    </td>
                    <td valign="top">
                        <table border="0" width="100%">
                            <tr>
                                <td>Text:</td>
                                <td><asp:TextBox ID="textActiveItemText" runat="server" Width="170"></asp:TextBox></td>
                            </tr>
                            <tr>
                                <td>Href</td>
                                <td><asp:TextBox ID="textActiveItemHref" runat="server" Width="170"></asp:TextBox></td>
                            </tr>
                            <tr>
                                <td>Target:</td>
                                <td>
                                    <telerik:RadComboBox ID="comboActiveItemTarget" runat="server" Width="178px">
                                        <Items>
                                            <telerik:RadComboBoxItem Text="_blank" Value="_blank" Selected="True" />
                                            <telerik:RadComboBoxItem Text="_parent" Value="_parent" />
                                            <telerik:RadComboBoxItem Text="_search" Value="_search" />
                                            <telerik:RadComboBoxItem Text="_self" Value="_self" />
                                            <telerik:RadComboBoxItem Text="_top" Value="_top" />
                                        </Items>
                                    </telerik:RadComboBox>
                                </td>
                            </tr>
                        </table>
                    </td>
                </tr>
            </table>
        </fieldset>
    </ItemTemplate>
    <Items></Items>
</telerik:RadListBox>
<script type="text/javascript">
    // RadListBox documented workaround for textbox in item template
  
    var radListBoxKeyDown = Telerik.Web.UI.RadListBox.prototype._onKeyDown;
    Telerik.Web.UI.RadListBox.prototype._onKeyDown = function (e) {
        if (e.keyCode == Sys.UI.Key.space) {
            return;
        }
        else {
            radListBoxKeyDown.apply(this, arguments);
        }
    }
</script>

Thanks in advance!

Genady Sergeev
Telerik team
 answered on 21 Dec 2010
3 answers
162 views
Hi,

    I use RadEditor inside ModalpopUpExtender in our Project.. I use ImageManager Tool in RadEditor.. When i click on the Image Manager tool, its dialog window gets opened behind Rad Editor..
<telerik:RadEditor ID="radEditorDescription" NewLineBr="false" EnableResize="false"
                                                            runat="server" Width="620px" TabIndex="29" CssClass="maarginleft20 marginBottom20">
                                                            <Tools>
                                                                <telerik:EditorToolGroup Tag="MainToolbar">
                                                                    <%--<telerik:EditorTool Name="AjaxSpellCheck" />--%>
                                                                    <telerik:EditorTool Name="FindAndReplace" ShortCut="CTRL+F" />
                                                                    <telerik:EditorTool Name="Undo" ShortCut="CTRL+Z" />
                                                                    <telerik:EditorTool Name="Redo" ShortCut="CTRL+Y" />
                                                                    <telerik:EditorTool Name="Indent" />
                                                                    <telerik:EditorTool Name="Outdent" />
                                                                    <telerik:EditorTool Name="TableWizard" />
                                                                    <telerik:EditorTool Name="InsertSymbol" />
                                                                    <telerik:EditorTool Name="JustifyLeft" />
                                                                    <telerik:EditorTool Name="JustifyRight" />
                                                                    <telerik:EditorTool Name="JustifyFull" />
                                                                </telerik:EditorToolGroup>
                                                                <telerik:EditorToolGroup Tag="FileManagers">
                                                                    <telerik:EditorTool Name="ImageManager" />
                                                                </telerik:EditorToolGroup>
                                                                <telerik:EditorToolGroup>
                                                                    <telerik:EditorTool Name="Bold" />
                                                                    <telerik:EditorTool Name="Italic" />
                                                                    <telerik:EditorTool Name="Underline" />
                                                                    <telerik:EditorSeparator />
                                                                    <telerik:EditorTool Name="ForeColor" />
                                                                    <telerik:EditorTool Name="BackColor" />
                                                                    <telerik:EditorSeparator />
                                                                    <telerik:EditorTool Name="FontName" />
                                                                    <telerik:EditorTool Name="RealFontSize" />
                                                                </telerik:EditorToolGroup>
                                                            </Tools>
                                                            <CssFiles>
                                                                <telerik:EditorCssFile Value="~/App_Themes/Web20/Editor.css" />
                                                            </CssFiles>
                                                        </telerik:RadEditor>
  
  
  
<ajaxToolkit:ModalPopupExtender ID="ModalPopupSwitchUserMenu" runat="server" TargetControlID="linkButtonDesc"
                                            PopupControlID="EditorPanel" BackgroundCssClass="watermarked" BehaviorID="SwitchUserMenuPopup"
                                            X="200" Y="50" RepositionMode="RepositionOnWindowResize" Drag="true" PopupDragHandleControlID="MyOptionsTitleBar"
                                            CancelControlID="ImageButtonClose" OkControlID="ImageButton1" />
Please Guide me..
Rumen
Telerik team
 answered on 21 Dec 2010
1 answer
137 views
Why is there an ItemInsert event and an ItemCommand event? Why not case out all the CRUD events in the ItemCommand event? Does it have something to do with having AllowAutomaticInserts turned on?

Are these events where I should get the values from my EditFormTemplate controls and assign them to the Update/Delete/Insert parameters of my ObjectDataSource?

I'm a newbie, obviously. Sorry for all the questions at once.
Princy
Top achievements
Rank 2
 answered on 21 Dec 2010
0 answers
141 views
I need to be able to select the null value to a RadComboBox bind to an EntityDataSource,

in WPF
there is a ClearSelectionButtonVisibility, what is the alternative in ASP.NET AJAX? without doing it manually

thanks in advance
Alberto
Top achievements
Rank 1
 asked on 21 Dec 2010
1 answer
57 views
i am using radtreeview in my page. while double clicking the tree node i want to open the rad window. before that i want  to  display ajax loading panel.
how can i do this. help me.
thanks .
priya.
Shinu
Top achievements
Rank 2
 answered on 21 Dec 2010
9 answers
287 views
I hope this is the right forum topic...

I'm having a situation where Telerik is generating a URL to a javascript file which is cached at the client.  When we release a new build the same URL is produced but the content of the javascript is different.  However, because the client is caching the file (or the URL, I should say) the correct javascript content isn't being downloaded.

Our environment is as such:

Telerik version 10.2.7.13
Windows Server 2003
.Net Framework 4.0
ASP.NET Forms

I don't have anything else to go one from here to troubleshoot the problem any further.  We've search for caching issues within ASP.NET, IIS, etc...  The way we found the problem was by javascript failing on an unhandled exception.  The javascript is from a WebResource.axd... We grabbed the content of the javascript as well as the URL, clear the browser cache and requested the URL, again.  We found the URL being generated were Identical but the javascript content was different.  Any help getting around this issue is greatly appreciated.  We've narrowed it down to Telerik's scripting manager generating these URLs but we don't know how to make it generate all new keys in the case of a new release of our code.

Any help on this matter is very much appreciated.

Regards,
-vic
Simon
Telerik team
 answered on 21 Dec 2010
1 answer
124 views
Can you add a property to the RadScriptBlock such that at render time we can specify WHERE the script tag renders?

I'd like to send my scripts to the bottom of the page on Render...
Radoslav
Telerik team
 answered on 21 Dec 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?