Hi,
I have a weird issue with the ribbon menus.
I have a ribbon configured in this way
<
telerik:RadRibbonBar
ID
=
"RadRibbonBar1"
runat
=
"server"
>
<
Tabs
>
<
telerik:RibbonBarTab
runat
=
"server"
Text
=
"tab1"
>
<
telerik:RibbonBarGroup
Text
=
"group1"
>
<
Items
>
<
telerik:RibbonBarMenu
Size
=
"Large"
Text
=
"menu1"
>
<
Items
>
<
telerik:RibbonBarMenuItem
Text
=
"submenu1"
>
<
Items
>
<
telerik:RibbonBarMenuItem
Text
=
"item1"
></
telerik:RibbonBarMenuItem
>
<
telerik:RibbonBarMenuItem
Text
=
"item2"
></
telerik:RibbonBarMenuItem
>
</
Items
>
</
telerik:RibbonBarMenuItem
>
<
telerik:RibbonBarMenuItem
Text
=
"submenu2"
></
telerik:RibbonBarMenuItem
>
</
Items
>
</
telerik:RibbonBarMenu
>
</
Items
>
</
telerik:RibbonBarGroup
>
</
telerik:RibbonBarTab
>
</
Tabs
>
</
telerik:RadRibbonBar
>
- Click on the menu1 item, the menu opens
- Move the mouse over the submenu1 item, the submenu opens
- Now move the mouse over the submenu2 item, the previous submenu closes
- Move again the mouse over submenu1, the submenu DOESNT open anymore!
Tested on 2015.2.623.40 and 2015.2.623.45
Any idea on how to fix this?
Thanks
Hi,
we have hierarchical radgrid where on expansion of main grid it expands and shows a detail table. each detail table will have multiple records of either type A or Type B. we need to show only one record of type A and one record type B on page load.
The first column of detail table will have an expand button, on click of this it should display all type A rows from client side, and on click of that button it should hide all those rows.
I don't want 3 level hierarchy. since the hidden rows and row with expand button belongs to same level
Hi :)
Since a few days my file upload isn't working. In my opinion i didn't change anything. Is there any possibilty to check why my image cannot upload? I checked the response header of the image post and got "Invalid characters" but ist e normal file name xy.png and I got AllowedFileExtensions -> png.
Can I check what FileName is getting through? I alawys get this red dot which stands for file upload failed.
Thx for your help
Gabriel
Hello,
Is it possible to show modal Telerik AjaxLoadingPanel control from <asp:UpdateProgress section ?
Here is some example but only with css.
http://blog.oscarscode.com/dot-net/use-updateprogress-to-cover-screen/
Thank you
Best regards
Vasssek
Hi,
I want to show a pop up message(RadWindow or alert) when addnewrecordbutton is clicked.
How can I add a JavaScript method for click event.
Thanks
I use the RadEditor in my RadGrid and vant remove padding and color around the editor.
RenderMode="Classic" And Skin="Silk"
See attached image.
How?
Telerik RadDateTimePicker is not working after i register script using ScriptManager.RegisterStartupScript in C# code
Code : ScriptManager.RegisterStartupScript(Page, typeof(Page), "mykey", "showSummaryPopup('TEst Message')", true);
<telerik:RadDateTimePicker id="txtSendingScheduleDate" runat="server" skin="Vista" EnableAjaxSkinRendering="true" EnableViewState="true"following the demo here - http://demos.telerik.com/aspnet-ajax/scheduler/examples/export/defaultcs.aspx
I get a script error on ": 'demo' is undefined" on "demo.ajaxManager = $find("ctl03_RadAjaxManager1")"
here is the script:
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RadScheduler1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadScheduler1" LoadingPanelID="RadAjaxLoadingPanel1"></telerik:AjaxUpdatedControl>
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadScriptBlock runat="Server" ID="RadScriptBlock1">
<script type="text/javascript">
/* <![CDATA[ */
Sys.Application.add_load(function () {
demo.ajaxManager = $find("<%= RadAjaxManager1.ClientID %>");
});
/* ]]> */
(function () {
var demo = window.demo = window.demo || {};
window.Export = function (sender, e) {
demo.ajaxManager.__doPostBack(sender.name, "");
}
}());
</script>
</telerik:RadScriptBlock>
Hi Telerik:
I am using .skin file and would to know what properties can be set via the template
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
...
<
telerik:RadTextBox
runat
=
"server"
Skin
=
"MetroTouch"
>
</
telerik:RadTextBox
>
...
I tried Height and CssClass, but that did not get layered onto the control.
Phil