How do i remove the 'Summary' and 'Cellspacing' attributes from the Timeview? This is causing my website to not validate through https://validator.w3.org/.
I have tried setting summary="" and cellspacing="-1", gridlines="None", but nothing happens. I think your 'Summary' attribute is broken.
Radiobuttonlist selectedIndexChange event does not fire when nested inside of a RadSplitter/RadPane
<telerik:RadSplitter
runat="server"
ID = "radSplitter1"
ResizeWithBrowserWindow="true"
Orientation="Vertical"
ResizeMode="Proportional">
<telerik:RadPane
runat="server"
ID=radPane1>
<telerik:RadioButtonList
runat="server"
ID="radioButtonList1"
Direction="Vertical"
AutoPostBack="true"
OnSelectedIndexChange="RadioButtonList1_SelectedIndexChanged">
<Databindings
DataTextField="Name"
DataValueFields="Value"
DataSelectedField="Selected"/>
</telerik:RadioButtonList>
</telerik: RadPane>
</telerik:RadSplitter>
When I move the RadioButtonList to the outside of the RadSplitter then the RadioButtonList1_SelectedIndexChanged fires. I'm using Telerik Version 2017.1.228.445
we have a SharePoint 2016 farm on premises with 2 WFE servers, we are now adding one more WFE server, hence we installed SP 2016 including latest cumulative updates in the new server, everything went fine till then, all the site collections which doesn't have any customizations are working fine. but, when we try to access a site collection which has customizations like left navigation and top ribbon with custom drop down values are giving the following error.
Could not load file or assembly 'Telerik.Web.UI, Version=2010.3.1109.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4' or one of its dependencies. The system cannot find the file specified.
we are unable to fix this issue, hope you can guide us with the correct remediation steps to fix it.
Hello, I am brand new to this forum as of today and I do not know where I should post my questions! I will be asking more for radgrid help and I did not see a specific discussion folder for that... Mind you I am also a new programmer so I really couldn't recognize what some of the topics were for as well...
~Derek
Hi,
Using the sample code below found in the docs, the event doesn't fire when Enter is pressed. Tab-ing or clicking off the combo box does cause the event to fire. Seems to be a bug.?
Dave
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Test.aspx.cs" Inherits="Test" %>
<!DOCTYPE html>
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
id
=
"head1"
runat
=
"server"
>
<
title
></
title
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
asp:ScriptManager
ID
=
"ScriptManagerProxy1"
runat
=
"server"
/>
<
script
type
=
"text/javascript"
>
function OnClientTextChange(sender, eventArgs) {
alert("You typed " + sender.get_text());
}
</
script
>
<
telerik:radcombobox
id
=
"RadComboBox1"
runat
=
"server"
allowcustomtext
=
"true"
onclienttextchange
=
"OnClientTextChange"
>
</
telerik:radcombobox
>
</
form
>
</
body
>
</
html
>
Se ha generado una excepción no controlada durante la ejecución de la solicitud Web actual. La información sobre el origen y la ubicación de la excepción pueden identificarse utilizando la excepción del seguimiento de la pila siguiente. |
|
|
In Radgrid, I use RadComboBox to filter the contents of a column in the code behind as the DataSourceId of RadComboBox needs to be set programmatically based on the user's selection. The filter works Ok and the SelectedIndexChanged fires an event in the code behind. However, when I select the first item, which I included in the markup to clear out the filter, an event does not fire and I cannot clear out the filter.
The item, which I include in the markup, looks like the following:
<Items>
<telerik:RadComboBox Text="" Value="" />
</Items>
Any help will be appreciated.