我需要制作多个RadGrids,其中包含可编辑的列。我知道如何制作绑定列和制作模板列,但我不知道如何将Textbox和Dropdownlists放在这些模板列中。
string templateColumnName = "ContactName";
GridTemplateColumn templateColumn = new GridTemplateColumn();
templateColumn.ItemTemplate = new MyTemplate(templateColumnName);
templateColumn.HeaderText = templateColumnName;
在此之后我该怎么做。
答案 0 :(得分:1)
您应该在容器中实例化所需的webcontrol。这发生在InstantiateIn方法中。我建议您检查此链接: Programmatic creation
如果您需要更多信息,还可以检查以下信息: Creating Web Server Control Templates Programmatically
如果您对此有任何具体问题,请告诉我们。