Hello,
I'm using Telerik UI for ASP.NET AJAX build 2017.1.118.40 with the Metro theme.
My application has many RadGrid instances, and for some reason none of them are showing column checkbox selections correctly in their header context menus.
I've attached a screenshot to demonstrate. You'll see that the columns that should be checked (they are currently visible in the grid) are shown using a light blue color - but they aren't actually checked. If I explicitly toggle the checkbox (by clicking it), then it appears as expected, but only until the next postback.
I thought I might have some styles conflicting with this theme, but I've removed all my application's CSS (as a test), and nothing changed.
Has anyone else encountered this? Any thoughts or feedback would be greatly appreciated.
- Mark R.
Hi,
My RadComboBox in aspx:
<telerik:RadAutoCompleteBox runat="server" id="RadAutoCompleteBox" onclientrequesting="requesting"> </telerik:RadAutoCompleteBox>
I have array (50 items) in Javascript. Details item:
- Id- this element set to value selected item;
- Text ( Account Number + Description) - this element set to selection list in RadAutoCompleteBox;
- Account Number - this element set to input;
I would like update RadAutoCompleteBox in function requesting in Javasctipt.
function requesting(sender, eventArgs) {
var value = sender.get_text();
for (var j = 0; j < myArray.length; j++) {
if (myArray[j][1].indexOf(value) > -1) {
????????????;
}}};
Hello everyone,
I want to change my date input format in client side using Javascript.
I saw there is a get_dateInput but I don't know how to use it to set the RadMonthYearPicker format to "MMMM".
Do anyone have a simple example?
Thank you in advance.
Hello everyone,
I want to change my date input format in client side using Javascript.
I saw there is a get_dateInput but I don't know how to use it to set the RadMonthYearPicker format to "MMMM".
Do anyone have a simple example?
Thank you in advance.
Hi there,
I am trying to use radconfirm instead of the asp.net confirm window. Following is my code for the asp.net delete confirmation window:
function Confirm_Delete() {
if (confirm("Are you sure you want to delete this?") == true)
return true;
else
return false;
}
<
asp:Button
ID
=
"bt_Delete"
runat
=
"server"
Text
=
"Delete"
onclick
=
"bt_Delete_Click"
OnClientClick
=
"return Confirm_Delete()"
/>
function confirmCallBackFn(arg) {
return arg;
}
function Confirm_Delete() {
radconfirm('<
h3
style=\'color: #333399;\'>Are you sure you want to delete this?</
h3
>', confirmCallBackFn, 330, 100, null, 'Delete Confirmation');
}
Hi,
When I load the boostrap skin, the formatting on the editor is not aligned properly (see attached screenshot)
My code is as follows.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
/* These allow the image editor to have a scroll bar */
/* This is very much a hack. May cause unexpected problems. Remove if necessary */
/* http://www.telerik.com/forums/need-to-learn-rad-image-editor-functioning */
#horizontalScrollHint, #verticalScrollHint {
display: none !important;
}
.RadImageEditor .rieContentArea {
overflow: auto !important;
}
</style>
<telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server" />
</head>
<body>
<form id="form1" runat="server">
<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
<Scripts>
<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" />
<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" />
<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js" />
</Scripts>
</telerik:RadScriptManager>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
</telerik:RadAjaxManager>
<div>
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server">
<telerik:RadImageEditor ID="RadImageEditor1" runat="server" ToolsFile="~/ToolsFile.xml" Skin="Bootstrap" ExternalDialogsPath="../ImageEditorDialogs">
<tools>
<telerik:ImageEditorToolGroup>
<telerik:ImageEditorTool Text="customSave" CommandName="customSave" />
</telerik:ImageEditorToolGroup>
</tools>
</telerik:RadImageEditor>
<telerik:RadComboBox RenderMode="Lightweight" ID="fontFamily" runat="server" AutoPostBack="false" EnableViewState="false"
CausesValidation="false" Width="130px">
<Items>
<telerik:RadComboBoxItem Text="Arial" Value="arial" />
<telerik:RadComboBoxItem Text="Times New Roman" Value="times new roman" />
<telerik:RadComboBoxItem Text="Verdana" Value="verdana" />
<telerik:RadComboBoxItem Text="Tahoma" Value="tahoma" />
<telerik:RadComboBoxItem Text="Courier New" Value="courier new" />
<telerik:RadComboBoxItem Text="Georgia" Value="georgia" />
<telerik:RadComboBoxItem Text="Ms Sans Serif" Value="ms sans serif" />
</Items>
</telerik:RadComboBox>
<script type="text/javascript">
Telerik.Web.UI.ImageEditor.CommandList["customSave"] = function (imageEditor, commandName, args) {
imageEditor.saveImageOnServer("Sunset", true);
}
</script>
</telerik:RadAjaxPanel>
</div>
</form>
</body>
</html>
Thanks!
Good day to forum members!
I have such a question-
what operations can I do with tags like #=dataitem.value# ?
In demos I saw expressions like
#=dataitem.value + dataitem.value1 + ...#
So, what else can I do with these ones?
Can I use any math function?
Can I round result?
One yet thing - can I work with #=dataitem.value# like operator in my .cs file? For example, convert it to value type? Something like decimal d=Convert.ToDouble("#=dataitem.value {0}", 1); ?
I'm not successful in any of these things;
Sorly, I'm new in telerik and ASP.