How can I force the post back of the RadSearchBox (onSearch event) when someone chooses one of the items from the ContextList? I want to be able to change a secondary list when an item from the ContextSearch is changed (just like they entered something in the search window and clicked search). I tried to fire the postback of the SearchBox but it doesn't seem to be returning it to the server to process the items selected. It seems to fire the panel update, but not the server side OnSearch event.
<telerik:RadSearchBox ID="RadSearchBox1" runat="server" RenderMode="Lightweight"
DataTextField="DiagForList" MaxResultCount="15"
EmptyMessage="Search/Select Order to left"
DataValueField="DiagnosisCodeID"
DataKeyNames="MapField"
style="margin-left: 10px; margin-top: 1px;"
Width="440px" HighlightFirstMatch="True"
SearchContext-Enabled="true"
DataSourceID="SqlDataSourceDG"
OnClientSearch="OnClientSearch"
ToolTip="Select the order from the drop down and/or search for a diagnosis."
OnDataSourceSelect="RadSearchBox1_DataSourceSelect"
OnSearch="RadSearchBox1_Search" MinFilterLength="3">
<SearchContext DataSourceID="SqlUpdateABNFlag" DataTextField="MapField" DataKeyField="MapField" DropDownCssClass="contextDropDown" />
<DropDownSettings Width="500px" />
<Localization DefaultItemText="All Orders" LoadingItemsMessage="Loading...." />
</telerik:RadSearchBox>
Script:
function pageLoad() {
var $ = $telerik.$;
$(".rsbSCSlide ").on("click", ".rsbListItem", function (e) {
e.preventDefault();
RaiseClickEvent('RadSearchBox1');
});
}
function RaiseClickEvent(id) {
__doPostBack(id,'arguments'');
}
Why am I getting this error in Visual Studio 2012 all of a sudden? No problem yesterday, today I get this:
Could not load file or assembly 'Telerik.Web.UI, Version=2015.3.1111.45, Culture=neutral,
PublicKeyToken=121fae78165ba3d4' or one of its dependencies. Invalid pointer (Exception from HRESULT: 0x80004003
(E_POINTER))' G:\TFS_TMS\Sprint0\NextGenerationSourceCode-Sprint0\TMS2016\TMS2016\LC TMS2016
????????
Hi,
i have my telerik app into an iframe.
I have the problem with tooltip. It isn't showing correctly, not hide/show correctly.
The image show the problem.
What should i do?
Thanks.
Hello
<telerik:RadClientExportManager ID="RadClientExportManager1" runat="server">
<PdfSettings PageBreakSelector=".PageBreak" />
</telerik:RadClientExportManager>
On adding of PdfSettings the class which helps to change the exported content does not get applied to the content.
Please help.
Hi,
I have a problem to handle z-index on ImageManager and ImageEditor popup windows. In our application, we override z-index in .RadWindow_Bootstrap class ( .RadWindow_Bootstrap { z-index: 100000 !important; } ) to make sure ImageManager popup window display on top of other controls. The issue happens if we try to open ImageEditor window, the two windows shares the same css class, so the ImageEditor window is underneath of ImageManager window.
Is there any way we can solve it?
Thanks in advance,
lan
Hello,
I am having problem to display video in RadMediaPlayer
Server Environment:
Windows Server 2008 R2
IIS 7.5
Video file format mp4
Client Environment:
Windows 10
IE Version 11.540.15063.0
Windows 7
IE Version 11.0.9600.18163
Problem:
There was not MIME type "video/mp4" in the IIS - I have added that one
After that the video displays in the Chrome, FF, and IE 11 on Windows 10, but does not in IE 11 on Windows 7
When I changed source from local file (/video/testvideo.mp4) to Telerik demo site example
http://demos.telerik.com/aspnet-ajax/media-player/examples/functionality/mediatypes/video/justCode.mp4
The video displays correct in the all browsers on Windows 10 and Windows 7.
Thank you
We have an ASP.Net application that is contains a tab control with several tabs. At one time, when you would do Print from the browser, it would print all the tabs at once. That no longer works now. Neither of the code snippets help...
@media print
{
.k-tabstrip .k-content
{
display: block;
}
}
...or...
<style type="text/css" media="print">
.rmpHiddenView {
display: block !important;
}
#NavigationTab, #btnNew, #btnSave, #QRDiv, .hidePrint, #cboChecklists, #cboJobsWithChecklists {
display: none;
}
</style>
Here is the code we're using to get the tabs set up...
<telerik:RadTabStrip ID="NavigationTab" runat="server" SelectedIndex="0" MultiPageID="NavigationTabPages">
<Tabs>
<telerik:RadTab runat="server" Text="Shop" Owner="NavigationTab" PageViewID="ShopPageView"></telerik:RadTab>
<telerik:RadTab runat="server" Text="Testing" Owner="NavigationTab" PageViewID="TestingPageView"></telerik:RadTab>
<telerik:RadTab runat="server" Text="Testing Coordinator" Owner="NavigationTab" PageViewID="TestingCoordinatorPageView"></telerik:RadTab>
<telerik:RadTab runat="server" Text="Punch List" Owner="NavigationTab"></telerik:RadTab>
<telerik:RadTab runat="server" Text="Shipping" Owner="NavigationTab" PageViewID="ShippingPageView"></telerik:RadTab>
<telerik:RadTab runat="server" Text="Notes" Owner="NavigationTab" PageViewID="NotesPageView"></telerik:RadTab>
<telerik:RadTab runat="server" Text="QR Code" Owner="NavigationTab" PageViewID="QRPageView" Visible="False"></telerik:RadTab>
</Tabs>
</telerik:RadTabStrip>
<telerik:RadMultiPage ID="NavigationTabPages" runat="server" SelectedIndex="0">
<telerik:RadPageView ID="ShopPageView" runat="server" >
Any thoughts about what might be causing this?