下拉列表未刷新

时间:2013-08-12 08:07:13

标签: asp.net-mvc-3 asp.net-mvc-4

我有一个主记录表和子记录表。创建主记录后,尝试创建其子组而不刷新屏幕,名为“父”下拉列表的字段不会显示我们最初创建的那个。下拉菜单将显示我们最初仅在刷新屏幕后创建的字段“父级”。 我在控制器中添加的用于创建下拉列表的代码为..

   public JsonResult GetGroups()
   {
       var activitygroup = db.ActivityGroup
           .Select(c => new
           {
                 DisplayText = c.ActvityGroupCode + " - " + c.ActvityGroupName,
                 Value = c.ActvityGroupId
           })
           .OrderBy(c => c.DisplayText).ToList();
       return Json(new { Result = "OK", Options = activitygroup });
    }

在视图中

ParentGroupId:{
            Weightage : 1,                                                                  
            title: 'Parent Group',                                  
            type: 'combobox',
            optionsSorting: 'text',
            options : '@Url.Action("GetGroups")' 
          //call the action to populate combo box,with id and display name                              
}

注意: 数据从jtable填充 请为此提供解决方案..即在没有页面刷新的情况下在下拉列表中填充数据。

我有2个字段parent和sub sub是一个文本框字段我在子字段中添加的数据在父字段中填充而没有任何页面刷新。这是对此的简短描述。

0 个答案:

没有答案