Hi, I need to enable / disable command column basing on the dataOrderFilter value. if filter value is NOTTRANSFER, then the command column in the grid should be enabled. if the filter value is INTRANSIT or TRANSFER, then the command column should be disabled. how to achieve this?
var dataOrderFilter = [{ value: "", text: "All Orders" }, { value: "MYORDER", text: "My Orders" }, { value: "NOTTRANSFER", text: "Orders not Transferred", defaultValue: true }, { value: "INTRANSIT", text: "Orders in Transit" }, { value: "TRANSFER", text: "Orders Transferred"}];
Hi,
I did update project ExampleCSVS2010 to new version of Kendo Windows ver. 2021.3.914
After update I got error for class "ExamplesForm":
The type or namespace name "ExamplesForm" could not
be found (are you missing a using directive or an assembly ....)
Thanks,
Leonid
Hi, I just came into contact with Kendo UI. I think it is very powerful, especially the function of MVVM is very easy to use.
I have a question that I haven't understood. After setting the data of the datasource, you can operate on it, but the schema.model property can set the information of the data field. Is this unnecessary?
I never know the relationship between datasource and schema. Model. It seems that I don't set schema. Model and datasource works normally.
Can any engineer explain their specific links and functions? Thank you for your help.
Hi,
I found RadChart has been discontinued as of Q3 2014, so can I build a chart like RadChart with kendo Chart?
Thanks,
An
Does Kendo support any sort of per-client throttling when it comes to SignalR?
We have a situation where there are 100s of data sources on a page attached to list views. Because these all attempt to read at once we get 414 errors and others and I suspect the easiest fix will be to prevent too many requests from happening at once.
Any ideas? I haven't been able to find a solution at the SignalR layer.
Hi team,
A customer which uses Kendo grids has asked us to improve the default string column filter which has two fields and one boolean operand and now they want three fields (with their usual "eq", "contains"...) and two boolean operands ("and" and "or" are fine) in the same column.
I am having a bit of a hard time finding an example that manipulates the same column with three fields because everything I stumble upon uses two or three fields, either in different columns or in a templatized one.
My starting point is this code I found here and adapted to work in my local environment:
ds.filter([
{"logic":"or",
"filters":[
{
"field":"Freight",
"operator":"eq",
"value":11.61},
{
"field":"Freight",
"operator":"eq",
"value":51.3}
]},
{
"field":"ShipCity",
"operator":"startswith",
"value":"Char"}
]);I have tried to figure out a way to use the third set of properties within the other two, to no avail.
Is there any way to achieve what I am trying to do?
Thank you very much in advance, best wishes.
Hi Team,
Autocomplete textbox should have type=search to comply with the accessibility guideline [1.3.5 identify input purpose], but i do not see any way to do so.
any help is appreciated.

I've been searching for a while now and I can't find any resources on this. Enabling or disabling a button initially can be done through the button config: https://docs.telerik.com/kendo-ui/api/javascript/ui/wizard/configuration/steps.buttons.enabled
But there seems to be no documentation on how to programmatically enable or disable these buttons. What's the best way of doing so?