如何在ASP.NET MVC中的鼠标悬停记录上的工具提示中显示数据库字段中的其他信息

时间:2017-01-09 10:01:19

标签: c# asp.net-mvc asp.net-mvc-4 tooltip mouseover

我在表格中显示产品代码列表,每个产品都有自己的尺寸。我希望能够悬停产品,并能够查看自己的尺寸。我对这种实施的态度不起作用。 我需要帮助。提前谢谢

  

视图模型

from html.parser import HTMLParser

class MLStripper(HTMLParser):
def __init__(self):
    self.reset()
    self.strict = False
    self.convert_charrefs= True
    self.fed = []
def handle_data(self, d):
    self.fed.append(d)
def get_data(self):
    return ''.join(self.fed)

def strip_tags(html):
    s = MLStripper()
    s.feed(html)
    return s.get_data()
  

查看

  public class PTGIndexVM
{
    [Display(Name="Select Promotion")]
    public int PromotionId { get; set; }
    public List<SelectListItem> PromotionOptions { get; set; }
    public IList<EditPTG> IndexList { get; set; }
    public IList<String> ProductCodes { get; set; }
    public string wrapClass { get; set; }

    public List<SelectListItem> Size { get; set; }


    public PTGIndexVM()
    {
        IndexList = new List<EditPTG>();
        PromotionOptions = new List<SelectListItem>();
        ProductCodes = new List<String>();
        Size = new List<SelectListItem>();

        Setup();
    }

2 个答案:

答案 0 :(得分:0)

在foreach循环中,为什​​么不使用代码而不是使用模型,考虑到模型中有一个名为Size的字段。

window.location.href

答案 1 :(得分:0)

要解决我的问题,我必须引用完整的表而不是字段本身,这使我更容易显示我想在工具提示中看到的数据。

{{1}}