C# 클래스 ExamplesLibrary.GridViewVM

This view model demonstrates how to leverage the two-way data binding on both the server-side view model and the code-behind on the browser to build rich web applications with less efforts and less code complexity.
상속: BaseVM
파일 보기 프로젝트 열기: dsuryd/dotNetify-Nancy-demo

공개 메소드들

메소드 설명
Employees_get ( string iKey ) : EmployeeInfo

By convention, when VMController receives a list item from the client, it will look for the function that starts with the list property name and ends with "_get" to access the list item for the purpose of updating its value.

GridViewVM ( ) : System

Constructor.

비공개 메소드들

메소드 설명
Employee_PropertyChanged ( object sender, PropertyChangedEventArgs e ) : void

If employee info changed and is currently selected, make sure the displayed name and phone are updated too.

메소드 상세

Employees_get() 공개 메소드

By convention, when VMController receives a list item from the client, it will look for the function that starts with the list property name and ends with "_get" to access the list item for the purpose of updating its value.
public Employees_get ( string iKey ) : EmployeeInfo
iKey string List item key.
리턴 EmployeeInfo

GridViewVM() 공개 메소드

Constructor.
public GridViewVM ( ) : System
리턴 System