I am seeing this error message when I run my Visual Studio 2015 web application, plus several of my web controls are not recognized element when I drag and drop them on my page. Error message is
There was a conflict between "Telerik.Web.UI, Version=2012.3.1308.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4" and "Telerik.Web.UI, Version=2015.1.401.45, Culture=neutral, PublicKeyToken=121fae78165ba3d4"
What is the proper way to correct this situation?
I have a grid which use Header Context Menu. Filtering option is not working with DateTime Fields
<telerik:RadGrid RenderMode="Lightweight" ID="itinerariosGrid" runat="server" AutoGenerateColumns="False" EnableEmbeddedSkins="false" Skin="telerikbootstrap"
AllowFilteringByColumn="True" AllowSorting="True" AllowPaging="True" Culture="es-MX" FilterType="HeaderContext" EnableHeaderContextMenu="true" EnableHeaderContextFilterMenu="true"
AllowMultiRowSelection="True" AllowAutomaticUpdates="False" AllowAutomaticInserts="False" OnItemDataBound="itinerariosGrid_ItemDataBound"
OnNeedDataSource="itinerariosGrid_NeedDataSource" AllowAutomaticDeletes="false" EnableLinqExpressions="false"
OnInsertCommand="itinerariosGrid_InsertCommand" OnUpdateCommand="itinerariosGrid_UpdateCommand" OnDeleteCommand="itinerariosGrid_DeleteCommand">
Hello,
i created a grid with multi-line footer according to this example:
http://docs.telerik.com/devtools/aspnet-ajax/controls/grid/how-to/totals-in-grid-footers
and added an excel export according to this tutorial:
http://docs.telerik.com/devtools/aspnet-ajax/controls/grid/functionality/exporting/overview
but opening the extracted xls file file i see footer data messed up with values concatenated in a single cell.
How to get a proper xls extraction?
Regards.
I am using RadListView and trying to bind the ItemTapped to my MVVM.
I can't seem to get this to work. I can't find any examples online either.
Thanks in advance.
Will
Hi, we are consdiering purchasing your UI for ASP.net packages.
I reviewed your ASP.net AJAX demo and came across the image editor control which seems like a control we would like to use and customize.
I saw there is an option to draw circles/rectangles, is there an option to edit their coordinates after they are drawn? is there an option to draw programmatically?
Thanks,
Oren
Hi Team,
Telerik radAsyncUpload is not working in google chrome once application host in server. But if I run application in local its working.
using IE its working in both.
Hi ,
We are using radgrid menu and we don't want users to un-check all columns from columns menu of context menu.
Is there a way to hide or stop user unchecking some columns of columns menu item?
I tried this below code:
void HeaderContextMenu_ItemCreated(object sender, RadMenuEventArgs e)
{
if (e.Item.Value.Contains("Reference#") && e.Item.Controls.Count > 0)
(e.Item.Controls[0] as CheckBox).Enabled = false;
}
It will make readonly for that column option on first load, but once i un-check another column, it will get enabled for check/uncheck.
Is there any other way to achieve this?
Thanks