Hello,
http://dojo.telerik.com/alifO/25
If the id and parentId of model and String as this sample, it is impossible task added when the Add Task and Add Child.
If you look at the console log it seems to have become in [Maximum call stack size exceeded].
Is it should be How to deal with id and parentId as String?
I have added a date field using a datepicker as below
@(Html.Kendo().DatePickerFor(m => m.StartDate)
.Format("dd/MM/yyyy")
.ParseFormats(new List<string>()
{
"dd/MM/yyyy",
"dd/MM/yy",
"dd MMM yyyy"
})
.HtmlAttributes(new { @class = "k-datetimepicker" }))
However, on tabbing out, kendo ui datepicker throws an error "The field must be a date"
Can you please assist? I have seen a few other threads on the forum and tried other solutions like adding a script tag to set culture info but nothing seems to work. These solutions have not worked for everyone either.
Hello,
I have the situation above (based on the demo) :
In the scheduler, we have 3 groups (Alex, Bob and Charlie), sometimes Alex has a freetime to do work stuff from 8pm - 10pm and he works with clients from 12pm-4pm, i wanna change the the cell's background color on this timeranges (work stuff (red) / work with clients (yellow) / the rest (light blue)).
Is there anyway or good practice to do this?
Thanks for the attention!
Hello,
I am facing a issue regarding the angular translate with the kendo grid header. I have added the {{'KEY_NAME' | translate}} to all title field in the grid columns.
A language drop-down is added to the screen, on selection of language the UI screen content should get translated. Outside the kendo grid, the content is translated but kendo grid headers are not translated.
Could you please help me on this.

Hi,
I am using selenium for testing out application.
I encounter a problem with inline-editing that I reproduce with the code below on the demo in your site.
What happen is that the field got update but after click on the "Update" button the value remain as before.
With nativeEvents=true it does work but it cause many other issues.
How can it work with nativeEvenets=false ?
public static void main(String[] args) throws InterruptedException {
System.setProperty("webdriver.ie.driver",
"C:\\Dev\\Selenium\\IEDriverServer.exe");
final DesiredCapabilities capabilities = DesiredCapabilities
.internetExplorer();
capabilities.setCapability("nativeEvents", false);
capabilities.setCapability(
InternetExplorerDriver.IE_ENSURE_CLEAN_SESSION, true);
capabilities.setCapability(InternetExplorerDriver.REQUIRE_WINDOW_FOCUS,
true);
WebDriver driver = new InternetExplorerDriver(capabilities);
driver.get("http://demos.telerik.com/kendo-ui/grid/editing-inline");
driver.findElement(
By.xpath(".//*[@id='grid']/div[3]/table/tbody/tr[2]/td[5]/a[1]/span"))
.click();
Thread.sleep(3 * 1000);
driver.findElement(
By.xpath(".//*[@id='grid']/div[3]/table/tbody/tr[2]/td[1]/input"))
.sendKeys("kuku");
Thread.sleep(3 * 1000);
driver.findElement(
By.xpath(".//*[@id='grid']/div[3]/table/tbody/tr[2]/td[5]/a[1]/span"))
.click();
Thread.sleep(3 * 1000);
}

Hi,
How do I enable sortable functionality for a grid in AngularJS. Essentially I am looking for something like this:
http://demos.telerik.com/kendo-ui/sortable/integration-grid
However, my grid is an AngularJS Kendo Grid.
A demo link will be helpful.
Thanks,
Kalpana
Hello,
I have a grid with detail template, and a button in detail section will change one cell value of its master row.
The question is that, after cell value is changed (datasource.set), this grid is rebind, original detail of this row is gone, and this row is unselected. This isn't what I want.
Is there a way to avoid rebinding this grid, I just want to change a cell value without rebind, and keep this detail section, this selected row etc..