Hi,
Here's the example (http://jsfiddle.net/jxn2u7y9/) that I try to draw a line,
But I want to control the speed of the initial animation duration,
Is there any way or api to slow down the initial animation duration speed such as the setInterval way using in this example (https://jsfiddle.net/k9fxbmp8)?
var
timer = setInterval(() => {
if
(count > len){
clearInterval(timer)
}
myChart.data.datasets[0].data.push(totalData[count]);
// myChart.data.datasets[1].data.push(releaseData[count]);
myChart.update();
count++;
},800)
Thanks
I have to disable and enable cells of the grid under the same columns based on date validations. Is it possible to do that in Kendo Grid?
I am new to Kendo UI and not getting proper examples for doing this.
P.s.Any proper example explaining this will be really helpful.
Hi,
I want to add Select All checkbox in asp.net mvc kendo grid explicitly.
We are using razor kendo grid.
If I use ClientTemplate or Client Header Template Boolean values showing. I need select all check box.
For columns its showing fine. but in header how to add select all checkbox explicitly. Kindly help
Dear Sir/Madam,
I am working on a Kendo Form in which I would like one of the fields to be read only. The field's definition is simply: { field: "someField", label: "Some Field" }
In order to make the field read-only I'm guessing I should be using the "attributes" property but I'm not sure. I have not found any example on the use of the "attributes" property.
Would you be able to provide an example showing how to make the field read-only please?
Thanking you in advance for your assistance.
Herrick
Here is my treeview. How do I format the checkboxes horizontal instead of vertical?
@(Html.Kendo().TreeView()
.Name("treeview")
.Checkboxes(checkboxes => checkboxes
.Name("checkedFiles")
.CheckChildren(true)
)
//Inline data is set with the BindTo method
.BindTo((IEnumerable<ndpbrn_hub.Areas.PaymentTracking.Models.ViewModels.NodeChkBox>)ViewBag.inline, (NavigationBindingFactory<TreeViewItem> mappings) =>
{
mappings.For<ndpbrn_hub.Areas.PaymentTracking.Models.ViewModels.NodeChkBox>(binding => binding.ItemDataBound((item, category) =>
{
item.Id = category.NodeID;
item.Text = category.NodeName;
item.Checked = category.IsSelected;
})
);
})
)
HI,
We are using asp.net mvc kendo grid with checkbox.
For checkbox we are using below line.
columns.Select().Width(50);
But very difficult to control checkbox events (onchange)
Most of the time not working. I need to get all checked and unchecked rows in onchange event while changing. But not able to control. We can get selected rows. But not unchecked rows. While unchecking I should get the unchecked rows.
Please help me to achieve.
)
}
I have around 100 or sometime 400 plus legends in my charts so how to control the legends.
Eg. If there are 50 plus legend then add scrollbar to legends.
Dojo -
https://dojo.telerik.com/@vishal14/eFuROQuB
Hi,
I am trying to make my web application accessible using screen reader(NVDA).
I am using a kendo dialog and the screen reader on pressing the H key says no header found when there is already a title for the dialog.
I have tried to add the header tag as well as the role='heading' attribute with no success
Example: https://dojo.telerik.com/ILESolAY
Can you please let me know if this is possible with kendo dialog, if yes can you please provide an example of the same.
Thanks in advance