Skip to content

bearcodez/mvcdemo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

mvcdemo

This project used nopCommerce MVC framework. The Views folder contains all the UI view template that will be used to translate into web UI. The data listing is using kendoGrid which is a third-party ajax datagrid to retrieve data from the controllers file.

The interesting part is in the View.cshtml file. The kendoGrid has multiple different type of column such as date, label, text, and button. Clicking on the button on each data row will popup a new modal dialog window and show more data of the selected row. The column also can define own HTML code such as the "Action" column where there is HTML link define for each if/else condition.

The model data of the columns are define in the Models/ERPIntegrationProcessModel.cs

All the logic and function for each Views are defined in Controllers/ERPIntegrationProcessController.cs The controller file is able to do search, filtering and sorting based on user search criteria and return the result as JSON to kendoGrid component. In the function "public ActionResult Retry(int id)", it involve database connectivity and will create a new empty record and save into database.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages