Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here is a link of jsfiddle

$(document).ready(function () {
        //window.localStorage.setItem("Nova", 1);
        $("#routes").kendoDropDownList({
            dataTextField: "Name",
            dataValueField: "ID",
            //value: 0,
            dataSource: {
                type: "application/jsonp",
                transport: {
                    read: {
                        url: "http://" + servername + 
"/uBillingServices/Administration/Administration.svc/getRoute",
                        dataType: "json",
                        data: {
                            ID: 0
                        }
                    }
                }
            },

            change: function (arg) {
                var RoutesRow = this.select();
                selectedID = this.dataItem(RoutesRow).ID;
                PremisesGrid2.getKendoGrid().dataSource.read();
            }
        });
        if (PremisesGrid2 == "") {
            //selectedID = $('#routes').data("kendoDropDownList").select().val();
            PremisesGrid2 = $("#assignedRoute").kendoGrid({
                dataSource: {
                    type: "application/jsonp",
                    transport: {
                        read:
                                {
                                    url: "http://" + servername + "/uBillingServices/Premise/Premise.svc/GetAllPremisesByRoute",
                                    dataType: "json",
                                    data: function () {
                                        return {

                                            Route_ID: selectedID,
                                            UserName: userName,
                                            WorkStation: workStation

                                        }
                                    }
                                }
                    }, pageSize: 10,
                    serverPaging: true,
                    schema: {
                        model: {
                            fields: {
                                ID: { type: "string" },
                                PostalCode: { type: "string" },
                                Latitude: { type: "string" },
                                Longitude: { type: "string" },
                                IsMember: { type: "string" }
                            }
                        },
                        data: function (result) {
                            return result.rows || result;
                        },
                        total: function (result) {
                            var data = this.data(result);
                            return result.totalRows || result.length || 0; ;
                        }
                    }
                }, change: function (arg) {
                    myIndex = this.select().index();
                    var PremisesRow = this.select();
                    selectedIDPremise = this.dataItem(PremisesRow).ID;
                },
                selectable: "multiple",
                scrollable: true,
                filterable: true,
                groupable: false,
                pageable: {
                    numeric: true,
                    pageSizes: true,
                    previousNext: false
                },
                sortable: {
                    mode: "single",
                    allowUnsort: false
                },
                height: 400,
                columns: [
                    { field: "PostalCode", title: "Assigned Route" }
                    ]
            });
        }
        else if (PremisesGrid2 != "") {

            var dolzina = $("#assignedRoute").getKendoGrid().dataSource._data.length;
            for (var i = 0; i <= dolzina; i++) {
                $("#assignedRoute").getKendoGrid().dataSource._data.pop();
            }
            //selectedID = $("#routes").data("kendoDropDownList").select();
            PremisesGrid2.getKendoGrid().dataSource.transport.options.read.data.Route_ID = selectedID;

            //var data = [{}];
            //PremisesGrid2.getKendoGrid().dataSource.data(data)
            PremisesGrid2.getKendoGrid().dataSource.read();
        }

of my view and also part of the code where I have a problem. The problem is with the second grid. It is not suppose to be empty when I start it in browser, it is suppose to contain the dataSource of the selected Route (the first Route selected in the DropDown List). And then when I select another Route it works fine.

How can I resolve this?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.