
var TIMEOUT_DURATION = 1200000;var timerID = null;function onLogoutTimeout(){ $("a").each(function () { var isLogoutLink = jQuery(this).attr("id").toString().search(new RegExp(/signoutLink/i)); if (isLogoutLink >= 0) document.location = this.href; });}function onResetTimer(){ clearTimeout(timerID); timerID = setTimeout("onLogoutTimeout()", TIMEOUT_DURATION);}$(document).ready(function (){ timerID = setTimeout("onLogoutTimeout()", TIMEOUT_DURATION); $(this).mousemove(function (e) { onResetTimer() }); $(this).keydown(function (e) { onResetTimer() });});<%@ Page Title="" Language="C#" MasterPageFile="~/Includes/MasterPages/GofrPortalMasterPage.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Organization_Admin_Users_Default" Culture="auto" UICulture="auto" %><asp:Content ID="Content1" ContentPlaceHolderID="Head" runat="Server"></asp:Content><asp:Content ID="Content2" ContentPlaceHolderID="PageTitle" runat="Server"> <asp:Localize runat="server" meta:resourcekey="PageTitle"></asp:Localize></asp:Content><asp:Content ID="Content3" ContentPlaceHolderID="MainContent" runat="Server"> <telerik:RadCodeBlock ID="rcbCodeBlock" runat="server"> <script type="text/javascript"> if (typeof SubscribeToWindowClose == "function") { SubscribeToWindowClose("rwCreateUser", OnCreateUserWindowClose); SubscribeToWindowClose("rwEditUser", OnCreateUserWindowClose); } function OnCreateUserWindowClose(args) { var userGridAjaxPanel = $find("<%= rapUserGrid.ClientID %>"); userGridAjaxPanel.ajaxRequest("Rebind"); } </script> </telerik:RadCodeBlock> You can add users by clicking on the plus icon or modify them by clicking on their email address.<br /> <br /> <telerik:RadAjaxPanel ID="rapUserGrid" runat="server" OnAjaxRequest="OnUserGridAjaxRequest" LoadingPanelID="loadingPanel"> <telerik:RadGrid ID="rgUser" runat="server" EnableEmbeddedSkins="False" Skin="GofrDefault" GridLines="None" AutoGenerateColumns="False" OnItemDeleted="OnItemDeleted" OnNeedDataSource="OnNeedUsersDataSource" OnDeleteCommand="OnDeleteUser" AllowSorting="true"> <MasterTableView DataKeyNames="AssetID" CommandItemDisplay="Top" meta:resourcekey="GridMasterTableView"> <Columns> <telerik:GridButtonColumn ButtonType="ImageButton" ConfirmText="Are you sure you want to delete this user?" ConfirmTitle="Confirm Delete" UniqueName="DeleteColumn" CommandName="Delete" ImageUrl="~/Skins/GofrDefault/Grid/Delete.gif" ItemStyle-Width="1em" meta:resourcekey="UserGridDeleteColumn"> </telerik:GridButtonColumn> <telerik:GridHyperLinkColumn HeaderText="Email Address" SortExpression="EmailAddress" ItemStyle-Width="30em" DataTextField="EmailAddress" DataNavigateUrlFields="AssetID" DataNavigateUrlFormatString="javascript:OpenRadWindow_NoReturn('rwEditUser', {{'UserID':{0}}})" meta:resourcekey="UserGridEmailColumn"> </telerik:GridHyperLinkColumn> <telerik:GridBoundColumn DataField="FirstName" HeaderText="First Name" SortExpression="FirstName" meta:resourcekey="UserGridFirstNameColumn"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="LastName" HeaderText="Last Name" SortExpression="LastName" meta:resourcekey="UserGridLastNameColumn"> </telerik:GridBoundColumn> </Columns> <CommandItemTemplate> <div class="gridCommandItemDiv"> <asp:HyperLink runat="server" CssClass="gridCommandItem" Text="<%$ Resources:VirtualOfficeResources, CreateUserLabel %>" NavigateUrl="javascript:OpenRadWindow_NoReturn('rwCreateUser', null, null)" ImageUrl="~/Skins/GofrDefault/Grid/AddRecord.gif" ToolTip="Create User"></asp:HyperLink> </div> </CommandItemTemplate> </MasterTableView> <FilterMenu EnableEmbeddedSkins="False"> </FilterMenu> <HeaderContextMenu EnableEmbeddedSkins="False"> </HeaderContextMenu> </telerik:RadGrid> </telerik:RadAjaxPanel> <telerik:RadAjaxLoadingPanel ID="loadingPanel" runat="server" Transparency="0" IsSticky="true"> <asp:Panel ID="innerLoadingPanel" runat="server" CssClass="innerLoadingPanel"> <table> <tr> <td> <asp:Image runat="server" ImageUrl="~/Skins/GofrDefault/Common/loading.gif" /> </td> <td style="color: White; padding-left: 1em; font-size: larger"> <asp:Localize runat="server" Text="<%$ Resources:VirtualOfficeResources, LoadingLabel %>"></asp:Localize> </td> </tr> </table> </asp:Panel> <ajax:AlwaysVisibleControlExtender runat="server" HorizontalSide="Center" VerticalSide="Middle" VerticalOffset="150" HorizontalOffset="100" TargetControlID="innerLoadingPanel"> </ajax:AlwaysVisibleControlExtender> </telerik:RadAjaxLoadingPanel></asp:Content>Here is a code sample of my test page.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="junk2.aspx.cs" Inherits="Testing.junk2" %><%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %><%--<%@ Register Src="~/CustomControls/Header.ascx" TagPrefix="uc1" TagName="Header" %>--%><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <div> <telerik:RadScriptManager runat="server" ID="rsm"> </telerik:RadScriptManager> <telerik:RadTextBox runat="server" ID="txtFriendly" Width="400px" Skin="Silk"></telerik:RadTextBox> <asp:RequiredFieldValidator runat="server" ID="RequiredFieldValidator1" ControlToValidate="txtFriendly" Display="Dynamic" ErrorMessage=" * required" CssClass=" text-danger"/> <telerik:RadTextBox runat="server" ID="txtSubject" Width="400px" Skin="Silk" ></telerik:RadTextBox> <%-- <asp:RequiredFieldValidator runat="server" ID="RequiredFieldValidator5" ControlToValidate="txtSubject" Display="Dynamic" ErrorMessage=" * required" CssClass=" text-danger"/> --%> <telerik:RadWindowManager ID="RadWindowManager1" runat="server"> </telerik:RadWindowManager> <asp:Button runat="server" ID="btntest" OnClick="btntest_Click" Text="test" CausesValidation="false" /> </div> </form></body></html>
And the codebehind:
protected void btntest_Click(object sender, EventArgs e) { RadWindow newWindow = new RadWindow(); newWindow.NavigateUrl = "http://www.google.com"; newWindow.VisibleOnPageLoad = true; RadWindowManager1.Windows.Add(newWindow); }
If I comment out either (or both) of the 2 RequiredFieldValidator's, the modal displays. It doesn't matter which one is commented.
If both are on the page, I get no modal dialog.
We are using v2016.3.1018.45
Hi
I am exporting a grid to pdf following various examples, and I am using the RadGrid_ItemCreated event successfully to have alternating row styles but I haven't found any way to set the font size.
Existing code is :
Protected Sub FormatGridItem(item As GridItem)
If TypeOf item Is GridHeaderItem Then
For Each cell As TableCell In item.Cells
cell.Style("font-family") = "Arial"
cell.Style("text-align") = "left"
cell.Style("vertical-align") = "middle"
Next
End If
' Dim dataItems As GridItem() = View.GetItems(GridItemType.Item)
If TypeOf item Is GridDataItem Then
item.Style("Font-family") = "Arial"
Select Case item.ItemType
Case GridItemType.Item
item.Style("background-color") = "#DDDDDD"
item.Style("Font-size") = "10pt" ' no effect
Exit Select
Case GridItemType.AlternatingItem
item.Style("background-color") = "#FFFFFF"
item.Style("Font-size") = "10pt" ' no effect
Exit Select
Case GridItemType.Header
item.Font.Bold = True
Exit Select
Case GridItemType.Footer
item.Style("background-color") = "#FFFFFF"
Exit Select
End Select
End If
End Sub
how can I set the font size? I have tried using px, pt, and em but it does not change.
Please advise. I haven't seen any code on this; maybe it is not possible or has to be done somewhere else entirely.
Thanks
Clive
<script type="text/javascript">window.onresize = function() { var rotatorElement = document.getElementById("ContentPlaceHolder1_RadRotator1" + "_Div"); rotatorElement.RadResize(); } </script>
HTML5 deprecates the summary attribute on a <table> element. So I want to assign an empty text to that attribute.
How can I do that?
Your help is appreciated.

I have a RadMenu within a RadPanelBar.
(The actual arrangement is RadPanelBar-Items-RadPanelItem-ContentTemplate and then a set of Bootstrapped Divs containing various controls.)
The problem is that, unlike the RadComboBoxes within the RadPanelBar, the RadMenu will not expand outside the RadPanelBar area. Much of the fairly long menu is not visible and not accessible.
Suggestions?