Telerik Forums
Kendo UI for jQuery Forum
1 answer
78 views
We've decided to only use the ThemeBuilder for styling.

I haven't been able to change the background and text color of the footer using the ThemeBuilder. Is there a way?

I define my footer in the Column (MVC)

columns.Bound(e => e.Client)
       .FooterTemplate(@<text>
                            @foreach (var acct in accountsRollups)
                            {
                                @Formatters.FormatCurrency(acct.UnrealizedGainLoss)
                                <br/>
                            }
                        </text>)

Iliana Dyankova
Telerik team
 answered on 08 Aug 2013
1 answer
68 views
Using the ThemeBuilder I am almost done with my custom theme.

2 questions. 

How do I change the color of the Picker borders? See image
How do I change the hover background color of the calendar date at the bottom of the calendar? See Image The reason is that I have some how made the hover of the Today at the bottom of the calendar to be white on white and I need it to just underline, while keeping the color of the background. See image 
Iliana Dyankova
Telerik team
 answered on 08 Aug 2013
1 answer
754 views
Hi - we'd like to be able to set our chart titles to include fields returned from our database.  We are using JSON to get the data.

I'm not sure how to do that?  For example, in the below, I'd like to append a school name, say  "ABC Elementary" for example, to the start of the title, and have it change as our users change the school they are looking at.

Thanks
kcSchoolRiskInd = $("#SchoolRiskInd").kendoChart({
 
           title: {
               text: "School Risk Indicators",
               font: "bold 16px Arial,Helvetica,Sans-Serif"
           },
T. Tsonev
Telerik team
 answered on 08 Aug 2013
4 answers
198 views
Hello,

we have a problem with the code generated by the drop down list component, in fact, if i put a <Select> element inside a <div> and use it with the dropdownlist component, the code generated by the dropdownlist is not inside the div but at the end of the <body>

As we work on a single web page application with backbone, we have to create dynamically some views using kendo components. And each time we create a component the code generated is outside the box.

We found a workaround to fix this but we had to override so many kendo css style to make it work that this solution is not satisfying.
The workaround is to add the class name "k-group" on the <div>.

So, could you give us the best way to have the code generated by kendo components inside the html elements ?

Thanks for your support,

Best regards,

Alexis

alexi
Top achievements
Rank 1
 answered on 08 Aug 2013
1 answer
122 views
There is a how-to article which covers auto-sizing the grid to it's container's height and width:
http://docs.kendoui.com/getting-started/web/grid/walkthrough#making-the-grid-100%-high-and-auto-resizable

$(window).resize(function() {
    var gridElement = $("#grid"),
        newHeight = gridElement.innerHeight(),
        otherElements = gridElement.children().not(".k-grid-content"),
        otherElementsHeight = 0;
 
    otherElements.each(function(){
        otherElementsHeight += $(this).outerHeight();
    });
 
    gridElement.children(".k-grid-content").height(newHeight - otherElementsHeight);
});

Is this still the best method of sizing the grid in this manner?
Dimo
Telerik team
 answered on 08 Aug 2013
12 answers
209 views
With Kendo 2013.2 and Typescript 0.9
  • On line 401 there is "module binders { };" which shouldn't be there. In 703 there was a "var binders: Object;" which was ok.
Michael G. Schneider
mgs
Top achievements
Rank 1
 answered on 08 Aug 2013
2 answers
344 views
Hi,

I have a MVC kendo grid, representing a list of items, on which I use some custom commands.
I also have a invisible kendo window created which I later use to confirm the custom command.
I'd assume that if I call open() and close() on the window control, it would be on the same instance.

What I notice is that if I call the custom command on one item & but don't confirm it, and then call it for the same/another item, the event bound to the confirmation control gets called as many times as I had called the window.open() function before, without having refreshed the page. It appears that each time a new instance of the window is created & it stays somewhere in the cache

Is it possible to suppress this behaviour ? I'm attaching a small sample project to illustrate the problem I'm facing

Kind Regards

Achilles
Achilles
Top achievements
Rank 1
 answered on 08 Aug 2013
1 answer
135 views
Kendo Web is pretty unusable right now with Bootstrap 3.  Is this on the roadmap?
Dimo
Telerik team
 answered on 08 Aug 2013
1 answer
116 views
How to use setDataSource on Hierarchy Grid

Hello All -

I have a Hierarchy Grid created.. and I need to refresh the data sources after certain events... How do i go about doing it..
I know we can use setDataSource method on the Grid's widget.. but i really dont know how to get the widget for a hierarchy grid..

usually if i have a div element.. i would say
var grid = $("#grid").data("kendoGrid");
grid.setDataSource(dataSource);

but in a hierarchy grid... the child grid is created as
$("<div/>").appendTo(detailCell).kendoGrid({
            dataSource: {
                data: ReturnData
            }, ......

How do i obtain the widget for this and rebind the data source..?
Atanas Korchev
Telerik team
 answered on 08 Aug 2013
2 answers
303 views
1. I need to add a scheduler.. but i dont want the timeline to be visible.. Is there a setting that would hide the time line but just show the scheduler events?
2. How  can I disable the user to add events to the scheduler and just added the same automatically by code..
Rosen
Telerik team
 answered on 08 Aug 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?