Skip to content

Commit f299ab3

Browse files
committed
Added jQuery IU datepicker
1 parent 1a298c4 commit f299ab3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+19605
-19
lines changed

BookCollection/App_Start/BundleConfig.cs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,14 @@ public class BundleConfig
99
public static void RegisterBundles(BundleCollection bundles)
1010
{
1111
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
12-
"~/Scripts/jquery-{version}.js"));
12+
"~/Scripts/jquery-{version}.js").Include(
13+
"~/Scripts/jquery-ui-{version}.js"));
1314

1415
bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
1516
"~/Scripts/jquery.validate*"));
1617

18+
19+
1720
// Use the development version of Modernizr to develop with and learn from. Then, when you're
1821
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
1922
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
@@ -25,7 +28,8 @@ public static void RegisterBundles(BundleCollection bundles)
2528

2629
bundles.Add(new StyleBundle("~/Content/css").Include(
2730
"~/Content/bootstrap.css",
28-
"~/Content/site.css"));
31+
"~/Content/site.css",
32+
"~/Content/jquery-ui.css"));
2933
}
3034
}
3135
}

BookCollection/BookCollection.csproj

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,42 @@
237237
<Content Include="Content\bootstrap-theme.min.css" />
238238
<Content Include="Content\bootstrap.css" />
239239
<Content Include="Content\bootstrap.min.css" />
240+
<Content Include="Content\jquery-ui.css" />
240241
<Content Include="Content\PagedList.css" />
241242
<Content Include="Content\HomeIndex.css" />
243+
<Content Include="Content\themes\base\accordion.css" />
244+
<Content Include="Content\themes\base\all.css" />
245+
<Content Include="Content\themes\base\autocomplete.css" />
246+
<Content Include="Content\themes\base\base.css" />
247+
<Content Include="Content\themes\base\button.css" />
248+
<Content Include="Content\themes\base\core.css" />
249+
<Content Include="Content\themes\base\datepicker.css" />
250+
<Content Include="Content\themes\base\dialog.css" />
251+
<Content Include="Content\themes\base\draggable.css" />
252+
<Content Include="Content\themes\base\images\ui-bg_flat_0_aaaaaa_40x100.png" />
253+
<Content Include="Content\themes\base\images\ui-bg_flat_75_ffffff_40x100.png" />
254+
<Content Include="Content\themes\base\images\ui-bg_glass_55_fbf9ee_1x400.png" />
255+
<Content Include="Content\themes\base\images\ui-bg_glass_65_ffffff_1x400.png" />
256+
<Content Include="Content\themes\base\images\ui-bg_glass_75_dadada_1x400.png" />
257+
<Content Include="Content\themes\base\images\ui-bg_glass_75_e6e6e6_1x400.png" />
258+
<Content Include="Content\themes\base\images\ui-bg_glass_95_fef1ec_1x400.png" />
259+
<Content Include="Content\themes\base\images\ui-bg_highlight-soft_75_cccccc_1x100.png" />
260+
<Content Include="Content\themes\base\images\ui-icons_222222_256x240.png" />
261+
<Content Include="Content\themes\base\images\ui-icons_2e83ff_256x240.png" />
262+
<Content Include="Content\themes\base\images\ui-icons_454545_256x240.png" />
263+
<Content Include="Content\themes\base\images\ui-icons_888888_256x240.png" />
264+
<Content Include="Content\themes\base\images\ui-icons_cd0a0a_256x240.png" />
265+
<Content Include="Content\themes\base\menu.css" />
266+
<Content Include="Content\themes\base\progressbar.css" />
267+
<Content Include="Content\themes\base\resizable.css" />
268+
<Content Include="Content\themes\base\selectable.css" />
269+
<Content Include="Content\themes\base\selectmenu.css" />
270+
<Content Include="Content\themes\base\slider.css" />
271+
<Content Include="Content\themes\base\sortable.css" />
272+
<Content Include="Content\themes\base\spinner.css" />
273+
<Content Include="Content\themes\base\tabs.css" />
274+
<Content Include="Content\themes\base\theme.css" />
275+
<Content Include="Content\themes\base\tooltip.css" />
242276
<Content Include="favicon.ico" />
243277
<Content Include="fonts\glyphicons-halflings-regular.svg" />
244278
<Content Include="Global.asax" />
@@ -250,6 +284,7 @@
250284
<Content Include="fonts\glyphicons-halflings-regular.eot" />
251285
<Content Include="Content\bootstrap.css.map" />
252286
<Content Include="Content\bootstrap-theme.css.map" />
287+
<Content Include="Images\calendar.gif" />
253288
<Content Include="Images\Flags\ad.png" />
254289
<Content Include="Images\Flags\ae.png" />
255290
<Content Include="Images\Flags\af.png" />
@@ -512,6 +547,8 @@
512547
<Content Include="Scripts\jquery-2.1.4.min.js" />
513548
<Content Include="Scripts\jquery-2.1.4.min.map" />
514549
<None Include="Scripts\jquery.validate-vsdoc.js" />
550+
<Content Include="Scripts\jquery-ui-1.11.4.js" />
551+
<Content Include="Scripts\jquery-ui-1.11.4.min.js" />
515552
<Content Include="Scripts\jquery.validate.js" />
516553
<Content Include="Scripts\jquery.validate.min.js" />
517554
<Content Include="Scripts\jquery.validate.unobtrusive.js" />
@@ -567,6 +604,23 @@
567604
<Content Include="Views\NewBooks\Index.cshtml" />
568605
<Content Include="Views\Books\UploadCover.cshtml" />
569606
<Content Include="Views\Books\UploadCompleted.cshtml" />
607+
<Content Include="Views\Shared\EditorTemplates\Week.cshtml" />
608+
<Content Include="Views\Shared\EditorTemplates\Url.cshtml" />
609+
<Content Include="Views\Shared\EditorTemplates\Time.cshtml" />
610+
<Content Include="Views\Shared\EditorTemplates\Text.cshtml" />
611+
<Content Include="Views\Shared\EditorTemplates\String.cshtml" />
612+
<Content Include="Views\Shared\EditorTemplates\Search.cshtml" />
613+
<Content Include="Views\Shared\EditorTemplates\PhoneNumber.cshtml" />
614+
<Content Include="Views\Shared\EditorTemplates\Password.cshtml" />
615+
<Content Include="Views\Shared\EditorTemplates\Number.cshtml" />
616+
<Content Include="Views\Shared\EditorTemplates\MultilineText.cshtml" />
617+
<Content Include="Views\Shared\EditorTemplates\Month.cshtml" />
618+
<Content Include="Views\Shared\EditorTemplates\EmailAddress.cshtml" />
619+
<Content Include="Views\Shared\EditorTemplates\DateTime.cshtml" />
620+
<Content Include="Views\Shared\EditorTemplates\DateTime-Local.cshtml" />
621+
<Content Include="Views\Shared\EditorTemplates\Date.cshtml" />
622+
<Content Include="Views\Shared\EditorTemplates\Color.cshtml" />
623+
<Content Include="Views\Shared\EditorTemplates\DatePicker.cshtml" />
570624
</ItemGroup>
571625
<ItemGroup>
572626
<Folder Include="App_Data\" />

0 commit comments

Comments
 (0)