Telerik Forums
Kendo UI for jQuery Forum
12 answers
878 views
How can I bind a select element to a kendo.data.DataSource? I know a select element can bind to an array of JavaScript objects but I would like to use the kendo.data.DataSource instead. I've been following the example in the demo here although it doesn't use a DataSource.

The error message I get in the console of the simulator is "Uncaught ReferenceError: DEP_ID is not defined"

Some example code, that shows what I'm trying to do and returns the above error, is below. Note that I am using Graphite and have included the SQLite plugin in my project.

<div data-role="view" id="tabstrip-Employees" data-title="Employees" data-model="employeeVM">
    Department
    <select data-bind="source: departmentSource"
        data-value-field="DEP_ID" data-text-field="DEP_Name">
    </select>
</div>

var employeeVM = kendo.observable({
    departmentSource: new kendo.data.DataSource({
        transport: {
            read: function(options){
                data.db.transaction(function(tx) {
                    tx.executeSql("SELECT DEP_ID, DEP_Name FROM Department", [], 
                        function (tx, rs) {
                            options.success(data.toArray(rs));
                        }, 
                        data.onError);
                });
            }
        }
    });
});

var data = {
    db: null,
    
    init: function() {
        data.openDb();
        data.createTables();
    },
    
    openDb: function() {
        if(window.sqlitePlugin !== undefined) {
            data.db = window.sqlitePlugin.openDatabase("SuperStore");
        } else {
            // For debugging in simulator fallback to native SQL Lite
            console.log("Use built in SQL Lite");
            data.db = window.openDatabase("SuperStore", "1.0", "SuperStore", 200000);
        }
    },
    
    createTables: function() {
        data.db.transaction(function(tx) {
            tx.executeSql("CREATE TABLE IF NOT EXISTS [Department]( \
                [DEP_ID] INTEGER PRIMARY KEY ASC, \
                [DEP_Name] TEXT NULL \
            )", []);
            tx.executeSql("DELETE FROM Department");
            tx.executeSql("INSERT INTO Department(DEP_ID, DEP_Name) VALUES (?,?)",
                [1, "Department 1"]);
            tx.executeSql("INSERT INTO Department(DEP_ID, DEP_Name) VALUES (?,?)",
                [2, "Department 2"]);
            tx.executeSql("INSERT INTO Department(DEP_ID, DEP_Name) VALUES (?,?)",
                [3, "Department 3"]);
        }, data.onError);
    },
    
    toArray: function(result) {
        var length = result.rows.length;
        var data = new Array(length);
        for (var i = 0; i < length; i++) {
            data[i] = result.rows.item(i);
        }
        return data;
    },
    
    onError: function(tx, e) {
        if(e !== undefined){
            console.log("Error: " + e.message);
        }
        else if(tx !== undefined){
            console.log("Error: " + tx.message);
        }
    }    
};

// Wait for PhoneGap to load
document.addEventListener("deviceready", onDeviceReady, false);

// PhoneGap is ready
function onDeviceReady() {
    data.init()
    window.app = new kendo.mobile.Application(document.body, { transition: "slide", layout: "mobile-tabstrip", initial: "#tabstrip-Employees" });
    navigator.splashscreen.hide();
}



Alexander Valchev
Telerik team
 answered on 28 Mar 2014
1 answer
203 views
Dear Support Team,

My Company bought Kendo UI Complete version. What I would like to do is, I want to create as Kendo UI Mobile Project and want to have default template for mobile from Kendo UI at the Visual Studio 2012 new Project Dialog. How can I install Kendo UI to Visual Studio 2012?

I also install ICENIUM demo version. With this, I can see project Template at the Visual Studio. Please let me know without using ICENIUM, is there a way to get project template if I only have kendo UI complete.


Thanks & Regards,
UFIS
Sebastian
Telerik team
 answered on 28 Mar 2014
5 answers
716 views
Hi,

How can we know that the selected TreeView Node is having the Child Nodes or Not.

Help is required on this.

Regards,
Satish.N
Dimiter Madjarov
Telerik team
 answered on 28 Mar 2014
1 answer
91 views
I have a stock chart, and when zoomed with the mouse wheel it goes deeper and deeper, all the way to hours and minutes.

I want to have the zoom limited to seven days. 

Is this possible?
Iliana Dyankova
Telerik team
 answered on 28 Mar 2014
1 answer
178 views
Hi

How can i disable the loading animation while remote view is loading? Why?

because some times the loading animation is frozen. I think that is because HTML apps are single thread.

Also i've used the app.showLoading while i use ajax to get data for a chart but the animation always is frozen.

I love Kendo UI! but i want to use spin.js instead. Sorry but when i use ajax with spin.js, the spinner animation run very smooth

please advise.

Irina
Kiril Nikolov
Telerik team
 answered on 28 Mar 2014
1 answer
147 views
Notifications are overlapping in IE11. This can be repoduced with the Kendo demo:  http://demos.telerik.com/kendo-ui/web/notification/index.html

Latest Chrome and Firefox are OK.

Thanks
Holger
Dimo
Telerik team
 answered on 28 Mar 2014
1 answer
119 views
Hello,

I have a kendo grid that has template columns with "select" button. All this works fine. now when the user clicks that select I want the id to be passed into another page that has 2 controls : a kendo grid(populated from the database according to the id supplied) and another say listbox(with 4 fields also populated from the database according to the id supplied )

How do I get both controls populated with data?
click "select"--> populate grid and list/table

Can you give me a sample for what I am trying to do?
Dimiter Madjarov
Telerik team
 answered on 28 Mar 2014
2 answers
81 views
I have a modelview made with this code: 
<div data-role="modalview" id="windowPopup" data-modal="false" data-close="closeFunction"> 
<ul data-role="listview" data-style="inset" data-type="group"> 
<li>
.....
</li>
</ul>
</div> 

The function closeFunction () is never started. 
This is because data-modal false? Is there a solution? 

I've tried using the data event-open and it works well. 

I tried with 2014.1 318 and 2013 versions.
Kiril Nikolov
Telerik team
 answered on 28 Mar 2014
6 answers
275 views
Hello,

i have a ASP .NET MVC app for Desktop and mobile devices. I have downloaded Kendo ui for asp net MVC and included folowing code in my _Layout.cshtml and _Layout.Tablet.cshtml.
@Styles.Render("~/Content/kendo/css")
<link rel="stylesheet" href="http://cdn.kendostatic.com/2013.3.1324.440/styles/kendo.common.min.css" />
<link rel="stylesheet" href="http://cdn.kendostatic.com/2013.3.1324.440/styles/kendo.default.min.css" />
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/kendo")
<script src="http://cdn.kendostatic.com/2013.3.1324.440/js/kendo.all.min.js"></script>
<script src="http://cdn.kendostatic.com/2013.3.1324.440/js/kendo.aspnetmvc.min.js"></script>
The Desktop browser can run the grid and Display data invoking read.action method in Controller. But when i run app on tablet (ipad or android) does not matter which browser it cannot load the grid and just see wait Cursor. When i debug seems it calls Index method in Controller but no read Action method.
Kiril Nikolov
Telerik team
 answered on 28 Mar 2014
3 answers
368 views
Hello!

I'm having a problem considering binding min-max values of numeric textbox using kendo.data.ObservableObject or any attributes, etc.

But before we dwell further on the problem here is my code:

javascript: 
001.var tab;
002.var layout;
003.var currnetInstances = 0;
004.var mainWin = { "showTabs": true };
005. 
006.$(document).ready(function () {
007.    tab = $("#tabstrip").kendoTabStrip({
008.        animation: false
009.    }).data("kendoTabStrip");
010. 
011.    $("#butt").kendoButton({
012.        icon: "add",
013.        click: function (e) {
014.            openForm("myForm", "form-template-one", "Form: Ime in Priimek")
015.        }
016.    });
017. 
018.    $("#butt2").kendoButton({
019.        icon: "add",
020.        click: function (e) {
021.            if (mainWin.showTabs == true) {
022.                mainWin.showTabs = false;
023.                $("#butt").val("Odpri v oknu");
024.                 
025.            }
026.            else if (mainWin.showTabs == false) {
027.                mainWin.showTabs = true;
028.                $("#butt").val("Dodaj tab");
029.            }
030.             
031.        }
032.    });
033.});
034. 
035.templateLoader.loadExtTemplate("views/templates.html");
036. 
037. 
038. 
039.function openForm(formId, formTemplateId, formName) {
040.    var template = kendo.template($("#" + formTemplateId).html(), { useWithBlock: false });
041.     
042.    displayForm(formId, formTemplateId, formName, template);
043.}
044. 
045.function displayForm(formId, formTemplateId, formName) {
046.    ++currnetInstances;
047. 
048.    formId = formId + "_" + currnetInstances;
049. 
050.    if (mainWin.showTabs == true) {
051.        tab.append(
052.            {
053.                text: formName,
054.                encoded: false,                             // Allows use of HTML for item text
055.                content: "<div id='" + formId + "'></div>"
056.            }
057.        );
058. 
059.        tab.activateTab($("#tabstrip .k-last"));
060.    }
061.    else if (mainWin.showTabs == false) {
062.        $(document.body).prepend("<div id='" + formId + "'></div>");
063.        var win = $("#" + formId).kendoWindow({
064.            animation: false,
065.            width: 400,
066.            height:400,
067.            title: formName,
068.            visible: false
069.        }).data("kendoWindow");
070. 
071.        win.center();
072.        win.open();
073.    }
074. 
075.    if (typeof(layout == "undefined")) {
076.        layout = new kendo.Layout(formTemplateId);
077.    }
078. 
079.    var formModel = new kendo.data.ObservableObject({
080.        id1: "k-textbox",
081.        id2: "k-textbox",
082.        id3: "k-textbox",
083.        labelValue1: "ime",
084.        labelValue2: "priimek",
085.        labelValue3: "ime in priimek",
086.        value1: "",
087.        value2: "",
088.        combined: function (e) {
089.            return this.get("value1") + " " + this.get("value2");
090.        },
091.        numericBG: function (e) {
092.            return "green";
093.        },
094.        numericVal: -2,
095.        knumeric_class: function (e) {
096.            if (parseInt(this.get("numericVal")) < 0) {
097.                return "numeric_negative"
098.            }
099.            else {
100.                return "numeric_positive"
101.            }
102.        },
103.        numChange: function (e) {
104.            this.knumeric_class();
105.        },
106.        num: function () { return 15;}
107.    })
108.     
109.    formModel.bind("change", function (e) {
110.        var varia = formModel.toJSON();
111.        console.log(varia);
112.    });
113. 
114.    layout.render("#" + formId);
115. 
116.    kendo.bind($("#" + formId), formModel);
117.}

templates html:
01.<script type="text/x-kendoui-template" id="form-template-one" data-use-with-blocks="false">
02.    <div class='form'>
03.        <label style='display:inline-block;width:160px;line-height:30px;' data-bind='attr: {for: id1}, text: labelValue1'"></label><br />
04.        <input class='' data-bind="attr: {class: id1}, value: value1">
05.        <br /><br />
06. 
07.        <label style='display:inline-block;width:160px;line-height:30px;' data-bind='attr: {for: id2}, text: labelValue2'"></label><br />
08.        <input class='' data-bind="attr: {class: id2}, value: value2">
09.        <br /><br />
10. 
11.        <label style='display:inline-block;width:160px;line-height:30px;' data-bind='attr: {for: id3}, text: labelValue3'"></label><br />
12.        <input class='' data-bind="attr: {class: id3}, value: combined" ><br />
13.         
14.        <div data-bind="attr: {class: knumeric_class}">
15.            <label style='display:inline-block;width:160px;line-height:30px;'  data-bind='attr: {for: id3}, text: labelValue3'"></label><br />
16.             
17.            <input data-role="numerictextbox" data-bind="value: numericVal"  data-spinners="false" style='text-indent:-5px;'>
18.             
19.        </div>
20.    </div>
21.</script>

As seen from the examples I load my template from a remote file, then I use layout to write it to DOM in its proper place.
Now the problem is that I cant use the # based syntax in the template as it's simply not executing (not event the alerts, console log or anything else) and I would need to use the kendo.data.observableobject to bind the appropriate data into widgets since the templates should be reusable, everything else is of course set through the observable which in turn is generated on per case basis.

So to clarify my question again: how to bind numeric textbox values for min and max (and possibly attr which it actively refuses to do so) using remote templates and the observableobject.
Petyo
Telerik team
 answered on 28 Mar 2014
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
DatePicker
Spreadsheet
Upload
ListView (Mobile)
ComboBox
TabStrip
MultiSelect
AutoComplete
ListView
Menu
Templates
Gantt
Validation
TreeList
Diagram
NumericTextBox
Splitter
PanelBar
Application
Map
Drag and Drop
ToolTip
Calendar
PivotGrid
ScrollView (Mobile)
Toolbar
TabStrip (Mobile)
Slider
Button (Mobile)
Filter
SPA
Drawing API
Drawer (Mobile)
Globalization
LinearGauge
Sortable
ModalView
Hierarchical Data Source
Button
FileManager
MaskedTextBox
View
Form
NavBar
Notification
Switch (Mobile)
SplitView
ListBox
DropDownTree
PDFViewer
Sparkline
ActionSheet
TileLayout
PopOver (Mobile)
TreeMap
ButtonGroup
ColorPicker
Pager
Styling
Chat
MultiColumnComboBox
Dialog
DateRangePicker
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Accessibility
Effects
PivotGridV2
Licensing
ScrollView
Switch
TextArea
BulletChart
QRCode
ResponsivePanel
Wizard
CheckBoxGroup
Localization
Barcode
Breadcrumb
Collapsible
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
TaskBoard
Popover
DockManager
TimePicker
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
BottomNavigation
Ripple
SkeletonContainer
Avatar
Circular ProgressBar
FlatColorPicker
SplitButton
Signature
Chip
ChipList
VS Code Extension
AIPrompt
PropertyGrid
Sankey
Chart Wizard
OTP Input
SpeechToTextButton
InlineAIPrompt
StockChart
ContextMenu
DateTimePicker
RadialGauge
ArcGauge
AICodingAssistant
SmartPasteButton
PromptBox
SegmentedControl
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?