Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
99 views
Are there any plans to add flash fallback support? I can't even consider using this control without it as I need to be able to support non-HTML5 browsers as well.
Tsvetoslav
Telerik team
 answered on 21 Oct 2013
3 answers
189 views
Hello all,

I have a request to allow the user to search the Grid Date Column  by just entering the Month Name or Number from the Date part, and search the results.

I had tried some code for Custom filters..but I did not get the desired result.

Please find the screen shot for the above scenario.

Any suggestions are welcome.

Thank You

Radoslav
Telerik team
 answered on 21 Oct 2013
2 answers
108 views
I am having issues with focusing the Radmenu using access keys in chrome browser.
It is working fine in internet explorer and Mozilla Firefox but not at all in chrome. Only the tab and arrow key navigation is working.

I checked the demo here but this is also not working in chrome. 

http://demos.telerik.com/aspnet-ajax/menu/examples/functionality/keyboardsupport/defaultcs.aspx

I am using chrome Version 30.0.1599.101 m

Please let me know if there is any fix available for this issue.

Thanks
Gaurav
Gaurav
Top achievements
Rank 1
 answered on 21 Oct 2013
3 answers
102 views
Hello,

I was wondering whether I am able to do batch input with auto-generated columns?

This is my grid declaration.

<telerik:RadGrid ID="rgTimeDetails" runat="server" OnNeedDataSource="rgTimeDetails_NeedDataSource" OnColumnCreated="rgTimeDetails_ColumnCreated" CellSpacing="0" GridLines="None">
<MasterTableView EditMode="Batch" CommandItemDisplay="Top" DataKeyNames="timeid,staffid">
<BatchEditingSettings OpenEditingEvent="DblClick" EditType="Row" />
</MasterTableView>
</telerik:RadGrid>

Whenever I click new row, a row appears but it is empty - no textboxes or anything. Am I missing something?

Regards, Paul.
Princy
Top achievements
Rank 2
 answered on 21 Oct 2013
1 answer
499 views
Hi, 
I am trying RequiredFieldValidator with RadDropDownList but i cannot manage to capture when no item is selected.
Please, see below the code which implements it. 
It is possible that setting DefaultMessage causes that always there is an item selected and requiredfieldvalidator never notifies that?


<
telerik:RadDropDownList ID="Indicator_Period" runat="server" DefaultMessage="Select period">
                                    <Items>
                                        <telerik:DropDownListItem Text="Dayly" Value="d" />
                                        <telerik:DropDownListItem Text="Monthly" Value="m" />
                                        <telerik:DropDownListItem Text="Bimonthly" Value="b" />
                                        <telerik:DropDownListItem Text="Three-monthly" Value="t" />
                                        <telerik:DropDownListItem Text="Four-monthly" Value="c" />
                                        <telerik:DropDownListItem Text="Six-monthly" Value="s" />
                                        <telerik:DropDownListItem Text="Yearly" Value="a" />
                                    </Items>
                                </telerik:RadDropDownList>
                                <asp:RequiredFieldValidator ID="Indicator_Period_RequiredFieldValidator" runat="server" ErrorMessage="*" ControlToValidate="Indicator_Period" ValidationGroup="AddIndicatorValidationGroup" ForeColor="Red"></asp:RequiredFieldValidator>
 
<telerik:RadButton ID="RadButton1" runat="server" Text="Save" ButtonType="StandardButton"
        OnClick="SaveIndicator" ValidationGroup="AddIndicatorValidationGroup">
        <Icon PrimaryIconCssClass="rbSave" PrimaryIconLeft="4" PrimaryIconTop="4"></Icon>
    </telerik:RadButton>
Shinu
Top achievements
Rank 2
 answered on 21 Oct 2013
1 answer
76 views
Hi,

I am using a RAD TreeView which is a data bound treeview. I need to get its Setting saved for user.
Such that when the user logs in next time, the nodes that were expanded in user's last session, remain expanded and node that was selected remain selected.

Thanks in advance
Sheetal
Bozhidar
Telerik team
 answered on 21 Oct 2013
2 answers
54 views
Hello,
We use a grid with 2 levels with inline edit, and the same CancelImageUrl works fine on the first level, but not on the second level, where the default cancel image is always shown (see screenshot attached)

<radG:GridEditCommandColumn ButtonType="ImageButton" UniqueName="ChildEditCommandColumn" HeaderStyle-Width="3%" CancelImageUrl="~/App_Themes/Cerib/Images/Buttons/FlecheGauche.gif" />

Thanks
Alexandru-Anton
Top achievements
Rank 1
 answered on 21 Oct 2013
4 answers
127 views
Hi

I've got Rad Rating on user control when i add Rad Tooltip manager this affects the Rating control rendering and only showing a ordered list rather than proper rating control.

This problem is in IE only.

Rating displays normal, if i remove Tooltip manager from the user control.


Thanks

Nokhaz.
Marin Bratanov
Telerik team
 answered on 21 Oct 2013
1 answer
54 views
<telerik:RadContextMenu ID="Menu1"  runat="server" EnableEmbeddedSkins="false" Skin="NextGen"
        ClickToOpen="false" OnClientItemClosed="CloseSubMenu" EnableEmbeddedBaseStylesheet="false" TabIndex="0" ToolTip="Customise Grid">
        <Items>
            <telerik:RadMenuItem Text="Customise" Value="0" Enabled="true" TabIndex="0" ToolTip="Customise">
            </telerik:RadMenuItem>
            <telerik:RadMenuItem Text="Save " Value="1" Enabled="true" TabIndex="0" ToolTip="Save Column Width">
            </telerik:RadMenuItem>
        </Items>
        <Targets>
            <telerik:ContextMenuControlTarget ControlID="lnkCutomize"/>
        </Targets>
    </telerik:RadContextMenu>

I am opening the menu item on the link button key and click event. but after the focus gone by pressing tab button from the menu. menu is not getting closed. what should i do to close my menu after it lost focus.

thanks
Rajeev
Dimitar Terziev
Telerik team
 answered on 21 Oct 2013
4 answers
224 views
Hi Guys, i hope someone can help me with my Problem.

It adding a bunch of RadComboBox dynamiclly on PageLoad to my Page. This works without Problems.
But if i want to find any Combobox by $find i always get Null back.

Has this something to do with kind of adding?

Here is my Code:

Public Sub MenuHrefAnlegen(ByVal endVal As Integer, ByVal strArrQuerystring As Array)
 
    Dim width As String = "width:199px;"
    Dim count As Integer = 1
    Dim i As Integer
    Dim startval As Integer
    startval = 1
    For i = startval To endVal
        'erzeuge menü element
 
        Dim combo As New RadComboBox()
        combo.ID = "rcbHrefAuswaehlen" & count
        combo.EnableLoadOnDemand = True
        combo.Skin = "Metro"
        combo.Items.Insert(0, New RadComboBoxItem("Über uns", String.Empty))
        combo.Items.Insert(1, New RadComboBoxItem("Baufinanzierung", String.Empty))
        combo.Items.Insert(2, New RadComboBoxItem("Denkmal-Immobilien", String.Empty))
        combo.Items.Insert(3, New RadComboBoxItem("Photovoltaik", String.Empty))
        combo.Items.Insert(4, New RadComboBoxItem("Assekuranz", String.Empty))
        combo.Items.Insert(5, New RadComboBoxItem("Kontaktseite", String.Empty))
        combo.Items.Insert(6, New RadComboBoxItem("Impressum", String.Empty))
        combo.Items.Insert(7, New RadComboBoxItem("Benutzerdefinierte Seite", String.Empty))
 
        Dim hfMenuElement As New HiddenField
        hfMenuElement.ID = "hfMenuElement" + count.ToString()
        hfMenuElement.Value = strArrQuerystring(count)
 
        MenuAusMenuPunktenZusammengesetzt.Controls.Add(New LiteralControl("<li class=""floatKill""><a href=""#"" id=""hrefm" & count & """ runat=""server"" onmouseover=""menuov('menuleft" & count & "', 'menupuffer" & count & "', 'menuright" & count & "');"" onmouseout=""menuovf('menuleft" & count & "', 'menupuffer" & i & "', 'menuright" & count & "');""><div id=""menuleft" & count & """ class=""menu_left""></div><div id=""menupuffer" & count & """ class=""menu_puffer"" style=""" & width & """>" & strArrQuerystring(count) & "</div><div id=""menuright" & count & """ class=""menu_right""></div></a><div class=""pfeil links"" style=""margin-left:15px;margin-top:8px;""></div><div class=""pfeil links"" style=""margin-top:8px;""></div><div class=""pfeil links"" style=""margin-right:15px;margin-top:8px;""></div></li>"))
        MenuAusMenuPunktenZusammengesetzt.Controls.Add(combo)
        MenuAusMenuPunktenZusammengesetzt.Controls.Add(hfMenuElement)
 
        count += 1
    Next
 
End Sub

And my find function:

            function CollectMenuElementeWithHref(sender, eventArgs) {
                var VID = $('input[id$=hfVermittlerID]').val();
                var obj = { ID: VID };
                for (var i = 1; i < 9; i++) {
                    var hfVal = $('[id$=hfMenuElement' + i + ']').val();
                     
//At this point i get Null back
                    var combo = $find("<%= rcbHrefAuswaehlen" + i + ".ClientID %>");
                    var item = combo.get_items().getItem(2);
 
                    if (hfVal) {
                        obj["pa" + i] = hfVal
                        obj["href" +1] = item.get_text()
                    }
                }
                eventArgs.set_cancel(true);
                window.location.href = 'VermittlerBearbeiten.aspx?' + $.param(obj);
            }

Thank you for reading :)
Daniel
Shinu
Top achievements
Rank 2
 answered on 21 Oct 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?