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?
Dear Support,
I am using the RadSpell control and linking it to a RadTextbox. That part works great.
<telerik:RadSpell RenderMode="Lightweight" Skin="Metro" ID="RadSpell1" runat="server" ButtonType="ImageButton" ControlToCheck="txtDescription" SpellCheckProvider="PhoneticProvider" SupportedLanguages="en-US,English" OnClientDialogClosed="SpellCheckDone" />
However, the font size and font name (Times Roman) in the popup dialog do not match the rest of my screen. I've tried setting the CssClass for the control, the font name and font size properties, and everything else I can think of but with no success. Can you provide a CSS example (or other mechanism) by which I can set the font and font size of the labels and buttons within the dialog. I attached a screenshot with arrows pointing to the text components I am referring to.
Thanks,
Mike
Hi,
I'm trying to add a event to a RadPanelBar control in a external js file. But it dosen't work. "Event not found/not known"
In ASPX File:
<script type="text/javascript" src="../Docs.js"></script>
<telerik:RadPanelBar ID="pbResult" ClientID="pbResult" runat="server" ExpandMode="SingleExpandedItem" RenderMode="Lightweight" AllowCollapseAllItems="True" Width="600px" OnItemClick="pbResult_OnItemClick" OnItemDataBound="pbResult_OnItemDataBound" Skin="DOCS" EnableEmbeddedSkins="false"></telerik:RadPanelBar>
External JS File:
require(['jquery'], function () {
$("[ClientID='pbResult']").itemClicked(function () {
ShowLoadingDialog();
});
});
I also tryed add_itemClicked method but also not working
I am attempting to determine the JQuery version and JQuery UI version that is used in Web UI 2013.3.1114.
Is there anyway in JavaScript to Show/Hide the RadMenu as a whole? I've been looking in the documentation and I can't find anything.
(.set_visible does not seem to work.)
In ItemDataBound I do this:
Private Sub grdSummary_ItemDataBound(sender As Object, e As GridItemEventArgs) Handles grdSummary.ItemDataBound '**************
For Each item As GridHeaderItem In grdSummary.MasterTableView.GetItems(GridItemType.Header)
For intLcv = 2 To item.Cells.Count - 1
If IsDate(item.Cells(intLcv).Text) And Not item.Cells(intLcv).Text.Contains(vbCrLf) Then
item.Cells(intLcv).Text = item.Cells(intLcv).Text & vbCrLf & CDate(item.Cells(intLcv).Text).ToString("ddd").ToString
End If
Next
Next
End Sub
The problem is the Date and day are right next to each other. I need about 1-2 px between
Is there any way to do this? I have attached a screen shot.