Hi, I am trying to bind into a FormTemplate for editing from a GridBoundColumn 'value' where on ItemDataBound I pulled the information from multiple other columns in my Data Table (value_int, value_string, value_bit). For each row only one column would have information and the rest are null.
I haven't been able to figure out how to populate the textbox from 'value' let alone eventually write this back. Another thing I have tried other than (unsuccessfully) getting the data from the 'value' column in my grid was to use bind() for each column in the data table as such:
<
asp:TextBox
ID
=
"txtBoxValue"
runat
=
"server"
Text='<%# Bind("Value_string") ?? Bind("value_decimal18_2") ?? Bind("value_bit") %>'></
asp:TextBox
>
But this only binds whatever value_bit shows as either true/false or a space as it doesn't seem to be a null. code behind to bind the 'value' column is the following:
protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e)
{
if (e.Item is GridDataItem && e.Item != null)
{
GridDataItem item = (GridDataItem)e.Item;
DataRowView drv = (DataRowView)e.Item.DataItem;
if (drv["value_type"] != null)
{
if ((string)drv["value_type"] == "value_string")
{
item["Value"].Text = drv["value_string"].ToString();
}
else if ((string)drv["value_type"] == "value_bigint")
{
item["Value"].Text = drv["value_bigint"].ToString();
}
else if ((string)drv["value_type"] == "value_decimal18_2")
{
item["Value"].Text = drv["value_decimal18_2"].ToString();
}
else if ((string)drv["value_type"] == "value_bit")
{
item["Value"].Text = drv["value_bit"].ToString();
}
}
}
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.