Library

Video Player is loading.
 
Current Time 0:00
Duration 6:57
Loaded: 0%
 
x1.00


Back

Games & Quizzes

Training Mode - Typing
Fill the gaps to the Lyric - Best method
Training Mode - Picking
Pick the correct word to fill in the gap
Fill In The Blank
Find the missing words in a sentence Requires 5 vocabulary annotations
Vocabulary Match
Match the words to the definitions Requires 10 vocabulary annotations

You may need to watch a part of the video to unlock quizzes

Don't forget to Sign In to save your points

Challenge Accomplished

PERFECT HITS +NaN
HITS +NaN
LONGEST STREAK +NaN
TOTAL +
- //

We couldn't find definitions for the word you were looking for.
Or maybe the current language is not supported

  • 00:07

    In this video, you’ll learn How to create a new MVC web application.

  • 00:11

    Let’s get Started by clicking "New Project".

  • 00:14

    Here you can see the DevExpress web project templates.

  • 00:17

    An empty project that contains everything you need to begin.

  • 00:19

    A standard project template that allows you to choose the layout and configure your web

  • 00:20

    application.

  • 00:21

    And The MVC Outlook Inspired Web application project template allows you to create a fully

  • 00:25

    functional Outlook-style mail web application in just two mouse clicks.

  • 00:30

    I'll choose this project template and create a new app.

  • 00:31

    I'll select the standard project template and create a new MVC web app.

  • 00:37

    The DevExpress Project Wizard is displayed.

  • 00:39

    From the "Choose Layout" tab I can select one of the predefined layouts.

  • 00:43

    The "Empty" and "Outlook" layouts are the same ones I mentioned before, the "Standard"

  • 00:48

    corresponds to the standard ASP.NET MVC Internet Application project template.

  • 00:53

    The "Custom" layout allows you to define your own layout.

  • 00:57

    For custom layout, I can specify which areas of a page should be displayed and see the

  • 01:02

    preview.

  • 01:03

    I can also specify if an extension should be inserted in a particular area.

  • 01:08

    The MVC Settings tab allows you to specify the View Engine used within a project, the

  • 01:14

    MVC version, and availability of a unit test project.

  • 01:17

    The "Choose Theme" tab allows you to select one of the predefined themes and see how it

  • 01:23

    looks.

  • 01:24

    Let’s select the "Metropolis" theme for my application.

  • 01:27

    The Site Configuration tab allows you to define configuration settings that apply to the entire

  • 01:32

    web project.

  • 01:33

    Here I can define that I don’t need the authentication functionality.

  • 01:38

    The "DX Control Settings" tab allows you to define settings that relate to the DevExpress

  • 01:42

    MVC extension functionality and apply them to DevExpress MVC extensions for the entire

  • 01:48

    site.

  • 01:50

    The Localization tab allows you to select languages that will be used to localize user

  • 01:54

    interface elements of DevExpress MVC extensions.

  • 01:57

    Now, I'll click "Create project" and the wizard generates a new project for me.

  • 02:03

    In the solution explorer you can see the generated project.

  • 02:06

    Let`s take a look at this project in the browser.

  • 02:09

    Here you can see the fully functional DevExpress gridview extension.

  • 02:13

    The navbar allows you to navigate through the group of items, and the splitter allows

  • 02:17

    you to resize the webpage's elements.

  • 02:20

    We now have a fully functional web application in just a few seconds.

  • 02:24

    I'll close the browser and return to Visual Studio.

  • 02:27

    Let's take a look at the solution explorer.

  • 02:29

    The newly created project already contains all the required references you need to start

  • 02:34

    working with DevExpress MVC Extensions.

  • 02:37

    So you don't need to add any references.

  • 02:39

    The "Content" folder contains the Site.css file, the project already contains the Home

  • 02:45

    Controller, NorthWind data model, the nesessary javascript files, and the View files.

  • 02:53

    Let`s take a look at the "Web.config" file.

  • 02:58

    It contains everything you need to start working with DevExpress MVC Extensions, so you can

  • 03:03

    use any of the DevExpress MVC extensions in this web project.

  • 03:08

    Let’s take a look at the "_rootLayout.cshtml" file.

  • 03:12

    This layout page already contains a reference to the Site.css file that is located in the

  • 03:17

    "Content" folder and the references to jQuery scripts that are located in the "Scripts"

  • 03:22

    folder.

  • 03:23

    The GetStyleSheets method is used to attach the necessary stylesheet files for the specified

  • 03:28

    DevExpress MVC Extensions.

  • 03:31

    The GetScripts method returns the necessary javascript files for the specified extensions.

  • 03:36

    The body content is rendered within the Splitter.

  • 03:40

    Let`s add a new page.

  • 03:42

    I'll open the Home controller and add a new action here.

  • 03:48

    Then I add a View for this action using the default options of the dialog.

  • 03:52

    I'll go to the position where I want to insert a DevExpress MVC extension.

  • 04:01

    Now I'll right-click here which invokes the Insert Extension Wizard.

  • 04:07

    Here I can select the required extension, define it`s key settings and click "Insert".

  • 04:14

    The wizard generates all the required code for me.

  • 04:17

    You can see the output window is displayed.

  • 04:19

    This window tells you about the changes that occurred in our project from the Insert Extension

  • 04:24

    Wizard.

  • 04:25

    I can double-click any entry and the focus will be moved to the changed item.

  • 04:29

    I see the View file has been changed, actions and helper methods have been added to the

  • 04:34

    controller, and a new partial view has been created too.

  • 04:38

    This is a big time saver as you don`t need to write all of this code by hand: the wizard

  • 04:43

    inserts all the necessary code for you.

  • 04:46

    You can also change the generated code, for example, I can change the HtmlEditor width

  • 04:51

    within its partial view.

  • 04:55

    Let's enable navigation within the application pages.

  • 04:58

    In the partial view for the left panel content you can see the NavBar settings.

  • 05:03

    This extension is bound to an XML file.

  • 05:06

    I'll open the XML file, delete the unnecessary items, change item captions, and define the

  • 05:16

    navigate urls.

  • 05:25

    Let's save our changes now and take a look at the result in the browser.

  • 05:30

    Here you can see that the navbar displays two items now, I can click them and navigate

  • 05:35

    to the required pages.

  • 05:37

    And we have a fully functional HtmlEditor.

  • 05:40

    To show you the power of this HTMLEditor, I'll return to the page with the grid, copy

  • 05:44

    several rows, and paste them to the HtmlEditor.

  • 05:51

    Now, you can see the HTML code of the pasted rows and the preview layout.

  • 06:01

    As you can see, the Metropolis theme is applied to all the DevExpress MVC Extensions, because

  • 06:06

    I specified this theme when I created this project.

  • 06:10

    But you can easily change this theme to another one.

  • 06:13

    I'll return to Visual Studio, invoke the DevExpress menu and run the wizard to update my project.

  • 06:20

    The only thing I need to do is to select another theme.

  • 06:23

    I'll select the "Office2010Black" theme and run my web application.

  • 06:30

    Now you can see that the application still looks stunning but uses the Office 2010 Black

  • 06:35

    theme colors.

  • 06:37

    The new theme has been applied to the whole application in just a few mouse clicks.

  • 06:43

    Thanks for watching and thank you for choosing DevExpress.

All

The example sentences of PREDEFINED in videos (8 in total of 9)

the determiner " choose verb, base form theme proper noun, singular " tab noun, singular or mass allows verb, 3rd person singular present you personal pronoun to to select verb, base form one cardinal number of preposition or subordinating conjunction the determiner predefined proper noun, singular themes noun, plural and coordinating conjunction see verb, base form how wh-adverb it personal pronoun
there existential there are verb, non-3rd person singular present many adjective other adjective types noun, plural of preposition or subordinating conjunction predefined proper noun, singular and coordinating conjunction customized verb, past participle filters noun, plural that preposition or subordinating conjunction you personal pronoun can modal use verb, base form in preposition or subordinating conjunction google proper noun, singular
we personal pronoun can modal select verb, base form a determiner specific adjective view noun, singular or mass , which wh-determiner is verb, 3rd person singular present a determiner predefined proper noun, singular set verb, past tense of preposition or subordinating conjunction columns noun, plural for preposition or subordinating conjunction the determiner list noun, singular or mass
would modal be verb, base form to to run verb, base form some determiner predefined proper noun, singular input noun, singular or mass sequence noun, singular or mass on preposition or subordinating conjunction your possessive pronoun hardware noun, singular or mass and coordinating conjunction then adverb observe verb, base form the determiner open adjective - loop noun, singular or mass
once adverb the determiner predefined proper noun, singular action noun, singular or mass is verb, 3rd person singular present completed verb, past participle , the determiner cookie noun, singular or mass is verb, 3rd person singular present recognized verb, past participle and coordinating conjunction a determiner conversion noun, singular or mass is verb, 3rd person singular present recorded verb, past participle .
apex proper noun, singular legends proper noun, singular was verb, past tense tested verb, past participle with preposition or subordinating conjunction either determiner minimum adjective or coordinating conjunction max noun, singular or mass settings noun, plural as preposition or subordinating conjunction it personal pronoun doesn proper noun, singular t proper noun, singular have verb, non-3rd person singular present predefined proper noun, singular
on preposition or subordinating conjunction your possessive pronoun keyboard noun, singular or mass will modal trigger verb, base form your possessive pronoun iphone proper noun, singular to to replace verb, base form it personal pronoun with preposition or subordinating conjunction a determiner predefined proper noun, singular text noun, singular or mass element noun, singular or mass .
number noun, singular or mass of preposition or subordinating conjunction days noun, plural is verb, 3rd person singular present , does verb, 3rd person singular present not adverb fall verb, base form within preposition or subordinating conjunction the determiner range noun, singular or mass of preposition or subordinating conjunction a determiner predefined proper noun, singular mrr proper noun, singular tolerance noun, singular or mass .

Definition and meaning of PREDEFINED

What does "predefined mean?"

/ˌprēdiˈfīnd/

adjective
(Explanation) decided in advance.