Hi support Team,
In Kendo ui Grid ...I am Apply the Composite Filter ...But Problem with The ...Here in Filter ....I have some "True" or "False" Column ......Instead of Showing The "True" ...."Y" and "False" ...."N"...So I am Apply Following Logic For that
C# Code When User Gives "Y" or "N"....based on That .....setting True or False.
private static void addFilter(XElement newFilter, FilterDescriptor firstFilter, string crmAttributeName, GetCrmColumnName getColumnInfo)
{
if (firstFilter.Member == "OnHold")
{
if (firstFilter.Value.ToString().ToLower() == "y")
{
firstFilter.Value = true;
}
else if (firstFilter.Value.ToString().ToLower() == "n")
{
firstFilter.Value = false;
}
}
newFilter.Add(new XElement("condition",
new XAttribute("attribute", crmAttributeName),
new XAttribute("operator", getOperator(firstFilter.Operator, crmAttributeName)),
new XAttribute("value", String.Format(getOperatorFormat(firstFilter.Operator), firstFilter.Value.ToString().Trim()))));
}
After Result Came I Need To ..Assign Same "Y" or "N"
So I Write The Following code
foreach (var n in request.Filters)
{
if (((FilterDescriptor)(n)).Member == "OnHold")
{
if (((FilterDescriptor)(n)).Value.ToString().ToLower() == "true")
{
((FilterDescriptor)(n)).Value = "y";
}
else
{
((FilterDescriptor)(n)).Value = "n";
}
}
}
It Work Fine ....For Normal Filter ...When ...I suppose ....Use CompositeFilter Then I got Problem....If ...Work with Composite Filter ..I need Display ...Not Empty or an error...
foreach (var n in request.Filters)
{
if (n is CompositeFilterDescriptor==true)
{
if (((CompositeFilterDescriptor)(n)).FilterDescriptors.Count() >= 2)
{
}
}
else
{
if (((FilterDescriptor)(n)).Member == "OnHold")
{
if (((FilterDescriptor)(n)).Value.ToString().ToLower() == "true")
{
((FilterDescriptor)(n)).Value = "y";
}
else
{
((FilterDescriptor)(n)).Value = "n";
}
}
}
}
Currently.....It Work For Composite Filter also..But when .....we Include Filter Of "Y" or "N".....I got ...Problem....When User Give even Though ..."Y" or "N"...Columns in the Composite Filter.....We need to Display....matched Columns.....
Hi Team,
We are using Telerik Rad editor in our SharePoint 2013 environment and activated "Use RadEditor to edit HTML fields" feature to replace the default Rich Html editor with Rad Editor. When we edit a page and make any changes in Rad editor content and check in the page, sometimes Rad editor looses its content and blank page gets checked in.
Kindly suggest how can we resolve this issue.
Thanks & Regards,
Brijesh Patil

Hi There,
When looking for your client side documentation for RadComboBox today I notice that much of the API I am used to is not present. eg. set_text() and other accessors.
It appears there is only trackChanges and commitChanges listed as methods on the RadComboBox.
See http://docs.telerik.com/devtools/aspnet-ajax/controls/combobox/client-side-programming/objects/radcombobox-object
Just wondering where I can get access to this documentation online now.
Regards,
Daniel

Hi,
I am just wondering if there is full working example of a RadGrid with file download functionality anywhere?
My requirements are pretty simple -
1. One of the grid columns will contain the actual name of the file (including extension) which I want to present as a clickable link (using asp:LinkButton maybe?).
2. Once the link is clicked the actual path to the physical file will have to be assembled in the code behind (don't want to expose file system details to the client apart from the file name).
3. The browser will allow the user to download the file in the normal way.
That's it. Just wondering if there is a good working example of this anywhere? Please let me know if any clarification is required.
Thanks :)


Hi,
I have developed an application with Telerik 2013 Q1. components. Previously the application was in .Net 3.5 . Now i have upgraded our application to .Net framework 4.0 and hosted our application in Win Server 2012 . The problem we are facing is, All the controls are working fine locally but after hosting. There is an issue with RadCombo. It is not rendering perfectly. or it became read only. we have dynamically populated the Radcombo.
RadCombo is not opening now.
Please help me, as we need this asap..
Thanks
Neel
I am using a radgrid to display data. I want to place a banner on the pdf file that gets downloaded.
this is my code:
<PageHeader>
<MiddleCell Text="<img src='Images/CME-Transcript-HeaderLong.jpg' />" TextAlign="Center" />
<RightCell TextAlign="Center" />
</PageHeader>
this inserts a small image in the center but I need it to be displayed as the same length as my radgrid on the pdf. How do I change the size of this image to make it a banner size?
Also, I am displaying some data generated dynamically in the middle of the header. I need to move it below the header but before the radgrid on the pdf. I need to display it in a horizontal line above the grid. How do I go about changing the position of data?
headerText += "<br /><span style='font-size:8px;font-family:Segoe UI;'>Report Date: " + DateTime.Now.Date.ToShortDateString() + "</span>" ;
headerText += "<br /><span style='font-size:8px; font-family:Segoe UI;'>" + lblParticipantName.Text + "</span>";
headerText += "<br /><span style='font-size:8px; font-family:Segoe UI;'>SDMS Member #: " + lblNo.Text + "</span>";
RadGrid1.ExportSettings.Pdf.PageHeader.RightCell.Text = headerText;
Thanks,
