AJAX Calendar Control Rehab AlFallaj.

Slides:



Advertisements
Similar presentations
the Internet browser of choiceVidor ISD What is Internet Explorer? a Web browser* produced by the Microsoft Corporation *a software application used.
Advertisements

Visual Basic 2010 How to Program. © by Pearson Education, Inc. All Rights Reserved.2.
1 Introduction to the Visual Studio.NET IDE Powerpoint slides modified from Deitel & Deitel.
Customizing Your Toolbars in Microsoft Office Lunch and Learn: June 7, 2005.
Lab 8 – C# Programming Adding two numbers CSCI 6303 – Principles of I.T. Dr. Abraham Fall 2012.
1 CS 3870/CS 5870 Static and Dynamic Web Pages ASP.NET and IIS.
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Introducing Web Controls Outline 29.1 Analyzing the.
1- Date TimePicker 2- Month Calendar 3- User Defined Controls.
CIS 451: ASP Components Dr. Ralph D. Westfall February, 2009.
JQuery UI. Slide 2 Introduction From the jQuery UI Home Page jQuery UI is a curated set of user interface interactions, effects, widgets, and themes built.
Rehab AlFallaj. Ajax Control Toolkit Add Ajax functionality to your ASP.NET Web Forms applications without writing JavaScript Add Ajax functionality to.
Microsoft Visual Basic 2005 CHAPTER 7 Creating Web Applications.
Introduction In The Name Of Allah, The Beneficent, The Merciful.
Quick guide on making PowerPoint slides  PowerPoint is a presentation program  A PowerPoint slideshow is a stack of slides being presented one after.
BIT 285: ( Web) Application Programming Lecture 18: Thursday, March 5, 2015 REST Creating a REST API Instructor: Craig Duckett.
Prepared by: Peter Huang. Log into your Google account, and find the calendar button! If not displayed, click more, and the application will be listed.
Welcome to the PowerPoint on how to use PowerPoint 2007 Neil Hecht Instructional Technology Facilitator Onslow County Schools.
Using an HTML image (img) element’s onclick event to change the source (src) of an iframe to an embedded youtube video.
Chapter 2 – Introduction to the Visual Studio .NET IDE
Rehab AlFallaj. PasswordStrength is an ASP.NET AJAX extender that can be attached to an ASP.NET TextBox control used for the entry of passwords. The PasswordStrength.
IT533 Lectures ASP.NET AJAX.
This is how you invoke the Microsoft Visual Studio 2010 Software. All Programs >> Microsoft Visual Studio 2010.
LOGIN PAGE Login Page Support CRM:
Cognos Report Studio Prompts and Subqueries. Creating a Prompt In the Query Explorer, drag the field that will require a criteria prompt into the filter.
Interstage BPM v11.2 1Copyright © 2010 FUJITSU LIMITED FORMS.
Weebly is Your Friend. * To Enhance And Promote Your Curriculum * To Provide A Student Resource * Add Efficiency to Your Planning * Informational * Promote.
© Ms. Masihi.  A Web page contains text and images that convey specific information to viewers.  To create a new web page, open Dreamweaver and select.
Creating a Curve Window. Click the Curve button to create a new Curve window.
Rehab AlFallaj.  FilteredTextBox is an extender which prevents a user from entering invalid characters into a text box. Note that since this effect can.
BeeSpoke User Delivery Ryan Bibby. System Functions  Main Menu  New Resource  Loan Resource  Return Resource  Reminders Report  Usage Report  New.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 11 Creating Web Applications and Writing Data to a Database.
Google Calendar How to create and embed it into your team page or any website.
Dive Into® Visual Basic 2010 Express
Date TimePicker, Month Calendar
Building a User Interface with Forms
Chapter 2 – Introduction to the Visual Studio .NET IDE
CS 3870/CS 5870 AJAX Prog8.
3.01 Apply Controls Associated With Visual Studio Form
© 2016, Mike Murach & Associates, Inc.
JQuery UI.
User Interface Design and Usability jQuery, jQuery UI & jQuery Plugins
SCC Supplier Performance Management (SPM) Training Day 2
Ajax Control Toolkit.
AJAX Accordion control
Epic Shortcuts.
BOLD 2.0 Navigation Help Guide.
Dreamweaver CS4 Skills PLAN – PLAN – PLAN first
AJAX Confirm Button Extender
Understanding the Visual IDE
Building 2. Click on Pages
AJAX Rehab AlFallaj.
Nov 5th Inservice.
A note from Academic Technology on using the layout provided on the next slide Your slides will need to be in widescreen format, which can be done by going.
Epic Shortcuts This material contains confidential and copyrighted information of Epic Systems Corporation - Confidential.
Epic Shortcuts.
Static and Dynamic Web Pages
Resource calendar.
Web Development Using ASP .NET
Lesson 4 Creating a page with Web Matrix
Click to edit title TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing.
EVENT TITLE Time, Date Location
TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing arrow to the right on.
EVENT TITLE Time, Date Location
Click to edit title TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing.
TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing arrow to the right on.
Click to edit title TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing.
Programming with Microsoft Visual Basic 2008 Fourth Edition
How to view ELive Recordings
Use the left and right arrow keys to navigate the tutorial
Lotus Notes Tips and Tricks
Presentation transcript:

AJAX Calendar Control Rehab AlFallaj

The Calendar control enables you to display a date picker when focus is moved to an input element. Calendar is an ASP.NET AJAX extender that can be attached to any ASP.NET TextBox control. It provides client-side date-picking functionality with customizable date format and UI in a popup control. You can interact with the calendar by clicking on a day to set the date, or the "Today" link to set the current date. In addition, the left and right arrows can be used to move forward or back a month. By clicking on the title of the calendar you can change the view from Days in the current month, to Months in the current year. Another click will switch to Years in the current Decade. This action allows you to easily jump to dates in the past or the future from within the calendar control.

First: Add a ToolkitScriptManager <asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"> </asp:ToolkitScriptManager>

Second: Add a TextBox Control The CalendarExtender works with a standard ASP.NET TextBox control. In Design view, drag a TextBox control from under the Standard tab in the Toolbox onto your page.

Third: Add a CalendarExtender The next step is to apply a CalendarExtender control to the TextBox. Add the following CalendarExtender control to your page: <asp:CalendarExtender ID="CalendarExtender1" TargetControlID="txtStartDate" runat="server"> </asp:CalendarExtender>

Result:

OR: You can add am Image button so the Calendar Extendar works after clicking the ImageButton:

In the CalendarExtendar Property window: popUpButtonID = ID of the ImageButton TargetControlID = ID of the TextBox