Search Results

Type: Posts; User: AntonCharov

Search took 0.01 seconds.
  1. Thank you! This is very useful information. I have added IDProperty() to the model. The method argument is mapping name on server side?
    I got the following code. it works correctly and status code...
  2. This is demo controller. I use EF 6. When i try to change field it's shown 500 status code. What i'm doing wrong?


    public ActionResult ShowAllRequests()
    {

    ...
  3. I solved this problem this way



    @model IEnumerable<GeoSystem.Models.Request>

    <script>
    var brigadeRenderer = function (value) {
    if (!Ext.isEmpty(value)) {
    ...
  4. I changed my co de to

    @model IEnumerable<GeoSystem.Models.Request>

    @(Html.X().Store()
    .ID("BrigadeStore")
    .Model(Html.X().Model()
    .Fields(
    ...
  5. Hello! I have some problem with GridPanel.
    Column Brigade in table Request is a foreigh key. How to show
    m.Brigade.BrigadeName in a grid? And also i want to change a value in a combobox.

    I try...
  6. I have two entities - Request and Brigade. Each request belongs to one brigade. I found an example https://mvc.ext.net/#/Models/FormPanelFor/
    Here is my code
    Request.cshtml - It's loads on main...
Results 1 to 6 of 6