This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#box { | |
display: -webkit-flex; | |
display: -moz-flex; | |
display: flex; | |
-webkit-justify-content: center; | |
-moz-justify-content: center; | |
justify-content: center; | |
-webkit-align-items: center; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html> | |
<body> | |
<div id="uploadFile"> | |
<input type="file" id="userfile"> | |
<div id="messages"> | |
</div> | |
</div> | |
<script> | |
(function(){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<script src="../../js/jquery.min.js"></script> | |
<script src="../../js/kendo.all.min.js"></script> | |
<script> | |
$('document').ready(function() { | |
viewModel = kendo.observable({ | |
optionsData: [ | |
{optionValue:1, optionName: "test1"}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form id="testView"> | |
Firstname: <input id="firstName" type="text" data-bind="value: fname"><br/> | |
Lastname: <input id="lastName" type="text" data-bind="value: lname"><br/> | |
Fullname: <input id="fullname" type="text" data-bind="value: fullname"><br/> | |
<input type="submit"> | |
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="../../js/jquery.min.js" /> | |
<script src="../../js/kendo.all.min.js" /> | |
<script> | |
$('document').ready(function(){ | |
var viewModel = kendo.observable({ | |
fname: "Sagar", | |
lname: "Ganatra", | |
fullname: function() { | |
return this.get("fname") + ' ' + this.get("lname"); |
NewerOlder