Greetings,
I was trying to use the Contains filter with a value containing a '%' char in hte middle of value but no success. The settings are:
What I'm trying to filter is something like:
([description] like '%apple%juice%') to bring values like "green apple juice" or "apple juice box" or even "yadda apple whatever juice" (sorry for the bad example)
The filter expression when I enter "apple%juice" in the filter item is generated like that example but the filter doesn't work. Is this approach possible or simply can't be done?
<script type="text/javascript"> function requestStart(sender, args) { if (args.get_eventTarget().indexOf("btnDownloadPDF") > 0) args.set_enableAjax(false); }</script>
<ExportSettings ExportOnlyData="true" OpenInNewWindow="true" HideStructureColumns="true">
<Excel Format="Biff" />
</ExportSettings>
GridItem
Item = (GridItem)radDASignature.MasterTableView.GetItems(GridItemType.Item)[0];
foreach (TableCell tcell in Item.Cells)
{
tcell.Text = tcell.Text.Replace(
"<nobr>", "");
tcell.Style[
"text-align"] = "left";
tcell.HorizontalAlign =
HorizontalAlign.Left;
}
This above doesn't work. Please help with code.
2) When exporting the cell content in excel,I have <nobr> and </nobr> tags to the data. How do I get rid of them while exporting.
I set them in column created event to avoid wrapping of cell contents. However, I do not want the <nobr> added to the excel data while exporting.
Hi,
we are using the org chart in our projects and they render great on screen.
However, when you click on print - they loose all their formatting and connecting lines etc.
Is there some way that we can configure the controls so that they print better?
Thanks,
Patrick.

Hi
I've noticed that the drag and drop functionality of the AsyncUpload control doesn't seem to work in Microsoft Edge (IE 11 replacement) on Windows 10.
It works fine in Chrome & Firefox.
I've confirmed this behaviour against the Telerik demo: http://demos.telerik.com/aspnet-ajax/asyncupload/examples/draganddrop/defaultcs.aspx
Anyone else able to confirm this? Any thoughts?
Hi,
I have a situation where I need to create a tree consisting of the following entities:
Organization Entity
---> Organization Account
--> Organization Account Record
Organization Entities can have sub-Organization entities, Accounts can have sub-Accounts and records can have sub-records.
As such I want to have different icons for the entity types, Different expand and click functionality based on the types and different context menu's for each type.
I have created custom "RadTreeNode" classes in the following way:
public class OrgNode: RadTreeNode
{
public OrgNode()
{
this.ExpandMode = TreeNodeExpandMode.ServerSideCallBack;
this.ImageUrl = "../Images/image01.png";
}
}
public class OrgAccountNode: RadTreeNode
{
public OrgAccountNode()
{
this.ExpandMode = TreeNodeExpandMode.ServerSideCallBack;
this.ImageUrl = "../Images/image02.png";
}
}
public class OrgAccountRecordNode: RadTreeNode
{
public OrgAccountRecordNode()
{
this.ExpandMode = TreeNodeExpandMode.ServerSideCallBack;
this.ImageUrl = "../Images/image03.png";
}
}
My problem exists when I use the "TreeView_NodeExpanded" method, because (as mentioned above) I want to do different things based on what type of node is expanded...
Using the following statements:
e.Node.GetType()
returns correctly for the top node (OrgNode - the only node on the page not created using the serversidecallback) but only returns "RadTreeNode" as the type for all other nodes which I have added using ServerSideCallback even though the nodes added are showing the correct images and text.
Has anyone got any thoughts on this?
Hello,
After unexpected restart of my system i got this error. Please any one can help me on this issue.
Could not load file or assembly 'Telerik.Web.UI, Version=2015.2.826.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4' or one of its dependencies. Operation is not supported. (Exception from HRESULT: 0x80131515)
Thanks in Advance
Prakash A
