I am very new to MVC and jquery and I am just creating some CRUD grids using kendo ui.
So far I have been doing ok and have implemented CRUD and several other functions, but I am now having an issue on some of the main CRUD grids that use data from other tables.
So for example I am building a grid that is used to create new Job codes, the codes have 8 elemements that are based data from other tables.
So a job code CANNOT have the same 8 elements as another job code, this validation itself is not an issue. However this issue is getting the data from the other 8 tables.
I am using EF 4.3 with a code first approach for my application tables and I also use READ ONLY data from our HR system which is on an Oracle database, using Devart's DotConnect Oracle and Entity Developer software to create database first entities.
All my entities from both my SQL and Oracle DbContexts are connected and accessible using the same abstraction; unitOfWork with Generic repositry pattern, as well as IAuditable on the SQL tables.
The data from the Oracle tables is read only and used purely for reference data, so in terms of the 8 elements of the job codes this is:
- Division Code (e.g. PK = SHRHR)
- Pension Code (e.g. PK = LGPS)
- Analysis Group (e.g. PK = 01)
- Cost Group (e.g. PK = 03)
- Contract Code (e.g. PK = SUPP)
All of the above I want to be selectable from the custom editors in the form of dropdowns in the kendo grid. Each of the above also has its own view in my project using a kendo grid with no CRUD actions as they are read only.
The other 3 elements are stored in the applications SQL tables and are:
- Job Title (This has an Id field and Title I want to display the title and select from a drop down)
- AuthJob Flag ( this is a bool field I have work this out with Type: "bool")
- Authorisation chain (This is going to just display as an id, however the selection of this is quite complex and I was wanting a popup form to select this.)
The authorisation chain is made up of an id field and 10 jobcodes which are in the format of "AAAAAA". I want users to be able to search by Division code on the popup form and view the available authorisation chains, or create a new one by searching for the 10 job code using employee id or managers forename/ surname. Once a valid authorisation chain has been selected or made, this should be returned in the form of the AuthChainID to the job code grid.
That gives an overall view of what I am trying to achieve, the problem I am having is finding relevant examples from an MVC perspective with razor views. The kendo examples are only showing the view code.
Another issue I have had whilst I have been trying to get this to work using the kendo grid it that the division field's virtual collection reference in the job code model is createing a null exception when I try to create a job code even the the division CODEID is populated in the entity that is being processed in the repository.
I hope someone can help I am really new to all this and just can't seem to figure out what I need to do.
Here is the model I described the issue with above:
public class JobCode : IAuditable
{
public int JobCodeID { get; set; }
[Required(ErrorMessage = "A job code is required.")]
[Display(Name = "Job Code")]
[MinLength(6)]
[MaxLength(6)]
public string Jobcode { get; set; }
public virtual string CODEID { get; set; }
[Required(ErrorMessage = "You must select or create a authorisation chain.")]
[Display(Name = "Auth Chain")]
public int AuthChainID { get; set; }
[Required(ErrorMessage = "You must select a job title.")]
[Display(Name = "Job")]
public int JobID { get; set; }
[Required(ErrorMessage = "You must select a pension scheme.")]
[Display(Name = "Pension")]
public int PensionID { get; set; }
[Required(ErrorMessage = "You must select an analysis group.")]
[Display(Name = "Analysis Group")]
public int AnalysisGrpID { get; set; }
[Required(ErrorMessage = "You must select a cost group.")]
[Display(Name = "Cost Group")]
public int CostGrpID { get; set; }
[Required(ErrorMessage = "You must select a contract.")]
[Display(Name = "Contract")]
public int ContractID { get; set; }
public bool AuthJob { get; set; }
public virtual TMCDIVISION TmcDivision { get; set; }
public virtual AuthChain AuthChain { get; set; }
public virtual Job Job { get; set; }
public virtual Pension Pension { get; set; }
public virtual AnalysisGrp AnalysisGrp { get; set; }
public virtual CostGrp CostGrp { get; set; }
public virtual Contract Contract { get; set; }
public string Action { get; set; }
public int ActionedBy { get; set; }
public DateTime ActionDate { get; set; }
}
Please note the public virtual TMCDIVISION TmcDivision {get;set;} is the ONLY oracle table entity I have included so far. Although there are 5 in total I have only tried to work with this one currently, the remaining 4 are just running on SQL tables.
Please note this model worked fine using normal CRUD views without Kendo grid and the division codes populated a drop down as expected and saved correctly without generating null exceptions whilst committing to the database.
Many thanks,
Andy