├── .gitattributes ├── .gitignore ├── App_Data ├── Example.mdf └── Example_log.ldf ├── App_Start ├── BundleConfig.cs ├── FilterConfig.cs ├── RouteConfig.cs └── WebApiConfig.cs ├── Content ├── DataTables-1.9.4 │ ├── docs │ │ └── media │ │ │ ├── css │ │ │ ├── doc.css │ │ │ ├── shCore.css │ │ │ └── shThemeDataTables.css │ │ │ └── images │ │ │ ├── arrow.jpg │ │ │ ├── arrow.png │ │ │ └── extended.png │ ├── extras │ │ ├── AutoFill │ │ │ └── media │ │ │ │ ├── css │ │ │ │ └── AutoFill.css │ │ │ │ ├── docs │ │ │ │ └── media │ │ │ │ │ ├── css │ │ │ │ │ ├── doc.css │ │ │ │ │ ├── shCore.css │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ └── images │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ ├── arrow.png │ │ │ │ │ └── extended.png │ │ │ │ └── images │ │ │ │ └── filler.png │ │ ├── ColReorder │ │ │ └── media │ │ │ │ ├── css │ │ │ │ └── ColReorder.css │ │ │ │ ├── docs │ │ │ │ └── media │ │ │ │ │ ├── css │ │ │ │ │ ├── doc.css │ │ │ │ │ ├── shCore.css │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ └── images │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ ├── arrow.png │ │ │ │ │ └── extended.png │ │ │ │ └── images │ │ │ │ └── insert.png │ │ ├── ColVis │ │ │ └── media │ │ │ │ ├── css │ │ │ │ ├── ColVis.css │ │ │ │ └── ColVisAlt.css │ │ │ │ ├── docs │ │ │ │ └── media │ │ │ │ │ ├── css │ │ │ │ │ ├── doc.css │ │ │ │ │ ├── shCore.css │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ └── images │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ ├── arrow.png │ │ │ │ │ └── extended.png │ │ │ │ └── images │ │ │ │ └── button.png │ │ ├── FixedColumns │ │ │ └── docs │ │ │ │ └── media │ │ │ │ ├── css │ │ │ │ ├── doc.css │ │ │ │ ├── shCore.css │ │ │ │ └── shThemeDataTables.css │ │ │ │ └── images │ │ │ │ ├── arrow.jpg │ │ │ │ ├── arrow.png │ │ │ │ └── extended.png │ │ ├── Scroller │ │ │ └── media │ │ │ │ ├── css │ │ │ │ └── dataTables.scroller.css │ │ │ │ ├── docs │ │ │ │ └── media │ │ │ │ │ ├── css │ │ │ │ │ ├── doc.css │ │ │ │ │ ├── shCore.css │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ └── images │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ ├── arrow.png │ │ │ │ │ └── extended.png │ │ │ │ └── images │ │ │ │ └── loading-background.png │ │ └── TableTools │ │ │ └── media │ │ │ ├── css │ │ │ ├── TableTools.css │ │ │ └── TableTools_JUI.css │ │ │ ├── images │ │ │ ├── background.png │ │ │ ├── collection.png │ │ │ ├── collection_hover.png │ │ │ ├── copy.png │ │ │ ├── copy_hover.png │ │ │ ├── csv.png │ │ │ ├── csv_hover.png │ │ │ ├── pdf.png │ │ │ ├── pdf_hover.png │ │ │ ├── print.png │ │ │ ├── print_hover.png │ │ │ ├── psd │ │ │ │ ├── collection.psd │ │ │ │ ├── copy document.psd │ │ │ │ ├── file_types.psd │ │ │ │ └── printer.psd │ │ │ ├── xls.png │ │ │ └── xls_hover.png │ │ │ └── swf │ │ │ ├── copy_csv_xls.swf │ │ │ └── copy_csv_xls_pdf.swf │ ├── foundation │ │ ├── dataTables.foundation.css │ │ ├── dataTables.foundation.js │ │ └── images │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ └── media │ │ ├── css │ │ ├── demo_page.css │ │ ├── demo_table.css │ │ ├── demo_table_jui.css │ │ ├── jquery.dataTables.css │ │ └── jquery.dataTables_themeroller.css │ │ └── images │ │ ├── Sorting icons.psd │ │ ├── back_disabled.png │ │ ├── back_enabled.png │ │ ├── back_enabled_hover.png │ │ ├── favicon.ico │ │ ├── forward_disabled.png │ │ ├── forward_enabled.png │ │ ├── forward_enabled_hover.png │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sort_desc_disabled.png ├── Site.css ├── fooTable │ ├── footable-0.1.css │ ├── footable.js │ ├── footable.plugin.datatablesIntegration.js │ └── img │ │ ├── down.png │ │ ├── minus.png │ │ ├── plus.png │ │ ├── sorting_sprite.png │ │ └── up.png ├── foundation │ ├── app.css │ ├── foundation.css │ ├── foundation.mvc.css │ ├── foundation_icons_general │ │ ├── fonts │ │ │ ├── general_foundicons.eot │ │ │ ├── general_foundicons.svg │ │ │ ├── general_foundicons.ttf │ │ │ └── general_foundicons.woff │ │ └── stylesheets │ │ │ ├── general_foundicons.css │ │ │ └── general_foundicons_ie7.css │ └── normalize.css └── themes │ └── base │ ├── images │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ ├── ui-bg_flat_75_ffffff_40x100.png │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_glass_75_dadada_1x400.png │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ ├── ui-bg_glass_95_fef1ec_1x400.png │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_2e83ff_256x240.png │ ├── ui-icons_454545_256x240.png │ ├── ui-icons_888888_256x240.png │ └── ui-icons_cd0a0a_256x240.png │ ├── jquery-ui.css │ ├── jquery.ui.accordion.css │ ├── jquery.ui.all.css │ ├── jquery.ui.autocomplete.css │ ├── jquery.ui.base.css │ ├── jquery.ui.button.css │ ├── jquery.ui.core.css │ ├── jquery.ui.datepicker.css │ ├── jquery.ui.dialog.css │ ├── jquery.ui.progressbar.css │ ├── jquery.ui.resizable.css │ ├── jquery.ui.selectable.css │ ├── jquery.ui.slider.css │ ├── jquery.ui.tabs.css │ ├── jquery.ui.theme.css │ └── minified │ ├── images │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ ├── ui-bg_flat_75_ffffff_40x100.png │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_glass_75_dadada_1x400.png │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ ├── ui-bg_glass_95_fef1ec_1x400.png │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_2e83ff_256x240.png │ ├── ui-icons_454545_256x240.png │ ├── ui-icons_888888_256x240.png │ └── ui-icons_cd0a0a_256x240.png │ ├── jquery-ui.min.css │ ├── jquery.ui.accordion.min.css │ ├── jquery.ui.autocomplete.min.css │ ├── jquery.ui.button.min.css │ ├── jquery.ui.core.min.css │ ├── jquery.ui.datepicker.min.css │ ├── jquery.ui.dialog.min.css │ ├── jquery.ui.progressbar.min.css │ ├── jquery.ui.resizable.min.css │ ├── jquery.ui.selectable.min.css │ ├── jquery.ui.slider.min.css │ ├── jquery.ui.tabs.min.css │ └── jquery.ui.theme.min.css ├── Controllers ├── HomeController.cs ├── ResponsiveExampleController.cs └── RowDetailExampleController.cs ├── Data ├── ExampleDB.Designer.cs └── ExampleDB.edmx ├── DatatablesExample.csproj ├── DatatablesExample.sln ├── DemoPic.PNG ├── Global.asax ├── Global.asax.cs ├── Licence.txt ├── Models ├── HomeModel.cs ├── JQueryDataTableParamModel.cs ├── ResponsiveExampleModel.cs └── RowDetailModel.cs ├── Properties └── AssemblyInfo.cs ├── Readme.html ├── Readme.md ├── Scripts ├── DataTables-1.9.4 │ ├── docs │ │ └── media │ │ │ └── js │ │ │ ├── doc.js │ │ │ ├── jquery.js │ │ │ ├── shBrushJScript.js │ │ │ └── shCore.js │ ├── extras │ │ ├── AutoFill │ │ │ └── media │ │ │ │ ├── docs │ │ │ │ └── media │ │ │ │ │ └── js │ │ │ │ │ ├── doc.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ └── shCore.js │ │ │ │ └── js │ │ │ │ ├── AutoFill.js │ │ │ │ ├── AutoFill.min.js │ │ │ │ └── AutoFill.min.js.gz │ │ ├── ColReorder │ │ │ └── media │ │ │ │ ├── docs │ │ │ │ └── media │ │ │ │ │ └── js │ │ │ │ │ ├── doc.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ └── shCore.js │ │ │ │ └── js │ │ │ │ ├── ColReorder.js │ │ │ │ ├── ColReorder.min.js │ │ │ │ └── ColReorder.min.js.gz │ │ ├── ColVis │ │ │ └── media │ │ │ │ ├── docs │ │ │ │ └── media │ │ │ │ │ └── js │ │ │ │ │ ├── doc.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ └── shCore.js │ │ │ │ └── js │ │ │ │ ├── ColVis.js │ │ │ │ ├── ColVis.min.js │ │ │ │ └── ColVis.min.js.gz │ │ ├── FixedColumns │ │ │ ├── docs │ │ │ │ └── media │ │ │ │ │ └── js │ │ │ │ │ ├── doc.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ └── shCore.js │ │ │ └── media │ │ │ │ └── js │ │ │ │ ├── FixedColumns.js │ │ │ │ ├── FixedColumns.min.js │ │ │ │ └── FixedColumns.min.js.gz │ │ ├── Scroller │ │ │ └── media │ │ │ │ ├── docs │ │ │ │ └── media │ │ │ │ │ └── js │ │ │ │ │ ├── doc.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ └── shCore.js │ │ │ │ └── js │ │ │ │ ├── dataTables.scroller.js │ │ │ │ ├── dataTables.scroller.min.js │ │ │ │ └── dataTables.scroller.min.js.gz │ │ └── TableTools │ │ │ └── media │ │ │ └── js │ │ │ ├── TableTools.js │ │ │ ├── TableTools.min.js │ │ │ ├── TableTools.min.js.gz │ │ │ └── ZeroClipboard.js │ └── media │ │ └── js │ │ ├── jquery.dataTables.js │ │ ├── jquery.dataTables.min.js │ │ └── jquery.js ├── _references.js ├── foundation │ ├── foundation.alerts.js │ ├── foundation.clearing.js │ ├── foundation.cookie.js │ ├── foundation.dropdown.js │ ├── foundation.forms.js │ ├── foundation.joyride.js │ ├── foundation.js │ ├── foundation.magellan.js │ ├── foundation.orbit.js │ ├── foundation.placeholder.js │ ├── foundation.reveal.js │ ├── foundation.section.js │ ├── foundation.tooltips.js │ └── foundation.topbar.js ├── jquery-1.7.1-vsdoc.js ├── jquery-1.7.1.js ├── jquery-1.7.1.min.js ├── jquery-ui-1.8.20.js ├── jquery-ui-1.8.20.min.js ├── jquery.js ├── jquery.unobtrusive-ajax.js ├── jquery.unobtrusive-ajax.min.js ├── jquery.validate-vsdoc.js ├── jquery.validate.js ├── jquery.validate.min.js ├── jquery.validate.unobtrusive.js ├── jquery.validate.unobtrusive.min.js ├── knockout-2.1.0.debug.js ├── knockout-2.1.0.js ├── modernizr-2.5.3.js └── zepto.js ├── Views ├── Home │ └── Index.cshtml ├── ResponsiveExample │ └── Index.cshtml ├── RowDetailExample │ └── Index.cshtml ├── Shared │ ├── Error.cshtml │ ├── RowDetail.cshtml │ └── _Layout.cshtml ├── Web.config └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── desktopResponsive.PNG ├── packages.config ├── packages ├── EntityFramework.5.0.0 │ ├── Content │ │ ├── App.config.transform │ │ └── Web.config.transform │ ├── EntityFramework.5.0.0.nupkg │ ├── lib │ │ ├── net40 │ │ │ ├── EntityFramework.dll │ │ │ └── EntityFramework.xml │ │ └── net45 │ │ │ ├── EntityFramework.dll │ │ │ └── EntityFramework.xml │ └── tools │ │ ├── EntityFramework.PS3.psd1 │ │ ├── EntityFramework.PowerShell.Utility.dll │ │ ├── EntityFramework.PowerShell.dll │ │ ├── EntityFramework.psd1 │ │ ├── EntityFramework.psm1 │ │ ├── Redirect.VS11.config │ │ ├── Redirect.config │ │ ├── about_EntityFramework.help.txt │ │ ├── init.ps1 │ │ ├── install.ps1 │ │ └── migrate.exe ├── Foundation4.Core.4.0.8 │ ├── Foundation4.Core.4.0.8.nupkg │ └── content │ │ ├── Content │ │ └── foundation │ │ │ ├── app.css │ │ │ ├── foundation.css │ │ │ └── normalize.css │ │ └── Scripts │ │ ├── foundation │ │ ├── foundation.alerts.js │ │ ├── foundation.clearing.js │ │ ├── foundation.cookie.js │ │ ├── foundation.dropdown.js │ │ ├── foundation.forms.js │ │ ├── foundation.joyride.js │ │ ├── foundation.js │ │ ├── foundation.magellan.js │ │ ├── foundation.orbit.js │ │ ├── foundation.placeholder.js │ │ ├── foundation.reveal.js │ │ ├── foundation.section.js │ │ ├── foundation.tooltips.js │ │ └── foundation.topbar.js │ │ ├── jquery.js │ │ └── zepto.js ├── Foundation4.MVC4.1.0.408 │ ├── Foundation4.MVC4.1.0.408.nupkg │ └── content │ │ ├── Content │ │ └── foundation │ │ │ └── foundation.mvc.css │ │ ├── Foundation_readme.txt │ │ └── Views │ │ ├── Home │ │ └── Foundation_Index.cshtml │ │ └── Shared │ │ └── _Foundation.cshtml ├── Microsoft.AspNet.Mvc.4.0.20710.0 │ ├── Microsoft.AspNet.Mvc.4.0.20710.0.nupkg │ └── lib │ │ └── net40 │ │ ├── System.Web.Mvc.dll │ │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Providers.1.2 │ ├── Microsoft.AspNet.Providers.1.2.nupkg │ ├── content │ │ └── web.config.transform │ └── tools │ │ └── Install.ps1 ├── Microsoft.AspNet.Providers.Core.1.1 │ ├── Microsoft.AspNet.Providers.Core.1.1.nupkg │ ├── lib │ │ └── net40 │ │ │ └── System.Web.Providers.dll │ └── readme.html ├── Microsoft.AspNet.Razor.2.0.20710.0 │ ├── Microsoft.AspNet.Razor.2.0.20710.0.nupkg │ └── lib │ │ └── net40 │ │ ├── System.Web.Razor.dll │ │ └── System.Web.Razor.xml ├── Microsoft.AspNet.Web.Optimization.1.0.0 │ ├── Microsoft.AspNet.Web.Optimization.1.0.0.nupkg │ └── lib │ │ └── net40 │ │ └── System.Web.Optimization.dll ├── Microsoft.AspNet.WebApi.4.0.20710.0 │ └── Microsoft.AspNet.WebApi.4.0.20710.0.nupkg ├── Microsoft.AspNet.WebApi.Client.4.0.20710.0 │ ├── Microsoft.AspNet.WebApi.Client.4.0.20710.0.nupkg │ └── lib │ │ └── net40 │ │ ├── System.Net.Http.Formatting.dll │ │ └── System.Net.Http.Formatting.xml ├── Microsoft.AspNet.WebApi.Core.4.0.20710.0 │ ├── Microsoft.AspNet.WebApi.Core.4.0.20710.0.nupkg │ ├── content │ │ └── web.config.transform │ └── lib │ │ └── net40 │ │ ├── System.Web.Http.dll │ │ └── System.Web.Http.xml ├── Microsoft.AspNet.WebApi.WebHost.4.0.20710.0 │ ├── Microsoft.AspNet.WebApi.WebHost.4.0.20710.0.nupkg │ └── lib │ │ └── net40 │ │ ├── System.Web.Http.WebHost.dll │ │ └── System.Web.Http.WebHost.xml ├── Microsoft.AspNet.WebPages.2.0.20710.0 │ ├── Microsoft.AspNet.WebPages.2.0.20710.0.nupkg │ └── lib │ │ └── net40 │ │ ├── System.Web.Helpers.dll │ │ ├── System.Web.Helpers.xml │ │ ├── System.Web.WebPages.Deployment.dll │ │ ├── System.Web.WebPages.Deployment.xml │ │ ├── System.Web.WebPages.Razor.dll │ │ ├── System.Web.WebPages.Razor.xml │ │ ├── System.Web.WebPages.dll │ │ └── System.Web.WebPages.xml ├── Microsoft.Net.Http.2.0.20710.0 │ ├── Microsoft.Net.Http.2.0.20710.0.nupkg │ └── lib │ │ ├── net40 │ │ ├── System.Net.Http.WebRequest.dll │ │ ├── System.Net.Http.WebRequest.xml │ │ ├── System.Net.Http.dll │ │ └── System.Net.Http.xml │ │ └── net45 │ │ └── _._ ├── Microsoft.Web.Infrastructure.1.0.0.0 │ ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg │ └── lib │ │ └── net40 │ │ └── Microsoft.Web.Infrastructure.dll ├── Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0 │ ├── Content │ │ └── Scripts │ │ │ ├── jquery.unobtrusive-ajax.js │ │ │ └── jquery.unobtrusive-ajax.min.js │ └── Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0.nupkg ├── Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0 │ ├── Content │ │ └── Scripts │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ └── Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0.nupkg ├── Modernizr.2.5.3 │ ├── Content │ │ └── Scripts │ │ │ └── modernizr-2.5.3.js │ └── Modernizr.2.5.3.nupkg ├── Newtonsoft.Json.4.5.6 │ ├── Newtonsoft.Json.4.5.6.nupkg │ └── lib │ │ └── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml ├── WebGrease.1.1.0 │ ├── WebGrease.1.1.0.nupkg │ ├── lib │ │ ├── Antlr3.Runtime.dll │ │ └── WebGrease.dll │ └── tools │ │ └── WG.exe ├── jQuery.1.7.1.1 │ ├── Content │ │ └── Scripts │ │ │ ├── jquery-1.7.1-vsdoc.js │ │ │ ├── jquery-1.7.1.js │ │ │ └── jquery-1.7.1.min.js │ ├── Tools │ │ ├── common.ps1 │ │ ├── install.ps1 │ │ ├── jquery-1.7.1.intellisense.js │ │ └── uninstall.ps1 │ └── jQuery.1.7.1.1.nupkg ├── jQuery.UI.Combined.1.8.20.1 │ ├── Content │ │ ├── Content │ │ │ └── themes │ │ │ │ └── base │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.base.css │ │ │ │ ├── jquery.ui.button.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ └── minified │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery.ui.accordion.min.css │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ ├── jquery.ui.button.min.css │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ │ ├── jquery.ui.dialog.min.css │ │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ ├── jquery.ui.slider.min.css │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ └── jquery.ui.theme.min.css │ │ └── Scripts │ │ │ ├── jquery-ui-1.8.20.js │ │ │ └── jquery-ui-1.8.20.min.js │ └── jQuery.UI.Combined.1.8.20.1.nupkg ├── jQuery.Validation.1.9.0.1 │ ├── Content │ │ └── Scripts │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ └── jQuery.Validation.1.9.0.1.nupkg ├── jquery.datatables.1.9.4 │ ├── Content │ │ ├── Content │ │ │ └── DataTables-1.9.4 │ │ │ │ ├── docs │ │ │ │ └── media │ │ │ │ │ ├── css │ │ │ │ │ ├── doc.css │ │ │ │ │ ├── shCore.css │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ └── images │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ ├── arrow.png │ │ │ │ │ └── extended.png │ │ │ │ ├── extras │ │ │ │ ├── AutoFill │ │ │ │ │ └── media │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── AutoFill.css │ │ │ │ │ │ ├── docs │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ └── images │ │ │ │ │ │ └── filler.png │ │ │ │ ├── ColReorder │ │ │ │ │ └── media │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── ColReorder.css │ │ │ │ │ │ ├── docs │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ └── images │ │ │ │ │ │ └── insert.png │ │ │ │ ├── ColVis │ │ │ │ │ └── media │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── ColVis.css │ │ │ │ │ │ └── ColVisAlt.css │ │ │ │ │ │ ├── docs │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ └── images │ │ │ │ │ │ └── button.png │ │ │ │ ├── FixedColumns │ │ │ │ │ └── docs │ │ │ │ │ │ └── media │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ └── extended.png │ │ │ │ ├── Scroller │ │ │ │ │ └── media │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── dataTables.scroller.css │ │ │ │ │ │ ├── docs │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ └── images │ │ │ │ │ │ └── loading-background.png │ │ │ │ └── TableTools │ │ │ │ │ └── media │ │ │ │ │ ├── css │ │ │ │ │ ├── TableTools.css │ │ │ │ │ └── TableTools_JUI.css │ │ │ │ │ ├── images │ │ │ │ │ ├── background.png │ │ │ │ │ ├── collection.png │ │ │ │ │ ├── collection_hover.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ ├── csv.png │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ ├── print.png │ │ │ │ │ ├── print_hover.png │ │ │ │ │ ├── psd │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ ├── copy document.psd │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ └── printer.psd │ │ │ │ │ ├── xls.png │ │ │ │ │ └── xls_hover.png │ │ │ │ │ └── swf │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ │ └── media │ │ │ │ ├── css │ │ │ │ ├── demo_page.css │ │ │ │ ├── demo_table.css │ │ │ │ ├── demo_table_jui.css │ │ │ │ ├── jquery.dataTables.css │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ │ └── images │ │ │ │ ├── Sorting icons.psd │ │ │ │ ├── back_disabled.png │ │ │ │ ├── back_enabled.png │ │ │ │ ├── back_enabled_hover.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── forward_disabled.png │ │ │ │ ├── forward_enabled.png │ │ │ │ ├── forward_enabled_hover.png │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ └── Scripts │ │ │ └── DataTables-1.9.4 │ │ │ ├── docs │ │ │ └── media │ │ │ │ └── js │ │ │ │ ├── doc.js │ │ │ │ ├── jquery.js │ │ │ │ ├── shBrushJScript.js │ │ │ │ └── shCore.js │ │ │ ├── extras │ │ │ ├── AutoFill │ │ │ │ └── media │ │ │ │ │ ├── docs │ │ │ │ │ └── media │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ └── shCore.js │ │ │ │ │ └── js │ │ │ │ │ ├── AutoFill.js │ │ │ │ │ ├── AutoFill.min.js │ │ │ │ │ └── AutoFill.min.js.gz │ │ │ ├── ColReorder │ │ │ │ └── media │ │ │ │ │ ├── docs │ │ │ │ │ └── media │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ └── shCore.js │ │ │ │ │ └── js │ │ │ │ │ ├── ColReorder.js │ │ │ │ │ ├── ColReorder.min.js │ │ │ │ │ └── ColReorder.min.js.gz │ │ │ ├── ColVis │ │ │ │ └── media │ │ │ │ │ ├── docs │ │ │ │ │ └── media │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ └── shCore.js │ │ │ │ │ └── js │ │ │ │ │ ├── ColVis.js │ │ │ │ │ ├── ColVis.min.js │ │ │ │ │ └── ColVis.min.js.gz │ │ │ ├── FixedColumns │ │ │ │ ├── docs │ │ │ │ │ └── media │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ └── shCore.js │ │ │ │ └── media │ │ │ │ │ └── js │ │ │ │ │ ├── FixedColumns.js │ │ │ │ │ ├── FixedColumns.min.js │ │ │ │ │ └── FixedColumns.min.js.gz │ │ │ ├── Scroller │ │ │ │ └── media │ │ │ │ │ ├── docs │ │ │ │ │ └── media │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ └── shCore.js │ │ │ │ │ └── js │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ ├── dataTables.scroller.min.js │ │ │ │ │ └── dataTables.scroller.min.js.gz │ │ │ └── TableTools │ │ │ │ └── media │ │ │ │ └── js │ │ │ │ ├── TableTools.js │ │ │ │ ├── TableTools.min.js │ │ │ │ ├── TableTools.min.js.gz │ │ │ │ └── ZeroClipboard.js │ │ │ └── media │ │ │ └── js │ │ │ ├── jquery.dataTables.js │ │ │ ├── jquery.dataTables.min.js │ │ │ └── jquery.js │ └── jquery.datatables.1.9.4.nupkg ├── knockoutjs.2.1.0 │ ├── Content │ │ └── Scripts │ │ │ ├── knockout-2.1.0.debug.js │ │ │ └── knockout-2.1.0.js │ └── knockoutjs.2.1.0.nupkg └── repositories.config ├── phoneResponsive.PNG └── tabletResponsive.PNG /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /App_Data/Example.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/App_Data/Example.mdf -------------------------------------------------------------------------------- /App_Data/Example_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/App_Data/Example_log.ldf -------------------------------------------------------------------------------- /App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Optimization; 3 | 4 | namespace DatatablesExample 5 | { 6 | public class BundleConfig 7 | { 8 | // For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254725 9 | public static void RegisterBundles(BundleCollection bundles) 10 | { 11 | bundles.Add(new ScriptBundle("~/bundles/jquery").Include( 12 | "~/Scripts/jquery-{version}.js")); 13 | 14 | bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include( 15 | "~/Scripts/jquery-ui-{version}.js")); 16 | 17 | bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include( 18 | "~/Scripts/jquery.unobtrusive*", 19 | "~/Scripts/jquery.validate*")); 20 | 21 | // Use the development version of Modernizr to develop with and learn from. Then, when you're 22 | // ready for production, use the build tool at http://modernizr.com to pick only the tests you need. 23 | bundles.Add(new ScriptBundle("~/bundles/modernizr").Include( 24 | "~/Scripts/modernizr-*")); 25 | 26 | bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/site.css")); 27 | 28 | bundles.Add(new StyleBundle("~/Content/themes/base/css").Include( 29 | "~/Content/themes/base/jquery.ui.core.css", 30 | "~/Content/themes/base/jquery.ui.resizable.css", 31 | "~/Content/themes/base/jquery.ui.selectable.css", 32 | "~/Content/themes/base/jquery.ui.accordion.css", 33 | "~/Content/themes/base/jquery.ui.autocomplete.css", 34 | "~/Content/themes/base/jquery.ui.button.css", 35 | "~/Content/themes/base/jquery.ui.dialog.css", 36 | "~/Content/themes/base/jquery.ui.slider.css", 37 | "~/Content/themes/base/jquery.ui.tabs.css", 38 | "~/Content/themes/base/jquery.ui.datepicker.css", 39 | "~/Content/themes/base/jquery.ui.progressbar.css", 40 | "~/Content/themes/base/jquery.ui.theme.css")); 41 | } 42 | } 43 | } -------------------------------------------------------------------------------- /App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | 4 | namespace DatatablesExample 5 | { 6 | public class FilterConfig 7 | { 8 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 9 | { 10 | filters.Add(new HandleErrorAttribute()); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Web.Routing; 7 | 8 | namespace DatatablesExample 9 | { 10 | public class RouteConfig 11 | { 12 | public static void RegisterRoutes(RouteCollection routes) 13 | { 14 | routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); 15 | 16 | routes.MapRoute( 17 | name: "Default", 18 | url: "{controller}/{action}/{id}", 19 | defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } 20 | ); 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web.Http; 5 | 6 | namespace DatatablesExample 7 | { 8 | public static class WebApiConfig 9 | { 10 | public static void Register(HttpConfiguration config) 11 | { 12 | config.Routes.MapHttpRoute( 13 | name: "DefaultApi", 14 | routeTemplate: "api/{controller}/{id}", 15 | defaults: new { id = RouteParameter.Optional } 16 | ); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/docs/media/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/docs/media/images/arrow.jpg -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/docs/media/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/docs/media/images/arrow.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/docs/media/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/docs/media/images/extended.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/AutoFill/media/css/AutoFill.css: -------------------------------------------------------------------------------- 1 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 2 | * AutoFill styles 3 | */ 4 | 5 | div.AutoFill_filler { 6 | display: none; 7 | position: absolute; 8 | height: 14px; 9 | width: 14px; 10 | background: url(../images/filler.png) no-repeat center center; 11 | z-index: 1002; 12 | } 13 | 14 | div.AutoFill_border { 15 | display: none; 16 | position: absolute; 17 | background-color: #0063dc; 18 | z-index: 1001; 19 | 20 | box-shadow: 0px 0px 5px #76b4ff; 21 | -moz-box-shadow: 0px 0px 5px #76b4ff; 22 | -webkit-box-shadow: 0px 0px 5px #76b4ff; 23 | } 24 | 25 | -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/AutoFill/media/docs/media/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/AutoFill/media/docs/media/images/arrow.jpg -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/AutoFill/media/docs/media/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/AutoFill/media/docs/media/images/arrow.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/AutoFill/media/docs/media/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/AutoFill/media/docs/media/images/extended.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/AutoFill/media/images/filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/AutoFill/media/images/filler.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/ColReorder/media/css/ColReorder.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Namespace DTCR - "DataTables ColReorder" plug-in 3 | */ 4 | 5 | table.DTCR_clonedTable { 6 | background-color: white; 7 | z-index: 202; 8 | } 9 | 10 | div.DTCR_pointer { 11 | width: 1px; 12 | background-color: #0259C4; 13 | z-index: 201; 14 | } 15 | 16 | body.alt div.DTCR_pointer { 17 | margin-top: -15px; 18 | margin-left: -9px; 19 | width: 18px; 20 | background: url('../images/insert.png') no-repeat top left; 21 | } -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/ColReorder/media/docs/media/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/ColReorder/media/docs/media/images/arrow.jpg -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/ColReorder/media/docs/media/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/ColReorder/media/docs/media/images/arrow.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/ColReorder/media/docs/media/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/ColReorder/media/docs/media/images/extended.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/ColReorder/media/images/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/ColReorder/media/images/insert.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/ColVis/media/css/ColVis.css: -------------------------------------------------------------------------------- 1 | 2 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 3 | * ColVis styles 4 | */ 5 | .ColVis { 6 | float: right; 7 | margin-bottom: 1em; 8 | } 9 | 10 | .ColVis_Button { 11 | position: relative; 12 | float: left; 13 | margin-right: 3px; 14 | padding: 3px 5px; 15 | height: 30px; 16 | background-color: #fff; 17 | border: 1px solid #d0d0d0; 18 | cursor: pointer; 19 | *cursor: hand; 20 | } 21 | 22 | button.ColVis_Button::-moz-focus-inner { 23 | border: none !important; 24 | padding: 0; 25 | } 26 | 27 | .ColVis_text_hover { 28 | border: 1px solid #999; 29 | background-color: #f0f0f0; 30 | } 31 | 32 | div.ColVis_collectionBackground { 33 | background-color: black; 34 | z-index: 1100; 35 | } 36 | 37 | div.ColVis_collection { 38 | position: relative; 39 | width: 150px; 40 | background-color: #f3f3f3; 41 | padding: 3px; 42 | border: 1px solid #ccc; 43 | z-index: 1102; 44 | } 45 | 46 | div.ColVis_collection button.ColVis_Button { 47 | background-color: white; 48 | width: 100%; 49 | float: none; 50 | margin-bottom: 2px; 51 | } 52 | 53 | div.ColVis_catcher { 54 | position: absolute; 55 | z-index: 1101; 56 | } 57 | 58 | .disabled { 59 | color: #999; 60 | } 61 | 62 | 63 | 64 | button.ColVis_Button { 65 | text-align: left; 66 | } 67 | 68 | div.ColVis_collection button.ColVis_Button:hover { 69 | border: 1px solid #999; 70 | background-color: #f0f0f0; 71 | } 72 | 73 | span.ColVis_radio { 74 | display: inline-block; 75 | width: 20px; 76 | } 77 | -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/ColVis/media/css/ColVisAlt.css: -------------------------------------------------------------------------------- 1 | /* 2 | * An alternative styling for ColVis 3 | * Note you will likely have to change the path for the background image used by jQuery UI theming: 4 | * ../../../../examples/examples_support/themes/smoothness 5 | */ 6 | 7 | .ColVis { 8 | position: absolute; 9 | right: 0; 10 | top: 0; 11 | width: 15px; 12 | height: 30px; 13 | } 14 | 15 | .ColVis_MasterButton { 16 | height: 100%; 17 | width: 100%; 18 | border-left-width: 0; 19 | cursor: pointer; 20 | *cursor: hand; 21 | background: url('../images/button.png') no-repeat top left; 22 | } 23 | 24 | button.ColVis_Button::-moz-focus-inner { 25 | border: none !important; 26 | padding: 0; 27 | } 28 | 29 | .ColVis_text_hover { 30 | border: 1px solid #999; 31 | background-color: #f0f0f0; 32 | } 33 | 34 | div.ColVis_collectionBackground { 35 | background-color: black; 36 | z-index: 1100; 37 | } 38 | 39 | div.ColVis_collection { 40 | position: relative; 41 | width: 150px; 42 | background-color: #f9f9f9; 43 | padding: 3px; 44 | border: 1px solid #ccc; 45 | z-index: 1102; 46 | } 47 | 48 | div.ColVis_collection button.ColVis_Button { 49 | height: 30px; 50 | width: 100%; 51 | margin-right: 3px; 52 | margin-bottom: 2px; 53 | padding: 3px 5px; 54 | cursor: pointer; 55 | *cursor: hand; 56 | text-align: left; 57 | } 58 | 59 | div.ColVis_collection button.ColVis_Button:hover { 60 | border: 1px solid #999; 61 | background-color: #f0f0f0; 62 | } 63 | 64 | div.ColVis_catcher { 65 | position: absolute; 66 | z-index: 1101; 67 | } 68 | 69 | span.ColVis_radio { 70 | display: inline-block; 71 | width: 20px; 72 | } 73 | 74 | button.ColVis_Restore { 75 | margin-top: 15px; 76 | } 77 | 78 | button.ColVis_Restore span { 79 | display: inline-block; 80 | padding-left: 10px; 81 | text-align: left; 82 | } 83 | 84 | .disabled { 85 | color: #999; 86 | } 87 | 88 | 89 | 90 | /* 91 | * Styles needed for DataTables scrolling 92 | */ 93 | div.dataTables_scrollHead { 94 | position: relative; 95 | overflow: hidden; 96 | } 97 | 98 | div.dataTables_scrollBody { 99 | overflow-y: scroll; 100 | } 101 | 102 | div.dataTables_scrollFoot { 103 | overflow: hidden; 104 | } 105 | -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/ColVis/media/docs/media/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/ColVis/media/docs/media/images/arrow.jpg -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/ColVis/media/docs/media/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/ColVis/media/docs/media/images/arrow.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/ColVis/media/docs/media/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/ColVis/media/docs/media/images/extended.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/ColVis/media/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/ColVis/media/images/button.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/FixedColumns/docs/media/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/FixedColumns/docs/media/images/arrow.jpg -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/FixedColumns/docs/media/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/FixedColumns/docs/media/images/arrow.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/FixedColumns/docs/media/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/FixedColumns/docs/media/images/extended.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/Scroller/media/css/dataTables.scroller.css: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Namespace: DTS (DataTables Scroller) 4 | */ 5 | 6 | div.DTS tbody th, 7 | div.DTS tbody td { 8 | white-space: nowrap; 9 | } 10 | 11 | div.DTS tbody tr.even { 12 | background-color: white; 13 | } 14 | 15 | div.DTS div.DTS_Loading { 16 | position: absolute; 17 | top: 50%; 18 | left: 50%; 19 | width: 200px; 20 | height: 20px; 21 | margin-top: -20px; 22 | margin-left: -100px; 23 | z-index: 1; 24 | 25 | border: 1px solid #999; 26 | padding: 20px 0; 27 | text-align: center; 28 | background-color: white; 29 | background-color: rgba(255, 255, 255, 0.5); 30 | } 31 | 32 | div.DTS div.dataTables_scrollHead { 33 | background-color: white; 34 | } 35 | 36 | div.DTS div.dataTables_scrollBody { 37 | z-index: 2; 38 | } 39 | 40 | div.DTS div.dataTables_scroll { 41 | background: url('../images/loading-background.png') repeat 0 0; 42 | } 43 | 44 | -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/Scroller/media/docs/media/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/Scroller/media/docs/media/images/arrow.jpg -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/Scroller/media/docs/media/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/Scroller/media/docs/media/images/arrow.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/Scroller/media/docs/media/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/Scroller/media/docs/media/images/extended.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/Scroller/media/images/loading-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/Scroller/media/images/loading-background.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/images/background.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/images/collection.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/images/collection_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/images/collection_hover.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/images/copy.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/images/copy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/images/copy_hover.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/images/csv.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/images/csv_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/images/csv_hover.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/images/pdf.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/images/pdf_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/images/pdf_hover.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/images/print.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/images/print_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/images/print_hover.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/images/psd/collection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/images/psd/collection.psd -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/images/psd/copy document.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/images/psd/copy document.psd -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/images/psd/file_types.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/images/psd/file_types.psd -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/images/psd/printer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/images/psd/printer.psd -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/images/xls.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/images/xls_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/images/xls_hover.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/swf/copy_csv_xls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/swf/copy_csv_xls.swf -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/extras/TableTools/media/swf/copy_csv_xls_pdf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/extras/TableTools/media/swf/copy_csv_xls_pdf.swf -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/foundation/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/foundation/images/sort_asc.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/foundation/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/foundation/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/foundation/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/foundation/images/sort_both.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/foundation/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/foundation/images/sort_desc.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/foundation/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/foundation/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/media/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/media/images/Sorting icons.psd -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/media/images/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/media/images/back_disabled.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/media/images/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/media/images/back_enabled.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/media/images/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/media/images/back_enabled_hover.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/media/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/media/images/favicon.ico -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/media/images/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/media/images/forward_disabled.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/media/images/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/media/images/forward_enabled.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/media/images/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/media/images/forward_enabled_hover.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/media/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/media/images/sort_asc.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/media/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/media/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/media/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/media/images/sort_both.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/media/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/media/images/sort_desc.png -------------------------------------------------------------------------------- /Content/DataTables-1.9.4/media/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/DataTables-1.9.4/media/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /Content/Site.css: -------------------------------------------------------------------------------- 1 | table tbody tr.odd { 2 | background-color: transparent; 3 | } 4 | 5 | table tbody tr.even { 6 | background-color: rgb(249, 249, 249); 7 | } 8 | -------------------------------------------------------------------------------- /Content/fooTable/footable.plugin.datatablesIntegration.js: -------------------------------------------------------------------------------- 1 | (function ($, w, undefined) { 2 | if (w.footable == undefined || w.footable == null) 3 | throw new Error('Please check and make sure footable.js is included in the page and is loaded prior to this script.'); 4 | 5 | var defaults = { 6 | footableDatatablesIntegrationPlugin: { 7 | enabled: true 8 | } 9 | }; 10 | 11 | function FootableDatatablesIntegrationPlugin() { 12 | var p = this; 13 | p.name = 'Footable Datatables Integration Plugin'; 14 | p.init = function (ft) { 15 | $(ft.table).bind({ 16 | 17 | 'footable_resized': function (e) { 18 | if (e.ft.options.footableDatatablesIntegrationPlugin.enabled == true) { 19 | 20 | var opt = ft.options; 21 | var $table = $(ft.table); 22 | $table.find(opt.columnDataSelector).each(function () { 23 | var data = e.ft.getColumnData(this); 24 | e.ft.columns[data.index] = data; 25 | 26 | if (data.className != null) { 27 | var selector = '', first = true; 28 | $.each(data.matches, function (m, match) { //support for colspans 29 | if (!first) { 30 | selector += ', '; 31 | } 32 | selector += '> tbody > tr:not(.footable-row-detail) > td:nth-child(' + (parseInt(match) + 1) + ')'; 33 | first = false; 34 | }); 35 | //add the className to the cells specified by data-class="blah" 36 | $table.find(selector).not('.footable-cell-detail').addClass(data.className); 37 | } 38 | }); 39 | 40 | e.ft.bindToggleSelectors(); 41 | } 42 | } 43 | }); 44 | }; 45 | }; 46 | 47 | w.footable.plugins.register(new FootableDatatablesIntegrationPlugin(), defaults); 48 | 49 | })(jQuery, window); -------------------------------------------------------------------------------- /Content/fooTable/img/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/fooTable/img/down.png -------------------------------------------------------------------------------- /Content/fooTable/img/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/fooTable/img/minus.png -------------------------------------------------------------------------------- /Content/fooTable/img/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/fooTable/img/plus.png -------------------------------------------------------------------------------- /Content/fooTable/img/sorting_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/fooTable/img/sorting_sprite.png -------------------------------------------------------------------------------- /Content/fooTable/img/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/fooTable/img/up.png -------------------------------------------------------------------------------- /Content/foundation/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/foundation/app.css -------------------------------------------------------------------------------- /Content/foundation/foundation.mvc.css: -------------------------------------------------------------------------------- 1 | /* -------------------------------------------------- 2 | This file contains CSS overrides that are specific 3 | to making sure that Foundation works well with MVC 4 | ----------------------------------------------------- 5 | */ 6 | 7 | /* Overrides: Errors */ 8 | .input-validation-error, input.input-validation-error, textarea.input-validation-error { border-color: #c60f13; background-color: rgba(198, 15, 19, 0.1); } 9 | 10 | .field-validation-error { display: block; padding: 6px 4px; margin-top: -13px; margin-bottom: 12px; background: #c60f13; color: #fff; font-size: 12px; font-weight: bold; -moz-border-radius-bottomleft: 2px; -webkit-border-bottom-left-radius: 2px; border-bottom-left-radius: 2px; -moz-border-radius-bottomright: 2px; -webkit-border-bottom-right-radius: 2px; border-bottom-right-radius: 2px; } 11 | 12 | -------------------------------------------------------------------------------- /Content/foundation/foundation_icons_general/fonts/general_foundicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/foundation/foundation_icons_general/fonts/general_foundicons.eot -------------------------------------------------------------------------------- /Content/foundation/foundation_icons_general/fonts/general_foundicons.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Content/foundation/foundation_icons_general/fonts/general_foundicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/foundation/foundation_icons_general/fonts/general_foundicons.ttf -------------------------------------------------------------------------------- /Content/foundation/foundation_icons_general/fonts/general_foundicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/foundation/foundation_icons_general/fonts/general_foundicons.woff -------------------------------------------------------------------------------- /Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Content/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Accordion 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Accordion#theming 9 | */ 10 | /* IE/Win - Fix animation bug - #4615 */ 11 | .ui-accordion { width: 100%; } 12 | .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } 13 | .ui-accordion .ui-accordion-li-fix { display: inline; } 14 | .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } 15 | .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; } 16 | .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; } 17 | .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } 18 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; } 19 | .ui-accordion .ui-accordion-content-active { display: block; } 20 | -------------------------------------------------------------------------------- /Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /Content/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Autocomplete#theming 9 | */ 10 | .ui-autocomplete { position: absolute; cursor: default; } 11 | 12 | /* workarounds */ 13 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ 14 | 15 | /* 16 | * jQuery UI Menu 1.8.20 17 | * 18 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 19 | * Licensed under the MIT license. 20 | * http://jquery.org/license 21 | * 22 | * http://docs.jquery.com/UI/Menu#theming 23 | */ 24 | .ui-menu { 25 | list-style:none; 26 | padding: 2px; 27 | margin: 0; 28 | display:block; 29 | float: left; 30 | } 31 | .ui-menu .ui-menu { 32 | margin-top: -3px; 33 | } 34 | .ui-menu .ui-menu-item { 35 | margin:0; 36 | padding: 0; 37 | zoom: 1; 38 | float: left; 39 | clear: left; 40 | width: 100%; 41 | } 42 | .ui-menu .ui-menu-item a { 43 | text-decoration:none; 44 | display:block; 45 | padding:.2em .4em; 46 | line-height:1.5; 47 | zoom:1; 48 | } 49 | .ui-menu .ui-menu-item a.ui-state-hover, 50 | .ui-menu .ui-menu-item a.ui-state-active { 51 | font-weight: normal; 52 | margin: -1px; 53 | } 54 | -------------------------------------------------------------------------------- /Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import url("jquery.ui.core.css"); 11 | 12 | @import url("jquery.ui.accordion.css"); 13 | @import url("jquery.ui.autocomplete.css"); 14 | @import url("jquery.ui.button.css"); 15 | @import url("jquery.ui.datepicker.css"); 16 | @import url("jquery.ui.dialog.css"); 17 | @import url("jquery.ui.progressbar.css"); 18 | @import url("jquery.ui.resizable.css"); 19 | @import url("jquery.ui.selectable.css"); 20 | @import url("jquery.ui.slider.css"); 21 | @import url("jquery.ui.tabs.css"); 22 | -------------------------------------------------------------------------------- /Content/themes/base/jquery.ui.core.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming/API 9 | */ 10 | 11 | /* Layout helpers 12 | ----------------------------------*/ 13 | .ui-helper-hidden { display: none; } 14 | .ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } 15 | .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } 16 | .ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; } 17 | .ui-helper-clearfix:after { clear: both; } 18 | .ui-helper-clearfix { zoom: 1; } 19 | .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } 20 | 21 | 22 | /* Interaction Cues 23 | ----------------------------------*/ 24 | .ui-state-disabled { cursor: default !important; } 25 | 26 | 27 | /* Icons 28 | ----------------------------------*/ 29 | 30 | /* states and images */ 31 | .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } 32 | 33 | 34 | /* Misc visuals 35 | ----------------------------------*/ 36 | 37 | /* Overlays */ 38 | .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } 39 | -------------------------------------------------------------------------------- /Content/themes/base/jquery.ui.dialog.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Dialog 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Dialog#theming 9 | */ 10 | .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; } 11 | .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; } 12 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } 13 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } 14 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } 15 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } 16 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } 17 | .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } 18 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } 19 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } 20 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } 21 | .ui-draggable .ui-dialog-titlebar { cursor: move; } 22 | -------------------------------------------------------------------------------- /Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /Content/themes/base/jquery.ui.resizable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Resizable 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Resizable#theming 9 | */ 10 | .ui-resizable { position: relative;} 11 | .ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; } 12 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } 13 | .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } 14 | .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } 15 | .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } 16 | .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } 17 | .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } 18 | .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } 19 | .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } 20 | .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;} -------------------------------------------------------------------------------- /Content/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /Content/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Slider 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Slider#theming 9 | */ 10 | .ui-slider { position: relative; text-align: left; } 11 | .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } 12 | .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } 13 | 14 | .ui-slider-horizontal { height: .8em; } 15 | .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } 16 | .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } 17 | .ui-slider-horizontal .ui-slider-range-min { left: 0; } 18 | .ui-slider-horizontal .ui-slider-range-max { right: 0; } 19 | 20 | .ui-slider-vertical { width: .8em; height: 100px; } 21 | .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } 22 | .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } 23 | .ui-slider-vertical .ui-slider-range-min { bottom: 0; } 24 | .ui-slider-vertical .ui-slider-range-max { top: 0; } -------------------------------------------------------------------------------- /Content/themes/base/jquery.ui.tabs.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tabs 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Tabs#theming 9 | */ 10 | .ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ 11 | .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; } 12 | .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; } 13 | .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; } 14 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; } 15 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } 16 | .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ 17 | .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; } 18 | .ui-tabs .ui-tabs-hide { display: none !important; } 19 | -------------------------------------------------------------------------------- /Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Content/themes/base/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.accordion.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-accordion{width:100%}.ui-accordion .ui-accordion-header{cursor:pointer;position:relative;margin-top:1px;zoom:1}.ui-accordion .ui-accordion-li-fix{display:inline}.ui-accordion .ui-accordion-header-active{border-bottom:0!important}.ui-accordion .ui-accordion-header a{display:block;font-size:1em;padding:.5em .5em .5em .7em}.ui-accordion-icons .ui-accordion-header a{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;margin-top:-2px;position:relative;top:1px;margin-bottom:2px;overflow:auto;display:none;zoom:1}.ui-accordion .ui-accordion-content-active{display:block} -------------------------------------------------------------------------------- /Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.autocomplete.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-autocomplete{position:absolute;cursor:default}* html .ui-autocomplete{width:1px}.ui-menu{list-style:none;padding:2px;margin:0;display:block;float:left}.ui-menu .ui-menu{margin-top:-3px}.ui-menu .ui-menu-item{margin:0;padding:0;zoom:1;float:left;clear:left;width:100%}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:.2em .4em;line-height:1.5;zoom:1}.ui-menu .ui-menu-item a.ui-state-hover,.ui-menu .ui-menu-item a.ui-state-active{font-weight:normal;margin:-1px} -------------------------------------------------------------------------------- /Content/themes/base/minified/jquery.ui.button.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.button.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-button{display:inline-block;position:relative;padding:0;margin-right:.1em;text-decoration:none!important;cursor:pointer;text-align:center;zoom:1;overflow:visible}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:1.4}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}button.ui-button::-moz-focus-inner{border:0;padding:0} -------------------------------------------------------------------------------- /Content/themes/base/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.core.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{zoom:1}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%} -------------------------------------------------------------------------------- /Content/themes/base/minified/jquery.ui.dialog.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.dialog.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-dialog{position:absolute;padding:.2em;width:300px;overflow:hidden}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 16px .1em 0}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:19px;margin:-10px 0 0 0;padding:1px;height:18px}.ui-dialog .ui-dialog-titlebar-close span{display:block;margin:1px}.ui-dialog .ui-dialog-titlebar-close:hover,.ui-dialog .ui-dialog-titlebar-close:focus{padding:0}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto;zoom:1}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move} -------------------------------------------------------------------------------- /Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.progressbar.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%} -------------------------------------------------------------------------------- /Content/themes/base/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.resizable.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px} -------------------------------------------------------------------------------- /Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.selectable.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} -------------------------------------------------------------------------------- /Content/themes/base/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.slider.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0} -------------------------------------------------------------------------------- /Content/themes/base/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.tabs.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-tabs{position:relative;padding:.2em;zoom:1}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:1px;margin:0 .2em 1px 0;border-bottom:0!important;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-selected{margin-bottom:0;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-selected a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-state-processing a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tabs .ui-tabs-hide{display:none!important} -------------------------------------------------------------------------------- /Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using DatatablesExample.Data; 7 | using DatatablesExample.Models; 8 | 9 | namespace DatatablesExample.Controllers 10 | { 11 | public class HomeController : Controller 12 | { 13 | // 14 | // GET: /Home/ 15 | 16 | public ActionResult Index() 17 | { 18 | return View(); 19 | } 20 | 21 | public JsonResult GetAjaxData(JQueryDataTableParamModel param) 22 | { 23 | using (var e = new ExampleEntities()) 24 | { 25 | var totalRowsCount = new System.Data.Objects.ObjectParameter("TotalRowsCount", typeof(int)); 26 | var filteredRowsCount = new System.Data.Objects.ObjectParameter("FilteredRowsCount", typeof(int)); 27 | 28 | var data = e.pr_SearchPerson(param.sSearch, 29 | Convert.ToInt32(Request["iSortCol_0"]), 30 | Request["sSortDir_0"], 31 | param.iDisplayStart, 32 | param.iDisplayStart + param.iDisplayLength, 33 | totalRowsCount, 34 | filteredRowsCount); 35 | 36 | var aaData = data.Select(d => new string[] { d.FirstName, d.LastName, d.Nationality, d.DateOfBirth.Value.ToString("dd MMM yyyy") }).ToArray(); 37 | 38 | return Json(new 39 | { 40 | sEcho = param.sEcho, 41 | aaData = aaData, 42 | iTotalRecords = Convert.ToInt32(totalRowsCount.Value), 43 | iTotalDisplayRecords = Convert.ToInt32(filteredRowsCount.Value) 44 | }, JsonRequestBehavior.AllowGet); 45 | } 46 | } 47 | 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /Controllers/ResponsiveExampleController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using DatatablesExample.Data; 7 | using DatatablesExample.Models; 8 | 9 | namespace DatatablesExample.Controllers 10 | { 11 | public class ResponsiveExampleController : Controller 12 | { 13 | // 14 | // GET: /Home/ 15 | 16 | public ActionResult Index() 17 | { 18 | return View(); 19 | } 20 | 21 | public JsonResult GetAjaxData(JQueryDataTableParamModel param) 22 | { 23 | using (var e = new ExampleEntities()) 24 | { 25 | var totalRowsCount = new System.Data.Objects.ObjectParameter("TotalRowsCount", typeof(int)); 26 | var filteredRowsCount = new System.Data.Objects.ObjectParameter("FilteredRowsCount", typeof(int)); 27 | 28 | var data = e.pr_SearchPerson(param.sSearch, 29 | Convert.ToInt32(Request["iSortCol_0"]), 30 | Request["sSortDir_0"], 31 | param.iDisplayStart, 32 | param.iDisplayStart + param.iDisplayLength, 33 | totalRowsCount, 34 | filteredRowsCount); 35 | 36 | var aaData = data.Select(d => new string[] { d.FirstName, d.LastName, d.Nationality, d.DateOfBirth.Value.ToString("dd MMM yyyy") }).ToArray(); 37 | 38 | return Json(new 39 | { 40 | sEcho = param.sEcho, 41 | aaData = aaData, 42 | iTotalRecords = Convert.ToInt32(totalRowsCount.Value), 43 | iTotalDisplayRecords = Convert.ToInt32(filteredRowsCount.Value) 44 | }, JsonRequestBehavior.AllowGet); 45 | } 46 | } 47 | 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /DatatablesExample.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Web Developer Express 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DatatablesExample", "DatatablesExample.csproj", "{20E63893-5D09-4EF2-9DEC-D71172B536BC}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {20E63893-5D09-4EF2-9DEC-D71172B536BC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {20E63893-5D09-4EF2-9DEC-D71172B536BC}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {20E63893-5D09-4EF2-9DEC-D71172B536BC}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {20E63893-5D09-4EF2-9DEC-D71172B536BC}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /DemoPic.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/DemoPic.PNG -------------------------------------------------------------------------------- /Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="DatatablesExample.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /Global.asax.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Http; 6 | using System.Web.Mvc; 7 | using System.Web.Optimization; 8 | using System.Web.Routing; 9 | 10 | namespace DatatablesExample 11 | { 12 | // Note: For instructions on enabling IIS6 or IIS7 classic mode, 13 | // visit http://go.microsoft.com/?LinkId=9394801 14 | 15 | public class MvcApplication : System.Web.HttpApplication 16 | { 17 | protected void Application_Start() 18 | { 19 | AreaRegistration.RegisterAllAreas(); 20 | 21 | WebApiConfig.Register(GlobalConfiguration.Configuration); 22 | FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters); 23 | RouteConfig.RegisterRoutes(RouteTable.Routes); 24 | BundleConfig.RegisterBundles(BundleTable.Bundles); 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /Models/HomeModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace DatatablesExample.Models 7 | { 8 | public class HomeModel 9 | { 10 | } 11 | } -------------------------------------------------------------------------------- /Models/JQueryDataTableParamModel.cs: -------------------------------------------------------------------------------- 1 |  2 | 3 | namespace DatatablesExample.Models 4 | { 5 | /// 6 | /// A model to receive parameters from dataTables AJAX call 7 | /// 8 | public class JQueryDataTableParamModel 9 | { 10 | public string sEcho { get; set; } 11 | 12 | public string sSearch { get; set; } 13 | 14 | public int iDisplayLength { get; set; } 15 | 16 | public int iDisplayStart { get; set; } 17 | } 18 | } -------------------------------------------------------------------------------- /Models/ResponsiveExampleModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace DatatablesExample.Models 7 | { 8 | public class ResponsiveExampleModel 9 | { 10 | 11 | } 12 | } -------------------------------------------------------------------------------- /Models/RowDetailModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace DatatablesExample.Models 7 | { 8 | public class RowDetailModel 9 | { 10 | public DateTime? DateAdded { get; set; } 11 | public string MobileTel { get; set; } 12 | public string HomeTel { get; set; } 13 | public string EmailAddress { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("DatatablesExample")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("DatatablesExample")] 13 | [assembly: AssemblyCopyright("Copyright © 2013")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("437e3394-c68f-440b-9708-297e3381e986")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Revision and Build Numbers 33 | // by using the '*' as shown below: 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /Scripts/DataTables-1.9.4/docs/media/js/shBrushJScript.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | ;(function() 18 | { 19 | // CommonJS 20 | typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null; 21 | 22 | function Brush() 23 | { 24 | var keywords = 'break case catch continue ' + 25 | 'default delete do else false ' + 26 | 'for function if in instanceof ' + 27 | 'new null return super switch ' + 28 | 'this throw true try typeof var while with' 29 | ; 30 | 31 | var r = SyntaxHighlighter.regexLib; 32 | 33 | this.regexList = [ 34 | { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings 35 | { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings 36 | { regex: r.singleLineCComments, css: 'comments' }, // one line comments 37 | { regex: r.multiLineCComments, css: 'comments' }, // multiline comments 38 | { regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion 39 | { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords 40 | ]; 41 | 42 | this.forHtmlScript(r.scriptScriptTags); 43 | }; 44 | 45 | Brush.prototype = new SyntaxHighlighter.Highlighter(); 46 | Brush.aliases = ['js', 'jscript', 'javascript']; 47 | 48 | SyntaxHighlighter.brushes.JScript = Brush; 49 | 50 | // CommonJS 51 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; 52 | })(); 53 | -------------------------------------------------------------------------------- /Scripts/DataTables-1.9.4/extras/AutoFill/media/docs/media/js/shBrushJScript.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | ;(function() 18 | { 19 | // CommonJS 20 | typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null; 21 | 22 | function Brush() 23 | { 24 | var keywords = 'break case catch continue ' + 25 | 'default delete do else false ' + 26 | 'for function if in instanceof ' + 27 | 'new null return super switch ' + 28 | 'this throw true try typeof var while with' 29 | ; 30 | 31 | var r = SyntaxHighlighter.regexLib; 32 | 33 | this.regexList = [ 34 | { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings 35 | { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings 36 | { regex: r.singleLineCComments, css: 'comments' }, // one line comments 37 | { regex: r.multiLineCComments, css: 'comments' }, // multiline comments 38 | { regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion 39 | { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords 40 | ]; 41 | 42 | this.forHtmlScript(r.scriptScriptTags); 43 | }; 44 | 45 | Brush.prototype = new SyntaxHighlighter.Highlighter(); 46 | Brush.aliases = ['js', 'jscript', 'javascript']; 47 | 48 | SyntaxHighlighter.brushes.JScript = Brush; 49 | 50 | // CommonJS 51 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; 52 | })(); 53 | -------------------------------------------------------------------------------- /Scripts/DataTables-1.9.4/extras/AutoFill/media/js/AutoFill.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Scripts/DataTables-1.9.4/extras/AutoFill/media/js/AutoFill.min.js.gz -------------------------------------------------------------------------------- /Scripts/DataTables-1.9.4/extras/ColReorder/media/docs/media/js/shBrushJScript.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | ;(function() 18 | { 19 | // CommonJS 20 | typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null; 21 | 22 | function Brush() 23 | { 24 | var keywords = 'break case catch continue ' + 25 | 'default delete do else false ' + 26 | 'for function if in instanceof ' + 27 | 'new null return super switch ' + 28 | 'this throw true try typeof var while with' 29 | ; 30 | 31 | var r = SyntaxHighlighter.regexLib; 32 | 33 | this.regexList = [ 34 | { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings 35 | { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings 36 | { regex: r.singleLineCComments, css: 'comments' }, // one line comments 37 | { regex: r.multiLineCComments, css: 'comments' }, // multiline comments 38 | { regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion 39 | { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords 40 | ]; 41 | 42 | this.forHtmlScript(r.scriptScriptTags); 43 | }; 44 | 45 | Brush.prototype = new SyntaxHighlighter.Highlighter(); 46 | Brush.aliases = ['js', 'jscript', 'javascript']; 47 | 48 | SyntaxHighlighter.brushes.JScript = Brush; 49 | 50 | // CommonJS 51 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; 52 | })(); 53 | -------------------------------------------------------------------------------- /Scripts/DataTables-1.9.4/extras/ColReorder/media/js/ColReorder.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Scripts/DataTables-1.9.4/extras/ColReorder/media/js/ColReorder.min.js.gz -------------------------------------------------------------------------------- /Scripts/DataTables-1.9.4/extras/ColVis/media/docs/media/js/shBrushJScript.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | ;(function() 18 | { 19 | // CommonJS 20 | typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null; 21 | 22 | function Brush() 23 | { 24 | var keywords = 'break case catch continue ' + 25 | 'default delete do else false ' + 26 | 'for function if in instanceof ' + 27 | 'new null return super switch ' + 28 | 'this throw true try typeof var while with' 29 | ; 30 | 31 | var r = SyntaxHighlighter.regexLib; 32 | 33 | this.regexList = [ 34 | { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings 35 | { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings 36 | { regex: r.singleLineCComments, css: 'comments' }, // one line comments 37 | { regex: r.multiLineCComments, css: 'comments' }, // multiline comments 38 | { regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion 39 | { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords 40 | ]; 41 | 42 | this.forHtmlScript(r.scriptScriptTags); 43 | }; 44 | 45 | Brush.prototype = new SyntaxHighlighter.Highlighter(); 46 | Brush.aliases = ['js', 'jscript', 'javascript']; 47 | 48 | SyntaxHighlighter.brushes.JScript = Brush; 49 | 50 | // CommonJS 51 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; 52 | })(); 53 | -------------------------------------------------------------------------------- /Scripts/DataTables-1.9.4/extras/ColVis/media/js/ColVis.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Scripts/DataTables-1.9.4/extras/ColVis/media/js/ColVis.min.js.gz -------------------------------------------------------------------------------- /Scripts/DataTables-1.9.4/extras/FixedColumns/docs/media/js/shBrushJScript.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | ;(function() 18 | { 19 | // CommonJS 20 | typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null; 21 | 22 | function Brush() 23 | { 24 | var keywords = 'break case catch continue ' + 25 | 'default delete do else false ' + 26 | 'for function if in instanceof ' + 27 | 'new null return super switch ' + 28 | 'this throw true try typeof var while with' 29 | ; 30 | 31 | var r = SyntaxHighlighter.regexLib; 32 | 33 | this.regexList = [ 34 | { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings 35 | { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings 36 | { regex: r.singleLineCComments, css: 'comments' }, // one line comments 37 | { regex: r.multiLineCComments, css: 'comments' }, // multiline comments 38 | { regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion 39 | { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords 40 | ]; 41 | 42 | this.forHtmlScript(r.scriptScriptTags); 43 | }; 44 | 45 | Brush.prototype = new SyntaxHighlighter.Highlighter(); 46 | Brush.aliases = ['js', 'jscript', 'javascript']; 47 | 48 | SyntaxHighlighter.brushes.JScript = Brush; 49 | 50 | // CommonJS 51 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; 52 | })(); 53 | -------------------------------------------------------------------------------- /Scripts/DataTables-1.9.4/extras/FixedColumns/media/js/FixedColumns.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Scripts/DataTables-1.9.4/extras/FixedColumns/media/js/FixedColumns.min.js.gz -------------------------------------------------------------------------------- /Scripts/DataTables-1.9.4/extras/Scroller/media/docs/media/js/shBrushJScript.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | ;(function() 18 | { 19 | // CommonJS 20 | typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null; 21 | 22 | function Brush() 23 | { 24 | var keywords = 'break case catch continue ' + 25 | 'default delete do else false ' + 26 | 'for function if in instanceof ' + 27 | 'new null return super switch ' + 28 | 'this throw true try typeof var while with' 29 | ; 30 | 31 | var r = SyntaxHighlighter.regexLib; 32 | 33 | this.regexList = [ 34 | { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings 35 | { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings 36 | { regex: r.singleLineCComments, css: 'comments' }, // one line comments 37 | { regex: r.multiLineCComments, css: 'comments' }, // multiline comments 38 | { regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion 39 | { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords 40 | ]; 41 | 42 | this.forHtmlScript(r.scriptScriptTags); 43 | }; 44 | 45 | Brush.prototype = new SyntaxHighlighter.Highlighter(); 46 | Brush.aliases = ['js', 'jscript', 'javascript']; 47 | 48 | SyntaxHighlighter.brushes.JScript = Brush; 49 | 50 | // CommonJS 51 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; 52 | })(); 53 | -------------------------------------------------------------------------------- /Scripts/DataTables-1.9.4/extras/Scroller/media/js/dataTables.scroller.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Scripts/DataTables-1.9.4/extras/Scroller/media/js/dataTables.scroller.min.js.gz -------------------------------------------------------------------------------- /Scripts/DataTables-1.9.4/extras/TableTools/media/js/TableTools.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/Scripts/DataTables-1.9.4/extras/TableTools/media/js/TableTools.min.js.gz -------------------------------------------------------------------------------- /Scripts/_references.js: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | /// 4 | /// 5 | /// 6 | /// -------------------------------------------------------------------------------- /Scripts/foundation/foundation.alerts.js: -------------------------------------------------------------------------------- 1 | /*jslint unparam: true, browser: true, indent: 2 */ 2 | 3 | ;(function ($, window, document, undefined) { 4 | 'use strict'; 5 | 6 | Foundation.libs.alerts = { 7 | name : 'alerts', 8 | 9 | version : '4.0.0', 10 | 11 | settings : { 12 | speed: 300, // fade out speed 13 | callback: function (){} 14 | }, 15 | 16 | init : function (scope, method, options) { 17 | this.scope = scope || this.scope; 18 | 19 | if (typeof method === 'object') { 20 | $.extend(true, this.settings, method); 21 | } 22 | 23 | if (typeof method != 'string') { 24 | if (!this.settings.init) this.events(); 25 | 26 | return this.settings.init; 27 | } else { 28 | return this[method].call(this, options); 29 | } 30 | }, 31 | 32 | events : function () { 33 | var self = this; 34 | 35 | $(this.scope).on('click.fndtn.alerts', '[data-alert] a.close', function (e) { 36 | e.preventDefault(); 37 | $(this).closest("[data-alert]").fadeOut(self.speed, function () { 38 | $(this).remove(); 39 | self.settings.callback(); 40 | }); 41 | }); 42 | 43 | this.settings.init = true; 44 | }, 45 | 46 | off : function () { 47 | $(this.scope).off('.fndtn.alerts'); 48 | } 49 | }; 50 | }(Foundation.zj, this, this.document)); 51 | -------------------------------------------------------------------------------- /Scripts/foundation/foundation.cookie.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery Cookie Plugin v1.3 3 | * https://github.com/carhartl/jquery-cookie 4 | * 5 | * Copyright 2011, Klaus Hartl 6 | * Dual licensed under the MIT or GPL Version 2 licenses. 7 | * http://www.opensource.org/licenses/mit-license.php 8 | * http://www.opensource.org/licenses/GPL-2.0 9 | * 10 | * Modified to work with Zepto.js by ZURB 11 | */ 12 | (function ($, document, undefined) { 13 | 14 | var pluses = /\+/g; 15 | 16 | function raw(s) { 17 | return s; 18 | } 19 | 20 | function decoded(s) { 21 | return decodeURIComponent(s.replace(pluses, ' ')); 22 | } 23 | 24 | var config = $.cookie = function (key, value, options) { 25 | 26 | // write 27 | if (value !== undefined) { 28 | options = $.extend({}, config.defaults, options); 29 | 30 | if (value === null) { 31 | options.expires = -1; 32 | } 33 | 34 | if (typeof options.expires === 'number') { 35 | var days = options.expires, t = options.expires = new Date(); 36 | t.setDate(t.getDate() + days); 37 | } 38 | 39 | value = config.json ? JSON.stringify(value) : String(value); 40 | 41 | return (document.cookie = [ 42 | encodeURIComponent(key), '=', config.raw ? value : encodeURIComponent(value), 43 | options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE 44 | options.path ? '; path=' + options.path : '', 45 | options.domain ? '; domain=' + options.domain : '', 46 | options.secure ? '; secure' : '' 47 | ].join('')); 48 | } 49 | 50 | // read 51 | var decode = config.raw ? raw : decoded; 52 | var cookies = document.cookie.split('; '); 53 | for (var i = 0, l = cookies.length; i < l; i++) { 54 | var parts = cookies[i].split('='); 55 | if (decode(parts.shift()) === key) { 56 | var cookie = decode(parts.join('=')); 57 | return config.json ? JSON.parse(cookie) : cookie; 58 | } 59 | } 60 | 61 | return null; 62 | }; 63 | 64 | config.defaults = {}; 65 | 66 | $.removeCookie = function (key, options) { 67 | if ($.cookie(key) !== null) { 68 | $.cookie(key, null, options); 69 | return true; 70 | } 71 | return false; 72 | }; 73 | 74 | })(Foundation.zj, document); 75 | -------------------------------------------------------------------------------- /Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @model DatatablesExample.Models.HomeModel 2 | @{ 3 | ViewBag.Title = "Index"; 4 | Layout = "~/Views/Shared/_Layout.cshtml"; 5 | } 6 |

7 | Index

8 |
9 |
10 | 11 | 12 | 13 | 16 | 19 | 22 | 25 | 26 | 27 |
14 | First Name 15 | 17 | Last Name 18 | 20 | Nationality 21 | 23 | Date of Birth 24 |
28 |
29 |
30 | @section scripts{ 31 | 47 | } 48 | -------------------------------------------------------------------------------- /Views/ResponsiveExample/Index.cshtml: -------------------------------------------------------------------------------- 1 | @model DatatablesExample.Models.HomeModel 2 | @{ 3 | ViewBag.Title = "Index"; 4 | Layout = "~/Views/Shared/_Layout.cshtml"; 5 | } 6 |

Responsive Example

7 |
8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
First NameLast NameNationalityDate of Birth
19 |
20 |
21 | @section scripts{ 22 | 23 | 24 | 48 | } 49 | -------------------------------------------------------------------------------- /Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | 5 | 6 | 7 | 8 | 9 | Error 10 | 11 | 12 |

13 | Sorry, an error occurred while processing your request. 14 |

15 | 16 | -------------------------------------------------------------------------------- /Views/Shared/RowDetail.cshtml: -------------------------------------------------------------------------------- 1 | @model DatatablesExample.Models.RowDetailModel 2 | 3 | 4 | 5 | 8 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 |
6 |
Date Added
7 |
9 | @if (Model.DateAdded.HasValue) 10 | { 11 | @Model.DateAdded.Value.ToString("dd MMM yyyy") 12 | } 13 | else 14 | { 15 | @Html.Raw(" ") 16 | } 17 |
Mobile Tel. No.
@Model.MobileTel
Home Tel. No.
@Model.HomeTel
Email Address
@Model.EmailAddress
32 | -------------------------------------------------------------------------------- /Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | @ViewBag.Title 7 | @Styles.Render("~/Content/css") 8 | @Scripts.Render("~/bundles/modernizr") 9 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 19 | 20 | @RenderBody() 21 | 22 | @Scripts.Render("~/bundles/jquery") 23 | @RenderSection("scripts", required: false) 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Web.Debug.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 17 | 18 | 29 | 30 | -------------------------------------------------------------------------------- /Web.Release.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 17 | 18 | 19 | 30 | 31 | -------------------------------------------------------------------------------- /desktopResponsive.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/desktopResponsive.PNG -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/Content/App.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/Content/Web.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/EntityFramework.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/EntityFramework.5.0.0/EntityFramework.5.0.0.nupkg -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/lib/net40/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/EntityFramework.5.0.0/lib/net40/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/lib/net45/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/EntityFramework.5.0.0/lib/net45/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/EntityFramework.PS3.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/EntityFramework.5.0.0/tools/EntityFramework.PS3.psd1 -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.Utility.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/EntityFramework.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/EntityFramework.5.0.0/tools/EntityFramework.psd1 -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/Redirect.VS11.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/Redirect.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/about_EntityFramework.help.txt: -------------------------------------------------------------------------------- 1 | TOPIC 2 | about_EntityFramework 3 | 4 | SHORT DESCRIPTION 5 | Provides information about Entity Framework commands. 6 | 7 | LONG DESCRIPTION 8 | This topic describes the Entity Framework commands. Entity Framework is 9 | Microsoft's recommended data access technology for new applications. 10 | 11 | 12 | The following Entity Framework cmdlets are included. 13 | 14 | Cmdlet Description 15 | ----------------- --------------------------------------------------- 16 | Enable-Migrations Enables Code First Migrations in a project. 17 | 18 | Add-Migration Scaffolds a migration script for any pending model 19 | changes. 20 | 21 | Update-Database Applies any pending migrations to the database. 22 | 23 | Get-Migrations Displays the migrations that have been applied to 24 | the target database. 25 | 26 | SEE ALSO 27 | Enable-Migrations 28 | Add-Migration 29 | Update-Database 30 | Get-Migrations 31 | -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/EntityFramework.5.0.0/tools/migrate.exe -------------------------------------------------------------------------------- /packages/Foundation4.Core.4.0.8/Foundation4.Core.4.0.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Foundation4.Core.4.0.8/Foundation4.Core.4.0.8.nupkg -------------------------------------------------------------------------------- /packages/Foundation4.Core.4.0.8/content/Content/foundation/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Foundation4.Core.4.0.8/content/Content/foundation/app.css -------------------------------------------------------------------------------- /packages/Foundation4.Core.4.0.8/content/Scripts/foundation/foundation.alerts.js: -------------------------------------------------------------------------------- 1 | /*jslint unparam: true, browser: true, indent: 2 */ 2 | 3 | ;(function ($, window, document, undefined) { 4 | 'use strict'; 5 | 6 | Foundation.libs.alerts = { 7 | name : 'alerts', 8 | 9 | version : '4.0.0', 10 | 11 | settings : { 12 | speed: 300, // fade out speed 13 | callback: function (){} 14 | }, 15 | 16 | init : function (scope, method, options) { 17 | this.scope = scope || this.scope; 18 | 19 | if (typeof method === 'object') { 20 | $.extend(true, this.settings, method); 21 | } 22 | 23 | if (typeof method != 'string') { 24 | if (!this.settings.init) this.events(); 25 | 26 | return this.settings.init; 27 | } else { 28 | return this[method].call(this, options); 29 | } 30 | }, 31 | 32 | events : function () { 33 | var self = this; 34 | 35 | $(this.scope).on('click.fndtn.alerts', '[data-alert] a.close', function (e) { 36 | e.preventDefault(); 37 | $(this).closest("[data-alert]").fadeOut(self.speed, function () { 38 | $(this).remove(); 39 | self.settings.callback(); 40 | }); 41 | }); 42 | 43 | this.settings.init = true; 44 | }, 45 | 46 | off : function () { 47 | $(this.scope).off('.fndtn.alerts'); 48 | } 49 | }; 50 | }(Foundation.zj, this, this.document)); 51 | -------------------------------------------------------------------------------- /packages/Foundation4.MVC4.1.0.408/Foundation4.MVC4.1.0.408.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Foundation4.MVC4.1.0.408/Foundation4.MVC4.1.0.408.nupkg -------------------------------------------------------------------------------- /packages/Foundation4.MVC4.1.0.408/content/Content/foundation/foundation.mvc.css: -------------------------------------------------------------------------------- 1 | /* -------------------------------------------------- 2 | This file contains CSS overrides that are specific 3 | to making sure that Foundation works well with MVC 4 | ----------------------------------------------------- 5 | */ 6 | 7 | /* Overrides: Errors */ 8 | .input-validation-error, input.input-validation-error, textarea.input-validation-error { border-color: #c60f13; background-color: rgba(198, 15, 19, 0.1); } 9 | 10 | .field-validation-error { display: block; padding: 6px 4px; margin-top: -13px; margin-bottom: 12px; background: #c60f13; color: #fff; font-size: 12px; font-weight: bold; -moz-border-radius-bottomleft: 2px; -webkit-border-bottom-left-radius: 2px; border-bottom-left-radius: 2px; -moz-border-radius-bottomright: 2px; -webkit-border-bottom-right-radius: 2px; border-bottom-right-radius: 2px; } 11 | 12 | -------------------------------------------------------------------------------- /packages/Foundation4.MVC4.1.0.408/content/Views/Shared/_Foundation.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | @*Set the viewport width to device width for mobile *@ 11 | 12 | 13 | @ViewBag.Title - Welcome to Foundation 14 | 15 | 16 | @Styles.Render("~/Content/foundation/css") 17 | 18 | @RenderSection("head", required: false) 19 | @Scripts.Render("~/bundles/modernizr") 20 | 21 | 22 | @RenderBody() 23 | @* Zepto polyfill: If you need to support Internet Explorer, you can fall back on jQuery. http://zeptojs.com/ *@ 24 | 29 | 30 | @Scripts.Render("~/bundles/foundation") 31 | 34 | @*Use the Scripts section to define page specific scripts*@ 35 | @RenderSection("scripts", required: false) 36 | 37 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.4.0.20710.0/Microsoft.AspNet.Mvc.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.Mvc.4.0.20710.0/Microsoft.AspNet.Mvc.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.4.0.20710.0/lib/net40/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.Mvc.4.0.20710.0/lib/net40/System.Web.Mvc.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Providers.1.2/Microsoft.AspNet.Providers.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.Providers.1.2/Microsoft.AspNet.Providers.1.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Providers.Core.1.1/Microsoft.AspNet.Providers.Core.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.Providers.Core.1.1/Microsoft.AspNet.Providers.Core.1.1.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Providers.Core.1.1/lib/net40/System.Web.Providers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.Providers.Core.1.1/lib/net40/System.Web.Providers.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Providers.Core.1.1/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.Providers.Core.1.1/readme.html -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.2.0.20710.0/Microsoft.AspNet.Razor.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.Razor.2.0.20710.0/Microsoft.AspNet.Razor.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.2.0.20710.0/lib/net40/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.Razor.2.0.20710.0/lib/net40/System.Web.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.0.0/Microsoft.AspNet.Web.Optimization.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.Web.Optimization.1.0.0/Microsoft.AspNet.Web.Optimization.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.0.0/lib/net40/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.Web.Optimization.1.0.0/lib/net40/System.Web.Optimization.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.4.0.20710.0/Microsoft.AspNet.WebApi.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.WebApi.4.0.20710.0/Microsoft.AspNet.WebApi.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/Microsoft.AspNet.WebApi.Client.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/Microsoft.AspNet.WebApi.Client.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/lib/net40/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/lib/net40/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/Microsoft.AspNet.WebApi.Core.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/Microsoft.AspNet.WebApi.Core.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/content/web.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/lib/net40/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/lib/net40/System.Web.Http.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/lib/net40/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/lib/net40/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.20710.0/Microsoft.AspNet.WebPages.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.WebPages.2.0.20710.0/Microsoft.AspNet.WebPages.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.Helpers.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Modernizr.2.5.3/Modernizr.2.5.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Modernizr.2.5.3/Modernizr.2.5.3.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.6/Newtonsoft.Json.4.5.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Newtonsoft.Json.4.5.6/Newtonsoft.Json.4.5.6.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.6/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/Newtonsoft.Json.4.5.6/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/WebGrease.1.1.0/WebGrease.1.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/WebGrease.1.1.0/WebGrease.1.1.0.nupkg -------------------------------------------------------------------------------- /packages/WebGrease.1.1.0/lib/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/WebGrease.1.1.0/lib/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /packages/WebGrease.1.1.0/lib/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/WebGrease.1.1.0/lib/WebGrease.dll -------------------------------------------------------------------------------- /packages/WebGrease.1.1.0/tools/WG.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/WebGrease.1.1.0/tools/WG.exe -------------------------------------------------------------------------------- /packages/jQuery.1.7.1.1/Tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | # VS 11 and above supports the new intellisense JS files 6 | $supportsJsIntelliSenseFile = [System.Version]::Parse($dte.Version).Major -ge 11 7 | 8 | if (-not $supportsJsIntelliSenseFile) { 9 | Write-Host "IntelliSense JS files are not supported by your version of VS: $dte.Version" 10 | exit 11 | } 12 | 13 | if ($scriptsFolderProjectItem -eq $null) { 14 | # No Scripts folder 15 | Write-Host "No Scripts folder found" 16 | exit 17 | } 18 | 19 | # Delete the vsdoc file from the project 20 | try { 21 | $vsDocProjectItem = $scriptsFolderProjectItem.ProjectItems.Item("jquery-$ver-vsdoc.js") 22 | Delete-ProjectItem $vsDocProjectItem 23 | } 24 | catch { 25 | Write-Host "Error deleting vsdoc file: " + $_.Exception -ForegroundColor Red 26 | exit 27 | } 28 | 29 | # Copy the intellisense file to the project from the tools folder 30 | $intelliSenseFileSourcePath = Join-Path $toolsPath $intelliSenseFileName 31 | try { 32 | $scriptsFolderProjectItem.ProjectItems.AddFromFileCopy($intelliSenseFileSourcePath) 33 | } 34 | catch { 35 | # This will throw if the file already exists, so we need to catch here 36 | } 37 | 38 | # Update the _references.js file 39 | AddOrUpdate-Reference $scriptsFolderProjectItem $jqueryFileNameRegEx $jqueryFileName -------------------------------------------------------------------------------- /packages/jQuery.1.7.1.1/Tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | # Determine the file paths 6 | $projectIntelliSenseFilePath = Join-Path $projectScriptsFolderPath $intelliSenseFileName 7 | $origIntelliSenseFilePath = Join-Path $toolsPath $intelliSenseFileName 8 | 9 | if (Test-Path $projectIntelliSenseFilePath) { 10 | if ((Get-Checksum $projectIntelliSenseFilePath) -eq (Get-Checksum $origIntelliSenseFilePath)) { 11 | # The intellisense file in the project matches the file in the tools folder, delete it 12 | 13 | if ($scriptsFolderProjectItem -eq $null) { 14 | # No Scripts folder 15 | exit 16 | } 17 | 18 | try { 19 | # Get the project item for the intellisense file 20 | $intelliSenseFileProjectItem = $scriptsFolderProjectItem.ProjectItems.Item($intelliSenseFileName) 21 | } 22 | catch { 23 | # The item wasn't found 24 | exit 25 | } 26 | 27 | # Delete the project item 28 | Delete-ProjectItem $intelliSenseFileProjectItem 29 | } 30 | else { 31 | $projectScriptsFolderLeaf = Split-Path $projectScriptsFolderPath -Leaf 32 | Write-Host "Skipping '$projectScriptsFolderLeaf\$intelliSenseFileName' because it was modified." -ForegroundColor Magenta 33 | } 34 | } 35 | else { 36 | # The intellisense file was not found in project 37 | Write-Host "The intellisense file was not found in project at path $projectIntelliSenseFilePath" 38 | } 39 | 40 | # Update the _references.js file 41 | Remove-Reference $scriptsFolderProjectItem $jqueryFileNameRegEx -------------------------------------------------------------------------------- /packages/jQuery.1.7.1.1/jQuery.1.7.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.1.7.1.1/jQuery.1.7.1.1.nupkg -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Accordion 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Accordion#theming 9 | */ 10 | /* IE/Win - Fix animation bug - #4615 */ 11 | .ui-accordion { width: 100%; } 12 | .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } 13 | .ui-accordion .ui-accordion-li-fix { display: inline; } 14 | .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } 15 | .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; } 16 | .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; } 17 | .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } 18 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; } 19 | .ui-accordion .ui-accordion-content-active { display: block; } 20 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Autocomplete#theming 9 | */ 10 | .ui-autocomplete { position: absolute; cursor: default; } 11 | 12 | /* workarounds */ 13 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ 14 | 15 | /* 16 | * jQuery UI Menu 1.8.20 17 | * 18 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 19 | * Licensed under the MIT license. 20 | * http://jquery.org/license 21 | * 22 | * http://docs.jquery.com/UI/Menu#theming 23 | */ 24 | .ui-menu { 25 | list-style:none; 26 | padding: 2px; 27 | margin: 0; 28 | display:block; 29 | float: left; 30 | } 31 | .ui-menu .ui-menu { 32 | margin-top: -3px; 33 | } 34 | .ui-menu .ui-menu-item { 35 | margin:0; 36 | padding: 0; 37 | zoom: 1; 38 | float: left; 39 | clear: left; 40 | width: 100%; 41 | } 42 | .ui-menu .ui-menu-item a { 43 | text-decoration:none; 44 | display:block; 45 | padding:.2em .4em; 46 | line-height:1.5; 47 | zoom:1; 48 | } 49 | .ui-menu .ui-menu-item a.ui-state-hover, 50 | .ui-menu .ui-menu-item a.ui-state-active { 51 | font-weight: normal; 52 | margin: -1px; 53 | } 54 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import url("jquery.ui.core.css"); 11 | 12 | @import url("jquery.ui.accordion.css"); 13 | @import url("jquery.ui.autocomplete.css"); 14 | @import url("jquery.ui.button.css"); 15 | @import url("jquery.ui.datepicker.css"); 16 | @import url("jquery.ui.dialog.css"); 17 | @import url("jquery.ui.progressbar.css"); 18 | @import url("jquery.ui.resizable.css"); 19 | @import url("jquery.ui.selectable.css"); 20 | @import url("jquery.ui.slider.css"); 21 | @import url("jquery.ui.tabs.css"); 22 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.core.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming/API 9 | */ 10 | 11 | /* Layout helpers 12 | ----------------------------------*/ 13 | .ui-helper-hidden { display: none; } 14 | .ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } 15 | .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } 16 | .ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; } 17 | .ui-helper-clearfix:after { clear: both; } 18 | .ui-helper-clearfix { zoom: 1; } 19 | .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } 20 | 21 | 22 | /* Interaction Cues 23 | ----------------------------------*/ 24 | .ui-state-disabled { cursor: default !important; } 25 | 26 | 27 | /* Icons 28 | ----------------------------------*/ 29 | 30 | /* states and images */ 31 | .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } 32 | 33 | 34 | /* Misc visuals 35 | ----------------------------------*/ 36 | 37 | /* Overlays */ 38 | .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } 39 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.dialog.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Dialog 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Dialog#theming 9 | */ 10 | .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; } 11 | .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; } 12 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } 13 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } 14 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } 15 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } 16 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } 17 | .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } 18 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } 19 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } 20 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } 21 | .ui-draggable .ui-dialog-titlebar { cursor: move; } 22 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.resizable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Resizable 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Resizable#theming 9 | */ 10 | .ui-resizable { position: relative;} 11 | .ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; } 12 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } 13 | .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } 14 | .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } 15 | .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } 16 | .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } 17 | .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } 18 | .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } 19 | .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } 20 | .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Slider 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Slider#theming 9 | */ 10 | .ui-slider { position: relative; text-align: left; } 11 | .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } 12 | .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } 13 | 14 | .ui-slider-horizontal { height: .8em; } 15 | .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } 16 | .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } 17 | .ui-slider-horizontal .ui-slider-range-min { left: 0; } 18 | .ui-slider-horizontal .ui-slider-range-max { right: 0; } 19 | 20 | .ui-slider-vertical { width: .8em; height: 100px; } 21 | .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } 22 | .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } 23 | .ui-slider-vertical .ui-slider-range-min { bottom: 0; } 24 | .ui-slider-vertical .ui-slider-range-max { top: 0; } -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/jquery.ui.tabs.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tabs 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Tabs#theming 9 | */ 10 | .ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ 11 | .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; } 12 | .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; } 13 | .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; } 14 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; } 15 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } 16 | .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ 17 | .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; } 18 | .ui-tabs .ui-tabs-hide { display: none !important; } 19 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.accordion.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-accordion{width:100%}.ui-accordion .ui-accordion-header{cursor:pointer;position:relative;margin-top:1px;zoom:1}.ui-accordion .ui-accordion-li-fix{display:inline}.ui-accordion .ui-accordion-header-active{border-bottom:0!important}.ui-accordion .ui-accordion-header a{display:block;font-size:1em;padding:.5em .5em .5em .7em}.ui-accordion-icons .ui-accordion-header a{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;margin-top:-2px;position:relative;top:1px;margin-bottom:2px;overflow:auto;display:none;zoom:1}.ui-accordion .ui-accordion-content-active{display:block} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.autocomplete.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-autocomplete{position:absolute;cursor:default}* html .ui-autocomplete{width:1px}.ui-menu{list-style:none;padding:2px;margin:0;display:block;float:left}.ui-menu .ui-menu{margin-top:-3px}.ui-menu .ui-menu-item{margin:0;padding:0;zoom:1;float:left;clear:left;width:100%}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:.2em .4em;line-height:1.5;zoom:1}.ui-menu .ui-menu-item a.ui-state-hover,.ui-menu .ui-menu-item a.ui-state-active{font-weight:normal;margin:-1px} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.button.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.button.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-button{display:inline-block;position:relative;padding:0;margin-right:.1em;text-decoration:none!important;cursor:pointer;text-align:center;zoom:1;overflow:visible}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:1.4}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}button.ui-button::-moz-focus-inner{border:0;padding:0} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.core.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{zoom:1}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.dialog.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.dialog.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-dialog{position:absolute;padding:.2em;width:300px;overflow:hidden}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 16px .1em 0}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:19px;margin:-10px 0 0 0;padding:1px;height:18px}.ui-dialog .ui-dialog-titlebar-close span{display:block;margin:1px}.ui-dialog .ui-dialog-titlebar-close:hover,.ui-dialog .ui-dialog-titlebar-close:focus{padding:0}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto;zoom:1}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.progressbar.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.resizable.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.selectable.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.slider.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/Content/Content/themes/base/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.tabs.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-tabs{position:relative;padding:.2em;zoom:1}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:1px;margin:0 .2em 1px 0;border-bottom:0!important;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-selected{margin-bottom:0;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-selected a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-state-processing a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tabs .ui-tabs-hide{display:none!important} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.8.20.1/jQuery.UI.Combined.1.8.20.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.UI.Combined.1.8.20.1/jQuery.UI.Combined.1.8.20.1.nupkg -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.9.0.1/jQuery.Validation.1.9.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jQuery.Validation.1.9.0.1/jQuery.Validation.1.9.0.1.nupkg -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/docs/media/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/docs/media/images/arrow.jpg -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/docs/media/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/docs/media/images/arrow.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/docs/media/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/docs/media/images/extended.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/AutoFill/media/css/AutoFill.css: -------------------------------------------------------------------------------- 1 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 2 | * AutoFill styles 3 | */ 4 | 5 | div.AutoFill_filler { 6 | display: none; 7 | position: absolute; 8 | height: 14px; 9 | width: 14px; 10 | background: url(../images/filler.png) no-repeat center center; 11 | z-index: 1002; 12 | } 13 | 14 | div.AutoFill_border { 15 | display: none; 16 | position: absolute; 17 | background-color: #0063dc; 18 | z-index: 1001; 19 | 20 | box-shadow: 0px 0px 5px #76b4ff; 21 | -moz-box-shadow: 0px 0px 5px #76b4ff; 22 | -webkit-box-shadow: 0px 0px 5px #76b4ff; 23 | } 24 | 25 | -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/AutoFill/media/docs/media/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/AutoFill/media/docs/media/images/arrow.jpg -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/AutoFill/media/docs/media/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/AutoFill/media/docs/media/images/arrow.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/AutoFill/media/docs/media/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/AutoFill/media/docs/media/images/extended.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/AutoFill/media/images/filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/AutoFill/media/images/filler.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColReorder/media/css/ColReorder.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Namespace DTCR - "DataTables ColReorder" plug-in 3 | */ 4 | 5 | table.DTCR_clonedTable { 6 | background-color: white; 7 | z-index: 202; 8 | } 9 | 10 | div.DTCR_pointer { 11 | width: 1px; 12 | background-color: #0259C4; 13 | z-index: 201; 14 | } 15 | 16 | body.alt div.DTCR_pointer { 17 | margin-top: -15px; 18 | margin-left: -9px; 19 | width: 18px; 20 | background: url('../images/insert.png') no-repeat top left; 21 | } -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColReorder/media/docs/media/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColReorder/media/docs/media/images/arrow.jpg -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColReorder/media/docs/media/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColReorder/media/docs/media/images/arrow.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColReorder/media/docs/media/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColReorder/media/docs/media/images/extended.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColReorder/media/images/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColReorder/media/images/insert.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColVis/media/css/ColVis.css: -------------------------------------------------------------------------------- 1 | 2 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 3 | * ColVis styles 4 | */ 5 | .ColVis { 6 | float: right; 7 | margin-bottom: 1em; 8 | } 9 | 10 | .ColVis_Button { 11 | position: relative; 12 | float: left; 13 | margin-right: 3px; 14 | padding: 3px 5px; 15 | height: 30px; 16 | background-color: #fff; 17 | border: 1px solid #d0d0d0; 18 | cursor: pointer; 19 | *cursor: hand; 20 | } 21 | 22 | button.ColVis_Button::-moz-focus-inner { 23 | border: none !important; 24 | padding: 0; 25 | } 26 | 27 | .ColVis_text_hover { 28 | border: 1px solid #999; 29 | background-color: #f0f0f0; 30 | } 31 | 32 | div.ColVis_collectionBackground { 33 | background-color: black; 34 | z-index: 1100; 35 | } 36 | 37 | div.ColVis_collection { 38 | position: relative; 39 | width: 150px; 40 | background-color: #f3f3f3; 41 | padding: 3px; 42 | border: 1px solid #ccc; 43 | z-index: 1102; 44 | } 45 | 46 | div.ColVis_collection button.ColVis_Button { 47 | background-color: white; 48 | width: 100%; 49 | float: none; 50 | margin-bottom: 2px; 51 | } 52 | 53 | div.ColVis_catcher { 54 | position: absolute; 55 | z-index: 1101; 56 | } 57 | 58 | .disabled { 59 | color: #999; 60 | } 61 | 62 | 63 | 64 | button.ColVis_Button { 65 | text-align: left; 66 | } 67 | 68 | div.ColVis_collection button.ColVis_Button:hover { 69 | border: 1px solid #999; 70 | background-color: #f0f0f0; 71 | } 72 | 73 | span.ColVis_radio { 74 | display: inline-block; 75 | width: 20px; 76 | } 77 | -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColVis/media/css/ColVisAlt.css: -------------------------------------------------------------------------------- 1 | /* 2 | * An alternative styling for ColVis 3 | * Note you will likely have to change the path for the background image used by jQuery UI theming: 4 | * ../../../../examples/examples_support/themes/smoothness 5 | */ 6 | 7 | .ColVis { 8 | position: absolute; 9 | right: 0; 10 | top: 0; 11 | width: 15px; 12 | height: 30px; 13 | } 14 | 15 | .ColVis_MasterButton { 16 | height: 100%; 17 | width: 100%; 18 | border-left-width: 0; 19 | cursor: pointer; 20 | *cursor: hand; 21 | background: url('../images/button.png') no-repeat top left; 22 | } 23 | 24 | button.ColVis_Button::-moz-focus-inner { 25 | border: none !important; 26 | padding: 0; 27 | } 28 | 29 | .ColVis_text_hover { 30 | border: 1px solid #999; 31 | background-color: #f0f0f0; 32 | } 33 | 34 | div.ColVis_collectionBackground { 35 | background-color: black; 36 | z-index: 1100; 37 | } 38 | 39 | div.ColVis_collection { 40 | position: relative; 41 | width: 150px; 42 | background-color: #f9f9f9; 43 | padding: 3px; 44 | border: 1px solid #ccc; 45 | z-index: 1102; 46 | } 47 | 48 | div.ColVis_collection button.ColVis_Button { 49 | height: 30px; 50 | width: 100%; 51 | margin-right: 3px; 52 | margin-bottom: 2px; 53 | padding: 3px 5px; 54 | cursor: pointer; 55 | *cursor: hand; 56 | text-align: left; 57 | } 58 | 59 | div.ColVis_collection button.ColVis_Button:hover { 60 | border: 1px solid #999; 61 | background-color: #f0f0f0; 62 | } 63 | 64 | div.ColVis_catcher { 65 | position: absolute; 66 | z-index: 1101; 67 | } 68 | 69 | span.ColVis_radio { 70 | display: inline-block; 71 | width: 20px; 72 | } 73 | 74 | button.ColVis_Restore { 75 | margin-top: 15px; 76 | } 77 | 78 | button.ColVis_Restore span { 79 | display: inline-block; 80 | padding-left: 10px; 81 | text-align: left; 82 | } 83 | 84 | .disabled { 85 | color: #999; 86 | } 87 | 88 | 89 | 90 | /* 91 | * Styles needed for DataTables scrolling 92 | */ 93 | div.dataTables_scrollHead { 94 | position: relative; 95 | overflow: hidden; 96 | } 97 | 98 | div.dataTables_scrollBody { 99 | overflow-y: scroll; 100 | } 101 | 102 | div.dataTables_scrollFoot { 103 | overflow: hidden; 104 | } 105 | -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColVis/media/docs/media/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColVis/media/docs/media/images/arrow.jpg -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColVis/media/docs/media/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColVis/media/docs/media/images/arrow.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColVis/media/docs/media/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColVis/media/docs/media/images/extended.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColVis/media/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/ColVis/media/images/button.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/FixedColumns/docs/media/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/FixedColumns/docs/media/images/arrow.jpg -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/FixedColumns/docs/media/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/FixedColumns/docs/media/images/arrow.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/FixedColumns/docs/media/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/FixedColumns/docs/media/images/extended.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/Scroller/media/css/dataTables.scroller.css: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Namespace: DTS (DataTables Scroller) 4 | */ 5 | 6 | div.DTS tbody th, 7 | div.DTS tbody td { 8 | white-space: nowrap; 9 | } 10 | 11 | div.DTS tbody tr.even { 12 | background-color: white; 13 | } 14 | 15 | div.DTS div.DTS_Loading { 16 | position: absolute; 17 | top: 50%; 18 | left: 50%; 19 | width: 200px; 20 | height: 20px; 21 | margin-top: -20px; 22 | margin-left: -100px; 23 | z-index: 1; 24 | 25 | border: 1px solid #999; 26 | padding: 20px 0; 27 | text-align: center; 28 | background-color: white; 29 | background-color: rgba(255, 255, 255, 0.5); 30 | } 31 | 32 | div.DTS div.dataTables_scrollHead { 33 | background-color: white; 34 | } 35 | 36 | div.DTS div.dataTables_scrollBody { 37 | z-index: 2; 38 | } 39 | 40 | div.DTS div.dataTables_scroll { 41 | background: url('../images/loading-background.png') repeat 0 0; 42 | } 43 | 44 | -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/Scroller/media/docs/media/images/arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/Scroller/media/docs/media/images/arrow.jpg -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/Scroller/media/docs/media/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/Scroller/media/docs/media/images/arrow.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/Scroller/media/docs/media/images/extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/Scroller/media/docs/media/images/extended.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/Scroller/media/images/loading-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/Scroller/media/images/loading-background.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/background.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/collection.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/collection_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/collection_hover.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/copy.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/copy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/copy_hover.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/csv.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/csv_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/csv_hover.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/pdf.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/pdf_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/pdf_hover.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/print.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/print_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/print_hover.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/psd/collection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/psd/collection.psd -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/psd/copy document.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/psd/copy document.psd -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/psd/file_types.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/psd/file_types.psd -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/psd/printer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/psd/printer.psd -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/xls.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/xls_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/images/xls_hover.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/swf/copy_csv_xls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/swf/copy_csv_xls.swf -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/swf/copy_csv_xls_pdf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/extras/TableTools/media/swf/copy_csv_xls_pdf.swf -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/Sorting icons.psd -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/back_disabled.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/back_enabled.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/back_enabled_hover.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/favicon.ico -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/forward_disabled.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/forward_enabled.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/forward_enabled_hover.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/sort_asc.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/sort_both.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/sort_desc.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Content/DataTables-1.9.4/media/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Scripts/DataTables-1.9.4/docs/media/js/shBrushJScript.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | ;(function() 18 | { 19 | // CommonJS 20 | typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null; 21 | 22 | function Brush() 23 | { 24 | var keywords = 'break case catch continue ' + 25 | 'default delete do else false ' + 26 | 'for function if in instanceof ' + 27 | 'new null return super switch ' + 28 | 'this throw true try typeof var while with' 29 | ; 30 | 31 | var r = SyntaxHighlighter.regexLib; 32 | 33 | this.regexList = [ 34 | { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings 35 | { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings 36 | { regex: r.singleLineCComments, css: 'comments' }, // one line comments 37 | { regex: r.multiLineCComments, css: 'comments' }, // multiline comments 38 | { regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion 39 | { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords 40 | ]; 41 | 42 | this.forHtmlScript(r.scriptScriptTags); 43 | }; 44 | 45 | Brush.prototype = new SyntaxHighlighter.Highlighter(); 46 | Brush.aliases = ['js', 'jscript', 'javascript']; 47 | 48 | SyntaxHighlighter.brushes.JScript = Brush; 49 | 50 | // CommonJS 51 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; 52 | })(); 53 | -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Scripts/DataTables-1.9.4/extras/AutoFill/media/docs/media/js/shBrushJScript.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | ;(function() 18 | { 19 | // CommonJS 20 | typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null; 21 | 22 | function Brush() 23 | { 24 | var keywords = 'break case catch continue ' + 25 | 'default delete do else false ' + 26 | 'for function if in instanceof ' + 27 | 'new null return super switch ' + 28 | 'this throw true try typeof var while with' 29 | ; 30 | 31 | var r = SyntaxHighlighter.regexLib; 32 | 33 | this.regexList = [ 34 | { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings 35 | { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings 36 | { regex: r.singleLineCComments, css: 'comments' }, // one line comments 37 | { regex: r.multiLineCComments, css: 'comments' }, // multiline comments 38 | { regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion 39 | { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords 40 | ]; 41 | 42 | this.forHtmlScript(r.scriptScriptTags); 43 | }; 44 | 45 | Brush.prototype = new SyntaxHighlighter.Highlighter(); 46 | Brush.aliases = ['js', 'jscript', 'javascript']; 47 | 48 | SyntaxHighlighter.brushes.JScript = Brush; 49 | 50 | // CommonJS 51 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; 52 | })(); 53 | -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Scripts/DataTables-1.9.4/extras/AutoFill/media/js/AutoFill.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Scripts/DataTables-1.9.4/extras/AutoFill/media/js/AutoFill.min.js.gz -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Scripts/DataTables-1.9.4/extras/ColReorder/media/docs/media/js/shBrushJScript.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | ;(function() 18 | { 19 | // CommonJS 20 | typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null; 21 | 22 | function Brush() 23 | { 24 | var keywords = 'break case catch continue ' + 25 | 'default delete do else false ' + 26 | 'for function if in instanceof ' + 27 | 'new null return super switch ' + 28 | 'this throw true try typeof var while with' 29 | ; 30 | 31 | var r = SyntaxHighlighter.regexLib; 32 | 33 | this.regexList = [ 34 | { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings 35 | { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings 36 | { regex: r.singleLineCComments, css: 'comments' }, // one line comments 37 | { regex: r.multiLineCComments, css: 'comments' }, // multiline comments 38 | { regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion 39 | { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords 40 | ]; 41 | 42 | this.forHtmlScript(r.scriptScriptTags); 43 | }; 44 | 45 | Brush.prototype = new SyntaxHighlighter.Highlighter(); 46 | Brush.aliases = ['js', 'jscript', 'javascript']; 47 | 48 | SyntaxHighlighter.brushes.JScript = Brush; 49 | 50 | // CommonJS 51 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; 52 | })(); 53 | -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Scripts/DataTables-1.9.4/extras/ColReorder/media/js/ColReorder.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Scripts/DataTables-1.9.4/extras/ColReorder/media/js/ColReorder.min.js.gz -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Scripts/DataTables-1.9.4/extras/ColVis/media/docs/media/js/shBrushJScript.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | ;(function() 18 | { 19 | // CommonJS 20 | typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null; 21 | 22 | function Brush() 23 | { 24 | var keywords = 'break case catch continue ' + 25 | 'default delete do else false ' + 26 | 'for function if in instanceof ' + 27 | 'new null return super switch ' + 28 | 'this throw true try typeof var while with' 29 | ; 30 | 31 | var r = SyntaxHighlighter.regexLib; 32 | 33 | this.regexList = [ 34 | { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings 35 | { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings 36 | { regex: r.singleLineCComments, css: 'comments' }, // one line comments 37 | { regex: r.multiLineCComments, css: 'comments' }, // multiline comments 38 | { regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion 39 | { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords 40 | ]; 41 | 42 | this.forHtmlScript(r.scriptScriptTags); 43 | }; 44 | 45 | Brush.prototype = new SyntaxHighlighter.Highlighter(); 46 | Brush.aliases = ['js', 'jscript', 'javascript']; 47 | 48 | SyntaxHighlighter.brushes.JScript = Brush; 49 | 50 | // CommonJS 51 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; 52 | })(); 53 | -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Scripts/DataTables-1.9.4/extras/ColVis/media/js/ColVis.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Scripts/DataTables-1.9.4/extras/ColVis/media/js/ColVis.min.js.gz -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Scripts/DataTables-1.9.4/extras/FixedColumns/docs/media/js/shBrushJScript.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | ;(function() 18 | { 19 | // CommonJS 20 | typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null; 21 | 22 | function Brush() 23 | { 24 | var keywords = 'break case catch continue ' + 25 | 'default delete do else false ' + 26 | 'for function if in instanceof ' + 27 | 'new null return super switch ' + 28 | 'this throw true try typeof var while with' 29 | ; 30 | 31 | var r = SyntaxHighlighter.regexLib; 32 | 33 | this.regexList = [ 34 | { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings 35 | { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings 36 | { regex: r.singleLineCComments, css: 'comments' }, // one line comments 37 | { regex: r.multiLineCComments, css: 'comments' }, // multiline comments 38 | { regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion 39 | { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords 40 | ]; 41 | 42 | this.forHtmlScript(r.scriptScriptTags); 43 | }; 44 | 45 | Brush.prototype = new SyntaxHighlighter.Highlighter(); 46 | Brush.aliases = ['js', 'jscript', 'javascript']; 47 | 48 | SyntaxHighlighter.brushes.JScript = Brush; 49 | 50 | // CommonJS 51 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; 52 | })(); 53 | -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Scripts/DataTables-1.9.4/extras/FixedColumns/media/js/FixedColumns.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Scripts/DataTables-1.9.4/extras/FixedColumns/media/js/FixedColumns.min.js.gz -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Scripts/DataTables-1.9.4/extras/Scroller/media/docs/media/js/shBrushJScript.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | ;(function() 18 | { 19 | // CommonJS 20 | typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null; 21 | 22 | function Brush() 23 | { 24 | var keywords = 'break case catch continue ' + 25 | 'default delete do else false ' + 26 | 'for function if in instanceof ' + 27 | 'new null return super switch ' + 28 | 'this throw true try typeof var while with' 29 | ; 30 | 31 | var r = SyntaxHighlighter.regexLib; 32 | 33 | this.regexList = [ 34 | { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings 35 | { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings 36 | { regex: r.singleLineCComments, css: 'comments' }, // one line comments 37 | { regex: r.multiLineCComments, css: 'comments' }, // multiline comments 38 | { regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion 39 | { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords 40 | ]; 41 | 42 | this.forHtmlScript(r.scriptScriptTags); 43 | }; 44 | 45 | Brush.prototype = new SyntaxHighlighter.Highlighter(); 46 | Brush.aliases = ['js', 'jscript', 'javascript']; 47 | 48 | SyntaxHighlighter.brushes.JScript = Brush; 49 | 50 | // CommonJS 51 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; 52 | })(); 53 | -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Scripts/DataTables-1.9.4/extras/Scroller/media/js/dataTables.scroller.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Scripts/DataTables-1.9.4/extras/Scroller/media/js/dataTables.scroller.min.js.gz -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/Content/Scripts/DataTables-1.9.4/extras/TableTools/media/js/TableTools.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/Content/Scripts/DataTables-1.9.4/extras/TableTools/media/js/TableTools.min.js.gz -------------------------------------------------------------------------------- /packages/jquery.datatables.1.9.4/jquery.datatables.1.9.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/jquery.datatables.1.9.4/jquery.datatables.1.9.4.nupkg -------------------------------------------------------------------------------- /packages/knockoutjs.2.1.0/knockoutjs.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/packages/knockoutjs.2.1.0/knockoutjs.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /phoneResponsive.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/phoneResponsive.PNG -------------------------------------------------------------------------------- /tabletResponsive.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thuventhiran/DatatablesExample/5f75c47cc7246ac4e4705dc3b68a975f4da0283b/tabletResponsive.PNG --------------------------------------------------------------------------------