├── README.md ├── examples ├── KendouiExtendedApi.sln ├── KendouiExtendedApi.v11.suo └── KendouiExtendedApi │ ├── Content │ ├── Images │ │ └── external-link.gif │ ├── KendoExt │ │ ├── Images │ │ │ ├── medium-sprites.png │ │ │ ├── medium-wait.gif │ │ │ └── small-sprites.gif │ │ └── kendo.ext.css │ ├── Site.css │ └── rainbow │ │ ├── all-hallows-eve.css │ │ ├── blackboard.css │ │ ├── espresso-libre.css │ │ ├── github.css │ │ ├── obsidian.css │ │ ├── pastie.css │ │ ├── solarized-dark.css │ │ ├── solarized-light.css │ │ ├── sunburst.css │ │ ├── tomorrow-night.css │ │ ├── tricolore.css │ │ ├── twilight.css │ │ └── zenburnesque.css │ ├── Index.html │ ├── Partial │ ├── AlertDialog.html │ ├── AlertDialogCode.html │ ├── BorderLayout.html │ ├── BorderLayoutCode.html │ ├── ContextMenu.html │ ├── ContextMenuCode.html │ ├── Dialog.html │ ├── DialogCode.html │ ├── DropDownGrid.html │ ├── DropDownGridCode.html │ ├── DropDownTreeView.html │ ├── DropDownTreeViewCode.html │ ├── Editor.html │ ├── EditorCode.html │ ├── ExtMultiLineInputDialog.html │ ├── ExtMultiLineInputDialogCode.html │ ├── InputDialog.html │ ├── InputDialogCode.html │ ├── Navigation.html │ ├── OkCancelDialog.html │ ├── OkCancelDialogCode.html │ ├── TextBox.html │ ├── TextBoxCode.html │ ├── WaitDialog.html │ ├── WaitDialogCode.html │ ├── YesNoDialog.html │ └── YesNoDialogCode.html │ ├── Scripts │ ├── KendoUiExt.AlertDialog.js │ ├── KendoUiExt.BorderLayout.js │ ├── KendoUiExt.ContextMenu.js │ ├── KendoUiExt.Dialog.js │ ├── KendoUiExt.DropDownGrid.js │ ├── KendoUiExt.DropDownTreeView.js │ ├── KendoUiExt.Editor.js │ ├── KendoUiExt.InputDialog.js │ ├── KendoUiExt.Layout.js │ ├── KendoUiExt.MultiLineInputDialog.js │ ├── KendoUiExt.OkCancelDialog.js │ ├── KendoUiExt.Router.js │ ├── KendoUiExt.TextBox.js │ ├── KendoUiExt.WaitDialog.js │ ├── KendoUiExt.YesNoDialog.js │ └── libs │ │ ├── kendo.web.ext.js │ │ ├── rainbow.css.js │ │ ├── rainbow.generic.js │ │ ├── rainbow.html.js │ │ ├── rainbow.javascript.js │ │ └── rainbow.js │ └── Web.config ├── js └── kendo.web.ext.js └── styles ├── images ├── medium-sprites.png ├── medium-wait.gif └── small-sprites.gif └── kendo.ext.css /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/README.md -------------------------------------------------------------------------------- /examples/KendouiExtendedApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi.sln -------------------------------------------------------------------------------- /examples/KendouiExtendedApi.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi.v11.suo -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/Images/external-link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/Images/external-link.gif -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/KendoExt/Images/medium-sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/KendoExt/Images/medium-sprites.png -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/KendoExt/Images/medium-wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/KendoExt/Images/medium-wait.gif -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/KendoExt/Images/small-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/KendoExt/Images/small-sprites.gif -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/KendoExt/kendo.ext.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/KendoExt/kendo.ext.css -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/Site.css -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/rainbow/all-hallows-eve.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/rainbow/all-hallows-eve.css -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/rainbow/blackboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/rainbow/blackboard.css -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/rainbow/espresso-libre.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/rainbow/espresso-libre.css -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/rainbow/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/rainbow/github.css -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/rainbow/obsidian.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/rainbow/obsidian.css -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/rainbow/pastie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/rainbow/pastie.css -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/rainbow/solarized-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/rainbow/solarized-dark.css -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/rainbow/solarized-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/rainbow/solarized-light.css -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/rainbow/sunburst.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/rainbow/sunburst.css -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/rainbow/tomorrow-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/rainbow/tomorrow-night.css -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/rainbow/tricolore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/rainbow/tricolore.css -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/rainbow/twilight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/rainbow/twilight.css -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Content/rainbow/zenburnesque.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Content/rainbow/zenburnesque.css -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Index.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/AlertDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/AlertDialog.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/AlertDialogCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/AlertDialogCode.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/BorderLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/BorderLayout.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/BorderLayoutCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/BorderLayoutCode.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/ContextMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/ContextMenu.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/ContextMenuCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/ContextMenuCode.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/Dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/Dialog.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/DialogCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/DialogCode.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/DropDownGrid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/DropDownGrid.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/DropDownGridCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/DropDownGridCode.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/DropDownTreeView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/DropDownTreeView.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/DropDownTreeViewCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/DropDownTreeViewCode.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/Editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/Editor.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/EditorCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/EditorCode.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/ExtMultiLineInputDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/ExtMultiLineInputDialog.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/ExtMultiLineInputDialogCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/ExtMultiLineInputDialogCode.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/InputDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/InputDialog.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/InputDialogCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/InputDialogCode.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/Navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/Navigation.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/OkCancelDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/OkCancelDialog.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/OkCancelDialogCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/OkCancelDialogCode.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/TextBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/TextBox.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/TextBoxCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/TextBoxCode.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/WaitDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/WaitDialog.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/WaitDialogCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/WaitDialogCode.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/YesNoDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/YesNoDialog.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Partial/YesNoDialogCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Partial/YesNoDialogCode.html -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/KendoUiExt.AlertDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/KendoUiExt.AlertDialog.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/KendoUiExt.BorderLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/KendoUiExt.BorderLayout.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/KendoUiExt.ContextMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/KendoUiExt.ContextMenu.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/KendoUiExt.Dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/KendoUiExt.Dialog.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/KendoUiExt.DropDownGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/KendoUiExt.DropDownGrid.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/KendoUiExt.DropDownTreeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/KendoUiExt.DropDownTreeView.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/KendoUiExt.Editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/KendoUiExt.Editor.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/KendoUiExt.InputDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/KendoUiExt.InputDialog.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/KendoUiExt.Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/KendoUiExt.Layout.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/KendoUiExt.MultiLineInputDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/KendoUiExt.MultiLineInputDialog.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/KendoUiExt.OkCancelDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/KendoUiExt.OkCancelDialog.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/KendoUiExt.Router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/KendoUiExt.Router.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/KendoUiExt.TextBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/KendoUiExt.TextBox.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/KendoUiExt.WaitDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/KendoUiExt.WaitDialog.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/KendoUiExt.YesNoDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/KendoUiExt.YesNoDialog.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/libs/kendo.web.ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/libs/kendo.web.ext.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/libs/rainbow.css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/libs/rainbow.css.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/libs/rainbow.generic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/libs/rainbow.generic.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/libs/rainbow.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/libs/rainbow.html.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/libs/rainbow.javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/libs/rainbow.javascript.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Scripts/libs/rainbow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Scripts/libs/rainbow.js -------------------------------------------------------------------------------- /examples/KendouiExtendedApi/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/examples/KendouiExtendedApi/Web.config -------------------------------------------------------------------------------- /js/kendo.web.ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/js/kendo.web.ext.js -------------------------------------------------------------------------------- /styles/images/medium-sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/styles/images/medium-sprites.png -------------------------------------------------------------------------------- /styles/images/medium-wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/styles/images/medium-wait.gif -------------------------------------------------------------------------------- /styles/images/small-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/styles/images/small-sprites.gif -------------------------------------------------------------------------------- /styles/kendo.ext.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsExtensions/kendoui-extended-api/HEAD/styles/kendo.ext.css --------------------------------------------------------------------------------