
Hello,
for example in the image below if I start typing Ji the it would just show me the row for Jim
Thank you in advance.
Hi,
How to remove filter icon for a specific column in grid? Approach we followed is set showFilterIcon to false in grid template column tag.
Below is the code and the screenshot. Suggest us the solution.
<Telerik:GridTemplateColumn SortExpression="PoNumber" ItemStyle-HorizontalAlign="Center" Visible="TRUE" HeaderText="PoNumber"
Telerik grids are rendering without icons in IE11 of Windows Server 2016. Please provide us the solution asap.
Grid rendering without Icons:
Grid rendering with Icons:

If I mouse over my radeditor it says "Rich text editor with ID ....". I've included a screen shot.
How do I stop this from showing?
Thanks.

Hello,
We have a zip code entry text box that utilizes radmasktextbox to require entry of zipcode in us format. We'd like to support international postal code standards. I have created some JavaScript that in theory should switch the text box on client side to allow up to 10 of any characters when the nation isn't USA, but its simply not totally changing the text entry formatting. It can get to the point where it prints your characters in the box when you type, but when you blur it will strip out any chars that violate the old rules (US, 5+4).
Not permitting changing of the mask in clientside easily seems to be a fantastically big oversite. how does one do this?
code to change the mask:
funciton changeFormat(sender, args) {
var unitedStates = ['US', 'USA', 'UNITED STATES', 'UNITED STATES OF AMERICA'];
var i = 0;
var mask = [];
if (unitedStates.indexOf($find(countryControlId).get_value().toUpperCase()) < 0) {
for (i = 0; i < 10; i++) {
mask[mask.length] = new Telerik.Web.UI.RadFreeMaskPart();
}
} else {
for (i = 0; i < 5; i++) {
mask[mask.length] = new Telerik.Web.UI.RadDigitMaskPart();
}
mask[mask.length] = new Telerik.Web.UI.RadLiteralMaskPart('-');
for (i = 0; i < 4; i++) {
mask[mask.length] = new Telerik.Web.UI.RadDigitMaskPart();
}
}
$find(zipControlId).set__initialDisplayMasks(mask);
$find(zipControlId).set__initialMasks(mask);
$find(zipControlId)._setDisplayMask(mask);
$find(zipControlId)._setMask(mask);
$find(zipControlId)._length = 0;
$find(zipControlId).clear();
}

Hi I am trying to add html table to the context via c#.
I am getting the value without the table.
Can anyone help me out .
StringBuilder sb = new StringBuilder();
Hi,
I am using .Netframework -4.8
with apppool-4.0 and upgraded telerik controls from Q32015.3.1111.35 to R32020.3.915(BIN 45).
We are performing a sorting , attached screenshot has the details .so once we click on data, source we get a processing window and sort function gets completed.
But after upgrade of telerik controls, when we try to click on data, source ,name tabs after completing sorting also processing window continuously running.
This issue is observed in Edge Browser with new(2020.3.915) and old Telerik controls(2015.3.1111.35) as well.
Attached errors observed in Console.
Can anyone please help on this issue?
