Telerik Forums
Kendo UI for jQuery Forum
2 answers
99 views
Following the advice in several forum posts, along with this jsbin created by Alexander Valchev, I am investigating the use of an observable object that provides HTML content to be rendered:
jsbin.com/iyakig/2/edit
If I add a second button to the code in the jsbin like this:
 makeButton: function () {
                var html = '<a data-role="button" data-bind="click: makeListView">Replace again</a><a data-role="button" data-bind="click: makeListView">Replace yet again</a>';
                this.set("foo", html);
            },

The second button does not get initialized as a widget as you can see here:
jsbin.com/iyakig/31/edit 
Is there a limitation on MVVM binding of HTML code?

We have been using kendo.mobile.init() to initialize all widgets in the HTML generated by a template, but we are looking to use MVVM binding as suggested in this post.  We would be very interested in knowing why additional widgets are not initialized as well as the advantages to this approach vs. the kendo.mobile.init() approach.


Randy
Top achievements
Rank 1
 answered on 09 Jan 2014
1 answer
56 views


I was looking at the code of Kendo Chart to find out how the points (for line chart) are plotted from a single dataItem. While researching I found out that you are using a Box2D method from where you are creating a property which contains (x1,y1, x2, y2) and with this property you are plotting the points with there average values.

I  was unable to found out that from where you are retrieving these values (x1,y1,x2,y2).   If you can please show me the path (function) from where you are converting these values then it will help me to find a solution.

Thanks.
Hristo Germanov
Telerik team
 answered on 09 Jan 2014
1 answer
59 views
Hello,
i tried to use kendo ui slider in a mobile site.

It seems to work ... 

Is there anyway to show the ticks in a mobile site ? 
It only can show the tickts on a desktop browser.

Regards

Jürgen
Kiril Nikolov
Telerik team
 answered on 09 Jan 2014
3 answers
1.0K+ views
I'm using a grid in an MVVM environment. The grid that starts out with now rows. Once the Add New Row button is clicked the grid adds a row but the user can keep clicking the button and add new rows without any validation on existing rows. How can I either disable the New Row button, perform validation on the current row before adding a new row or client side validate all rows before trying to update to the server. I don't care if a user wants to add several rows and then edit the columns before saving the changes back to the server but I need to validate all required fields first.

 
Alexander Popov
Telerik team
 answered on 09 Jan 2014
1 answer
274 views
Hello,

We are currently working on a kendo web project where we need to be able to have a button on a grid that opens a kendo modal window and then creates a custom viewmodel to be consumed by the current kendo window that can be passed into another kendo window.  However, I can't seem to find a way to bind a ViewModel into the kendo window.  Any help would be appreciated.  Here is my code:

The problems that I know about are:
  • I don't know where to bind the observable to the window.
  • How to pass the same observable from window to window.
Thanks,

Colin
<!DOCTYPE html>
<html>
    <head>
        <link href="bootstrap.min.css" rel="stylesheet"/>
        <link href="kendo.common.min.css" rel="stylesheet" />
        <link href="kendo.bootstrap.min.css" rel="stylesheet" />
        <script type="text/javascript" src="jquery.min.js"></script>
        <script type="text/javascript" src="kendo.all.min.js"></script>
        <script type="text/javascript" src="bootstrap.min.js"></script>
         
    </head>
    <body>
        <div id="gridModal"></div>
        <div id="transaction"></div>
    </body>
</html>
 
<script type="text/x-kendo-template" id="template">
    <div>
        <div>
            <div>
            Current Transaction Fee
            </div>
            <div>
                <input id="locationFeeAmount" data-bind="value: locationFee">
            </div>
            <a id="toModal2" type="button" class="k-button k-button-icontext" onclick="showSecondModal();">To Modal 2</a>
        </div>
    </div>
</script>
 
<script type="text/x-kendo-template" id="modal2">
    <div>
        <div>
            <div>
            Cuurent Transaction Fee:
            </div>
            <div>
                <input value=#=locationFee #>
            </div>
            <button class="k-button" id"toModal2"></button>
        </div>
    </div>
</script>
<script>
$(function () {
        var locationFeeAdjustments = [{
        "CustomerName": "Fred Flinstone",
        "CustomerNumber": 123456234,
        "CustomerTransactionNumber": 2323423456789,
        "RepName": "Bugs Bunny",
        "CustomerBill": 34454.55,
        "locationFee": 89.22,
        "testField": "Bugs"},
        {"CustomerName": "Joe Smith",
        "CustomerNumber": 123434456,
        "CustomerTransactionNumber": 23456234556789,
        "RepName": "Jack Smith",
        "CustomerBill": 34454.55,
        "locationFee": 89.22,
        "testField": "Jack"
    }];
 
    $("#gridModal").kendoGrid({
        dataSource:{
            data: locationFeeAdjustments,
            schema: {
                model: {
                    id: "Id",
                    fields: {
                        CustomerName: { type: "string"},
                        CustomerNumber: { type: "number"},
                        CustomerTransactionNumber: { type: "number"},
                        RepName: { type: "string"},
                        CustomerBill: { type: "string"},
                        locationFee: { type: "string"}
                        
                    }
                }
            }
        },
        pageable: true,
        height: 430,
        toolbar: ["create"],
        columns: [
            { field: "CustomerName", title: "Customer Name"},
            { field: "CustomerNumber", title: "Customer Number"},
            { field: "CustomerTransactionNumber", title: "Customer Transaction Number"},
            { field: "RepName", title: "Officer Name"},
            { field: "CustomerBill", title: "Bill Due"},
            { field: "locationFee", title: "Location Fee"},
            { command: {text: "Waive Location Fee", click: showTransactionModal}}],
        editable: "inline",
        save: function () {
            this.refresh();
        }
    });
 
    wnd = $("#transaction")
        .kendoWindow({
            title: "Transaction Fee",
            modal: true,
            visible: false,
            resizable: false,
            width: 300
        }).data("kendoWindow");
 
    detailsTemplate = kendo.template($("#template").html());
 
    function showTransactionModal(e) {
        e.preventDefault();
        var dataItem = this.dataItem($(e.currentTarget).closest("tr"));
 
        kendoWindowViewModel = setViewModel(dataItem);
        wnd.content(detailsTemplate(kendoWindowViewModel));
        console.log(kendoWindowViewModel);
        wnd.center().open();
    };
 
});
 
function setViewModel(dataItem){
    var kendoWindowViewModel = kendo.observable({
    CustomerName: dataItem.CustomerName,
    CustomerNumber: dataItem.CustomerNumber,
    CustomerTransactionNumber: dataItem.CustomerTransactionNumber,
    CustomerBill: dataItem.CustomerBill,
    locationFee: dataItem.locationFee,
    Approver: "",
    AdjustmentAmount: ""});
 
    return kendoWindowViewModel;
}
 
 
 
function showSecondModal(){
    console.log('hit');
    console.log(kendoWindowViewModel);
     
}
</script>
Alexander Valchev
Telerik team
 answered on 09 Jan 2014
6 answers
370 views
We've built a Kendo UI grid report that works fine with Chrome, Firefox, Safari(windows), and IE11 using Windows 8.1 pro,
JQuery 1.9.1, and Kendo UI 2013.3.119.

There is a problem displaying the Grid using IE 11.0.2 with Windows 7, JQuery 1.9.1, and Kendo UI 2013.3.119.

Can you repeat this problem?  Any solutions to this problem?  
Kiril Nikolov
Telerik team
 answered on 09 Jan 2014
6 answers
198 views
Hi,

we are using several charts in our application. Due to internatiolaisation we want to change the label formatters for dates and other automatically rendered values.

As we don't want to edit every single chart instance by hand, we are looking for a way to set the default formatters and renderers globally.

How can we do it? Why ist it not described in the culture packages?

Thanks
Andreas
Top achievements
Rank 1
 answered on 09 Jan 2014
3 answers
251 views
I have a search form beside the grid and when someone does a search I need it filter the grid. Is the below code how I would accomplish this or is this only a client-side solution? The filtering will happen on the server side. If the below code is also used server side filtering, how do I interpret the querystring on the GET request?


this.submitSearch = function () {
    dataSource.filter(
        { field: "FirstName", operator: "eq", value: $('FirstName').val() },
        { field: "LastName", operator: "eq", value: $('LastName').val() },
        { field: "Email", operator: "eq", value: $('Email').val() },
        { field: "Phone", operator: "eq", value: $('Phone').val() },
        { field: "ReservationDate", operator: "eq", value: $('ReservationDate').val() }
    );
}
Atanas Korchev
Telerik team
 answered on 09 Jan 2014
0 answers
90 views
I was figuring out how to work better with the TabStrip, and thought I would upload the project I worked on in case anybody else might find it useful.
This is a visual studio 2013 project.
Atlas
Top achievements
Rank 1
 asked on 08 Jan 2014
1 answer
165 views
I am using kendo ui Donut chart to display category and its
value on Donut chart.

When there is  5
category data in “Model.ChartDataList”
the Donut chart animation is working  fine.
But when it receive only 1 category data in “Model.ChartDataList” the Donut chart animation is not working.

Is there any way to slow the speed of animation of Donut
chart ?

How can I control the animation of Donut chart ?

 And why it is not animating when there is only 1 category data in “Model.ChartDataList”.

Class ChartData{

public string CategoryName {get;set;}
public int Value {get;set;}

}

Class donutViewModel{

public  List< ChartData> ChartDataList {get;set;}

}

 

  @(Html.Kendo().Chart(Model.ChartDataList)
      .Name("Chart")
      .Legend(legend => legend.Visible(false))
       .Title(title => title.Font("Bold 12px Calibri").Text("CHART"))
        
      .Tooltip(tooltip => tooltip
                          .Visible(true)
                          .Template("${category}-${value}%")
                          .Format("{0}%")
         
      )
            .Series(series =>
            {
                   series.Donut(m => m.Value,m => m.CategoryName);
            })
  )

Iliana Dyankova
Telerik team
 answered on 08 Jan 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?