在InsertItemTemplate中的GridTemplateColumn中填充ListBox

时间:2013-01-22 19:30:12

标签: telerik radgrid

如何填充位于InsertItemTemplate中的列表框?我需要在有人点击添加新记录按钮后弹出这个,我需要在他们点击之后在后面的代码中执行此操作。

1 个答案:

答案 0 :(得分:1)

实现目标的方法很少。我更喜欢Template Edit Form。这是样本。

<telerik:RadGrid ... OnItemDataBound="RadGrid1_ItemDataBound">
   <MasterTableView DataKeyNames="Id" CommandItemDisplay="Top">
      <Columns>
         <telerik:GridButtonColumn .../>
      </Columns>
      <EditFormSettings ColumnNumber="1" EditFormType="Template">
         <FormTemplate>
            <asp:ListBox .../>                       
         </FormTemplate>
      </EditFormSettings>               
   </MasterTableView>
</telerik:RadGrid>

更新:

protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e)
{
   if (e.Item is GridEditFormItem && e.Item.IsInEditMode)
   {
      var item = e.Item as GridEditFormItem;    

      var listBox1 = item.FindControl("ListBox1") as ListBox;  

      // Fills listbox with data
      listBox1.DataSource = listboxdata;
      listBox1.DataBind();
   }
}