Hi,
When showing a grid with a certain filter on multiple columns with the "OR" logic.
If the user changes one of the values in the filter row, it automaticly changes the logic of the filters to an "AND".
Here is a link to view the issue (For example, change the ship name filter to another letter) : http://dojo.telerik.com/UwOTu
Thanks
Hi guys.
We are kind of new in using kendo a GUI framework. We are used to use Ext.net, but we decided to change it. I'll try to explain what we have to see if you can help us out.
Our current application design is the following: Kendo for GUi. Backbone as the client MVVM framework and OData is where we get most of our data. We have an .WCF WebApi for writing stuff.
I'm using the kendo-backbone library to integrate Kendo with Backbone.
Here is an example of what i'm trying to achieve: http://dojo.telerik.com/iKOsu
The problem that i'm facing is that the filter attribute that is sending to the OData endpoint, doesn't have the filter correctly formatted.
Probably i'm missing some configuration or not using it as it should.
I tried to set the parameterMap in the configuration of the datasource, so i can transform the filters. But when i do that i lose the full collection's url path. (It's overriding the backbone transport?)
If you can help me out with this issue i'll be more than helpful.
PS: Sorry for the grammar and bad explanation :P
Hi,
I'm using build "v2015.2.902".
When using placholder property on IE8, the placeholder value is posted when submited the form. Quite annoying !
I noticed same behaviour with numeric text box.
Any clue ?
Another thing: hard to browse kendo ui demos web site with IE8 today, many positionning glitchs make it unusable.
Thank you.
Hi,
i'm using a kendo grid like this one
@(Html.Kendo().Grid<KUB.Expert.Web.Models.HandlungsradiusViewModel>()
.....
.Editable(editable => editable
.Mode(GridEditMode.PopUp)
.TemplateName("HandlungsradiusEditor")
.Window(w => w.Width(600)))
...:
My editortemplate looks like this ...
<div class="form-horizontal">
<div class="form-group">
@Html.LabelFor(m => m.Name, new { @class = "col-xs-2 control-label" })
<div class="col-xs-8">
@(Html.Kendo().TextBoxFor(m => m.Name).HtmlAttributes(new {@style = "width:400px"}))
</div>
<span data-for="Name"></span>
</div>
.....
......
</div>
Everthing works fine but the validation-message for the textbox is not rendered in <span>...</span>. The validation message are shown in a div below the input.
The validation-message should be rendered like described here http://docs.telerik.com/kendo-ui/framework/validator/overview#customizing-the-tooltip-position
What do i wrong ?
Regards
Jürgen
Hi,
I have created data source to connect online web service but when i run the code than in output just page is loading no data is rendering
This is the code:
function onDeviceReady(){
navigator.splashscreen.hide();
}
var employeeData;
employeeData = new kendo.data.DataSource(
{
type:"odata",
endlessScroll:true,
batch:false,
transport:{
read:{
url:"http://services.odata.org/V4/Northwind/Northwind.svc/Customers",
dataType:"jsonp",
data:{
Accept:"application/json"
}
}
}
});
​
I am trying to attach a Home Icon to my Menu (which is loaded remotely from a dataSource), and am trying to find out how to display the icon centered similar to the <span> tags would in the <li>. The icon displays, but appears above any text or drop arrow.
Here is the syntax inside the HTML body after loading kendo and bootstrap:
<ul id="settingsmenu" /><script> $(document).ready(function() { $("#settingsmenu").kendoMenu({ dataSource: [ { text: "", cssClass: "glyphicon glyphicon-home", items: []} ] }); });</script>Any ideas as to how to get Text, Icon, and Arrow lined up properly, assuming it could just be a styling issue? I am relatively new as how to setup styles, so can't figure this out for myself. Might this be a case where I would need to create a Kendo Template for how these appear as an alternative?
Thanks!

I got a problem with attributes processing in viewHtml mode
There is steps to reproduce:
1. Create Editor with "viewHtml" button
2. Open "View Html" dialog by clicking on "View Html" button
3. Put the html code as below:
<img height="157" width="314" on="" k-script-on="" />
4. Click on Update button
Uncaught TypeError: Cannot read property 'nodeName' of undefined
in _preventScriptExecution function
The ​bug is in processing of attributes: on="" k-script-on=""
When the code below is run
this.setAttribute("k-script-" + name, attribute.value);
the "attributes.length" changing and the variables "i" and "l" is wrong
Is it posible to fix it?

Hello, I am trying to use a grid with a toolbar. The toolbar is made with a template and the template have a button . I want to bind the click of the button to a function defined in my model , but the function is never hit . Here is a dojo: http://dojo.telerik.com/IKOLe/19
Thanks!