I've reviewing the code Binding to remote data example for the ListView control. There's some HTML which I don't understand. It might be some HTML5 code snippets I'm unaware of, or it might be something specific to Kendo UI for jQuery. In any case I'm sorry for my ignorance.
Here's a compact example from I'm referring to:
<script type="text/x-kendo-template" id="template">
<div class="product">
<img src="../content/web/foods/#= ProductID #.jpg" alt="#: ProductName # image" />
<h3>#:ProductName#</h3>
<p>#:kendo.toString(UnitPrice, "c")#</p>
</div>
</script>
In the code snippet the src attribute has "../content/web/foods/#= ProductID #.jpg" and the alt attribute has "#: ProductName # image". I get that there's a substitution going on, but I don't understand why the src attribute using #= and the alt attribute doesn't. Why does it use #: ?
What's the difference between the two and when do you use one other the other?
Hi,
I have custom column which contains buttons, how to select the entire row when I focus on the button control?
Thanks.
Hi all,
How to apply Alternate
category background color on TreeList, for example, column A is the category
column, which has the parent and child data, how to apply grey color to
only column A of the first category and apply orange to the next
category? How to make it to be dynamic alternate styling?
Thank you.
We're still getting used to using Telerik's Kendo UI for jQuery. So far, we've only used one component, AutoComplete. Which works great, BTW!
There's something we'd like to do, but don't know how to do. On an ASP.NET MVC Core page (.NET 6) we want to be able to allow the user to enter multiple items of the same type. It seems like either the Grid or ListView Kendo components would work. Personally, I'm favoring the ListView. But we also need to use AutoComplete work when the user is entering values to a new row. So, for example, we need to collect LotNumber and ProgramName, multiple times, because there can be and often is, multiple items to be entered, along with other details on the same page. I've looked at the ListView component, the Add method, etc. In the example given, it references an identified (by using the HTML id property) control on the page. So, how does one apply AutoComplete to both LotNumber and ProgramName, when entering a new LotNumber/ProgramName pair in a ListView?
I want the editor to open up with the "Title" field pre-focused and with the "No title" text selected.
the below code does not seem to be working.
I am using a custom edit template
edit: function (e) {
var input = e.container.find("title");
input.select();
input.focus(function (e) {
input.select();
});
input.focus();
}
Hello,
I'm currently applying the Table Wizard button to a custom Sitefinity widget; I'm looking to make the table header NOT bold. Is that something someone could guide me or help me with?
Thanks in advance,
Sunny Carrandi
I have a kendo grid and I need to set one of the columns to a fixed width that is always exactly 120px. My issue is that if the screen is wider than the total set width of all of the columns it starts expanding the columns. This is good for everything except my one column that needs to always be the same. I also tried leaving the width off of one of the columns. The problem with that is that when the screen is narrow (like a phone or tablet) the column without a set width disappears. Another trick I tried is using the template to wrap the column in a span tag with a fixed width, however that just overflows the cell. How do I solve for this?
when we have the search option enabled for DDL we cant make a selection using keyboard & typeing the first letter (without expanding the drop down)
are there workaround to make it work togather?
Hello,
I want to show a percentage using a kendo JQuery progress bar (min: 0, max: 1.0), but percentage value can be greater than 1.0
If percent value is 1.2 then I need that progress bar show the progress bar full filled in red background color, but "120%" as value.
Now, progress bar shows 100% instead of 120%
Thanks

Hello,
I am trying to hide/show drawer items based on user rights. I was trying to make it work with data binding, since the loading of said user rights happens at runtime and after the first initialization of the drawer control. But I can't get it to work.
Here is a small example of what I am trying to do: https://jsfiddle.net/1rk4f9L6/11/
Any tipps? Is it even possible to use data-bind on a drawer item?