We have been using RadComboBox with Multi-select, Filter, and MarkFirstMatch. I just now realized that this is unsupported:
http://www.telerik.com/help/aspnet-ajax/combobox-usability-checkboxes.html
Even though it is unsupported, it almost works perfectly. The only issue that I've noticed is that after you check a single item, navigate away, and then come back and select additional items, the textbox is not updated with the newly selected items. For example:
<
telerik:RadComboBox
runat
=
"server"
ID
=
"testComboBox"
CheckBoxes
=
"true"
EnableCheckAllItemsCheckBox
=
"true"
CheckedItemsTexts
=
"FitInInput"
EmptyMessage
=
"Select Numbers"
AutoPostBack
=
"false"
Filter
=
"Contains"
MarkFirstMatch
=
"true"
NoWrap
=
"true"
EnableLoadOnDemand
=
"false"
OnClientTextChange
=
"OnClientTextChange"
>
<
Items
>
<
telerik:RadComboBoxItem
Value
=
"1"
Text
=
"One"
/>
<
telerik:RadComboBoxItem
Value
=
"2"
Text
=
"Two"
/>
<
telerik:RadComboBoxItem
Value
=
"3"
Text
=
"Three"
/>
<
telerik:RadComboBoxItem
Value
=
"4"
Text
=
"Four"
/>
<
telerik:RadComboBoxItem
Value
=
"5"
Text
=
"Five"
/>
</
Items
>
</
telerik:RadComboBox
>
That works well except if you select One, close the dropdown, come back and select Two and Three, when closing it the text will not display correctly- it will revent back to just displaying One. If I remove the Filter, then this issue doesn't occur. I realize that using a Filter is unsupported with multi-select, but coincidentally, if I set another unsupported option, EnableLoadOnDemand="true", then the problem is fixed! In fact, now the entire drop down functionally works perfectly, however, EnableLoadOnDemand="true" forces a postback when you start using the filter by typing into the textbox. This hinders the user's experience as filtering for the desired item(s) is now too slow since a postback occurs with every keypress.
So, my question is, is there any way to achieve the textbox refresh that EnableLoadOnDemand does without using EnableLoadOnDemand? Or, is there a nifty trick to prevent the postback with EnableLoadOnDemand without breaking the text filter? O, is there a supported way to have a multi-select dropdown with checkboxes and filtering?
<
tr
>
<
td
class
=
"adminTitle"
>Status</
td
>
<
td
class
=
"adminData"
>
<
telerik:RadComboBox
EmptyMessage
=
"Select Status"
ID
=
"ddlStatus"
EnableCheckAllItemsCheckBox
=
"true"
Filter
=
"Contains"
CheckBoxes
=
"true"
runat
=
"server"
Width
=
"298px"
ToolTip
=
"Select Status"
/>
</
td
>
</
tr
>
protected
void
Page_Load(
object
sender, EventArgs e)
{
if
(!IsPostBack)
{
ddlStatus.SetEnumDataSource<WfApprovalStatus>(exceptOrders.Cast<
int
>().ToList());
}
}
Hello
I have an issue with RadajaxManagerProxy in a Masterpage/contentpage setup.
My goal is to enable/disable (save/update/email) buttons upon saving/updating a telerik report.
The code provided below works just fine when executed under no load.
But during the day with multiple users online, the script stops enabling/disabling the buttons.
(savereport and other heavy rutines still works)
Is my approach incorrect for the task?
Any help would be highly appreciated.
regards
Mark
Master.aspx----------------------------------------------------------------
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MP.master.cs" Inherits="MP" %>
<!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>
<asp:ContentPlaceHolder id="head" runat="server">
</asp:ContentPlaceHolder>
</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>
<asp:ScriptReference Assembly="Telerik.Web.UI"
Name="Telerik.Web.UI.Common.jQuery.js">
</asp:ScriptReference>
<asp:ScriptReference Assembly="Telerik.Web.UI"
Name="Telerik.Web.UI.Common.jQueryInclude.js">
</asp:ScriptReference>
</Scripts>
</telerik:RadScriptManager>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
</AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadAjaxLoadingPanel ID="generalRadAjaxLoadingPanel" runat="server" Skin="Silk" InitialDelayTime="700" >
</telerik:RadAjaxLoadingPanel>
<div>
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
</form>
</body>
</html>
CP.aspx--------------------------------------------------------
<%@ Page Title="" Language="C#" MasterPageFile="~/MP.master" AutoEventWireup="true"
CodeFile="CP.aspx.cs" Inherits="Default3" %>
<%@ Register Assembly="Telerik.ReportViewer.WebForms, Version=9.0.15.324, Culture=neutral, PublicKeyToken=a9d7983dfcc261be"
Namespace="Telerik.ReportViewer.WebForms" TagPrefix="telerik" %>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="but_Update">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="but_Email" UpdatePanelCssClass="" />
<telerik:AjaxUpdatedControl ControlID="but_Save" UpdatePanelCssClass="" />
<telerik:AjaxUpdatedControl ControlID="ReportViewer1" UpdatePanelCssClass="" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="but_Save">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="but_Email" UpdatePanelCssClass="" />
<telerik:AjaxUpdatedControl ControlID="but_Save" UpdatePanelCssClass="" />
<telerik:AjaxUpdatedControl ControlID="ReportViewer1" UpdatePanelCssClass="" LoadingPanelID="generalRadAjaxLoadingPanel" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManagerProxy>
<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
<script type="text/javascript">
$(document).ready(function () {
});
function OpenQuoteEmail() {
alert('Email Dialog');
}
</script>
</telerik:RadCodeBlock>
<table runat="server" border="0" id="maintable" clientidmode="Static" style="width: 100%;">
<tr>
<td style="width: 250px;" valign="top">
<table width="250" border="0">
<tr>
<td>
<asp:Button ID="but_Update" runat="server" Text="Update"
Width="250px" OnClick="butUpdate_Click" TabIndex="109" />
<br />
<br />
<asp:Button ID="but_Email" runat="server" Text="E-Mail" Width="250px"
ClientIDMode="Static" OnClientClick="OpenQuoteEmail(); return false;" TabIndex="110" />
<br />
<br />
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<td>
<asp:Button ID="but_Save" runat="server" Text="Save"
Width="110px" OnClick="butSave_Click" TabIndex="120" />
</td>
<td>
<asp:Button ID="but_Cancel" runat="server" Text="Close" Width="110px"
OnClick="butCancel_Click" TabIndex="121" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td valign="top" style="height: 100%;">
<div id="rp">
<telerik:ReportViewer ID="ReportViewer1" runat="server" Height="1200px" Width="100%"
ShowParametersButton="False" ShowHistoryButtons="False" BorderColor="Gray" BorderStyle="Solid"
BorderWidth="1px" ViewMode="PrintPreview" ShowRefreshButton="False" ShowPrintPreviewButton="False"
TabIndex="99">
</telerik:ReportViewer>
</div>
</td>
</tr>
</table>
</asp:Content>
CP.cs---------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class Default3 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
but_Email.Enabled = false;
but_Email.ToolTip = "Please save document before opening email dialog";
}
protected void butSave_Click(object sender, EventArgs e)
{
but_Save.Enabled = false;
but_Email.Enabled = true;
but_Email.ToolTip = "";
// SavePrintSettings();
// SaveReports();
}
protected void butUpdate_Click(object sender, EventArgs e)
{
but_Save.Enabled = true;
but_Email.Enabled = false;
but_Email.ToolTip = "Save before opening email dialog";
// LoadReport();
}
protected void butCancel_Click(object sender, EventArgs e)
{
}
}
Is it possible to extract the edited row from a RadGrid into a DataTable object?
The examples I've seen online show how to extract the data into a HashTable, but once you do that, you lose the data type (string, datetime, ect). We're building a generic grid that can display different tables, so we don't want to have to hard code the columns/data types. If the data is in a DataTable, then it can be passed directly to a SQL stored procedure that accepts a Table Value Parameter.
Hi All,
Appearently, .doc upload on Editor - MS Word-like Experience, does not work properly.
Although it was defined to use LoadDocxContent, I'm getting error while trying to upload. Could you please help ? .docx documents work fine on async. upload.
case ".doc":
case ".docx":
RadEditor1.LoadDocxContent(e.File.InputStream);
break;
There is a requirement to display the pager according to the attached file.
Is there any pager style or CSS so that we can customize the pager style?
Current we are doing server side biding in radgrid and using radpersistencemanager.
Now we want to do client side data bind in radgrid.
Please let us know how to use radpersistencemanager in this case?
Is their way to do persistence if we can not use radpersistencemanager?
What is the default setting for RenderMode? Is there any reason why you not just set RenderMode to "Auto"?
mgm
A client site is running our ASP.NET 3.5 web-application which includes the Report Viewer control for reporting. They have recently upgraded to IE11, which must be run in native/standards mode.
In order to get the print function of the Report Viewer control working, we have upgraded the Report Viewer control to the 2012 version and have applied patches / updates as per instructions here:
https://blogs.msdn.microsoft.com/selvar/2013/12/20/reportviewer-2012-control-not-showing-print-icon-when-viewed-from-ie-11-desktop-mode/
Part of these instructions are to remove any browser files, however we are currently using the RadHiddenFieldPageStateCompression utility to compress viewstate (specified as per Telerik documentation in the Default.browser file).
If we remove the Default.browser file, the Report Viewer print function operates correctly, but viewstate compression no longer works. Adding the Default.browser file back in, hides the print button on the Report Viewer control.
Is there any way that we can retain viewstate compression and use the SSRS 2012 Report Viewer print function?
Thanks.