- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
如何将代码中的“DurationType”列设置为下拉菜单?
我已经修改了代码以展示如何创建模板和添加下拉菜单。但我不知道如何获取下拉列表的值,因为它只显示在插入/编辑模板中,而不是常规网格中。
protected void Page_Load(object sender, EventArgs e)
{
if (Session["GridData"] == null)
{
DataTable table = GetTable();
Session.Add("GridData", table);
}
DefineGridStructure();
}
public class MyTemplate : ITemplate
{
protected DropDownList dl;
private string colname;
public MyTemplate(string cName)
{
colname = cName;
}
public void InstantiateIn(System.Web.UI.Control container)
{
dl = new DropDownList();
dl.ID = colname;
dl.Items.Add(new ListItem("Hours", "Hours"));
dl.Items.Add(new ListItem("Days", "Days"));
dl.Items.Add(new ListItem("Weeks", "Weeks"));
dl.Items.Add(new ListItem("Months", "Months"));
container.Controls.Add(dl);
}
void boolValue_DataBinding(object sender, EventArgs e)
{
DropDownList cBox = (DropDownList)sender;
GridDataItem container = (GridDataItem)cBox.NamingContainer;
}
}
private void DefineGridStructure()
{
RadGrid grid = new RadGrid();
grid.ID = "RadGrid1";
grid.NeedDataSource += new GridNeedDataSourceEventHandler(grid_NeedDataSource);
grid.AutoGenerateEditColumn = true;
grid.AutoGenerateDeleteColumn = true;
grid.AllowAutomaticInserts = false;
grid.Width = Unit.Percentage(100);
grid.PageSize = 15;
grid.AllowPaging = true;
grid.PagerStyle.Mode = GridPagerMode.NextPrevAndNumeric;
grid.AutoGenerateColumns = false;
grid.MasterTableView.Width = Unit.Percentage(100);
grid.MasterTableView.CommandItemDisplay = GridCommandItemDisplay.TopAndBottom;
grid.AllowAutomaticDeletes = false;
grid.AllowAutomaticUpdates = false;
grid.InsertCommand +=grid_InsertCommand;
grid.MasterTableView.DataKeyNames = new string[] { "RowNumber" };
GridBoundColumn boundColumn = new GridBoundColumn();
boundColumn.DataField = "RowNumber";
boundColumn.HeaderText = "RowNumber";
boundColumn.ReadOnly = true;
grid.MasterTableView.Columns.Add(boundColumn);
boundColumn = new GridBoundColumn();
boundColumn.DataField = "Size";
boundColumn.HeaderText = "Size";
grid.MasterTableView.Columns.Add(boundColumn);
boundColumn = new GridBoundColumn();
boundColumn.DataField = "Description";
boundColumn.HeaderText = "Description";
grid.MasterTableView.Columns.Add(boundColumn);
boundColumn = new GridBoundColumn();
boundColumn.DataField = "Quantity";
boundColumn.HeaderText = "Quantity";
grid.MasterTableView.Columns.Add(boundColumn);
boundColumn = new GridBoundColumn();
boundColumn.DataField = "Duration";
boundColumn.HeaderText = "Duration";
grid.MasterTableView.Columns.Add(boundColumn);
boundColumn = new GridBoundColumn();
// Added code snippet to create the dropdown list
GridTemplateColumn objGridTemplateColumn = new GridTemplateColumn();
objGridTemplateColumn.HeaderText = "DurationType";
objGridTemplateColumn.UniqueName = "DurationType";
objGridTemplateColumn.ItemTemplate = new MyTemplate("DurationType");
grid.MasterTableView.Columns.Add(objGridTemplateColumn);
boundColumn = new GridBoundColumn();
boundColumn.DataField = "Amount";
boundColumn.HeaderText = "Amount";
grid.MasterTableView.Columns.Add(boundColumn);
PlaceHolder1.Controls.Add(grid);
}
private void grid_InsertCommand(object sender, GridCommandEventArgs e)
{
// Looking to loop through the form so i can insert the values into the datatable
}
void grid_NeedDataSource(object sender, GridNeedDataSourceEventArgs e)
{
DataTable current = (DataTable)Session["GridData"];
RadGrid grid = (RadGrid)sender;
grid.DataSource = current;
}
static DataTable GetTable()
{
//
// Here we create a DataTable with a few columns.
//
// Create Datatable to store all colums
DataTable dt = new DataTable();
DataRow dr = null;
dt.Columns.Add(new DataColumn("RowNumber", typeof(string)));
dt.Columns.Add(new DataColumn("Size", typeof(string)));
dt.Columns.Add(new DataColumn("Description", typeof(string)));
dt.Columns.Add(new DataColumn("Quantity", typeof(string)));
dt.Columns.Add(new DataColumn("Unit", typeof(string)));
dt.Columns.Add(new DataColumn("Duration", typeof(string)));
dt.Columns.Add(new DataColumn("DurationType", typeof(string)));
dt.Columns.Add(new DataColumn("Amount", typeof(string)));
dr = dt.NewRow();
dr["RowNumber"] = 1;
dr["Size"] = string.Empty;
dr["Description"] = string.Empty;
dr["Quantity"] = string.Empty;
dr["Unit"] = string.Empty;
dr["Duration"] = string.Empty;
dr["DurationType"] = string.Empty;
dr["Amount"] = string.Empty;
dt.Rows.Add(dr);
return dt;
}
最佳答案
在现有代码中,我编辑了几行以用 telerik RadComboBox
替换下拉列表。基本上我正在做的是,当网格处于编辑模式时,我从网格事件中获取文本的现有绑定(bind),然后将所有新数据集绑定(bind)到 RadCombobox,最后将所选字段设置为我参加了事件。
protected void Page_Load(object sender, EventArgs e)
{
if (Session["GridData"] == null)
{
DataTable table = GetTable();
Session.Add("GridData", table);
}
DefineGridStructure();
}
public class MyTemplate : ITemplate
{
protected RadComboBox dl;
private string colname;
public MyTemplate(string cName)
{
colname = cName;
}
public void InstantiateIn(System.Web.UI.Control container)
{
dl = new RadComboBox();
dl.ID = colname;
dl.DataSource=getDurationTypes();
dl.DataTextField = "DurationTypeName";
dl.DataValueField = "DurationTypeID";
dl.DataBind();
container.Controls.Add(dl);
}
void boolValue_DataBinding(object sender, EventArgs e)
{
RadComboBox cBox = (RadComboBox)sender;
GridDataItem container = (GridDataItem)cBox.NamingContainer;
}
}
private void DefineGridStructure()
{
RadGrid grid = new RadGrid();
grid.ID = "RadGrid1";
grid.NeedDataSource += new GridNeedDataSourceEventHandler(grid_NeedDataSource);
grid.ItemDataBound +=new GridItemEventHandler();
grid.AutoGenerateEditColumn = true;
grid.AutoGenerateDeleteColumn = true;
grid.AllowAutomaticInserts = false;
grid.Width = Unit.Percentage(100);
grid.PageSize = 15;
grid.AllowPaging = true;
grid.PagerStyle.Mode = GridPagerMode.NextPrevAndNumeric;
grid.AutoGenerateColumns = false;
grid.MasterTableView.Width = Unit.Percentage(100);
grid.MasterTableView.CommandItemDisplay = GridCommandItemDisplay.TopAndBottom;
grid.AllowAutomaticDeletes = false;
grid.AllowAutomaticUpdates = false;
grid.InsertCommand +=grid_InsertCommand;
grid.MasterTableView.DataKeyNames = new string[] { "RowNumber" };
GridBoundColumn boundColumn = new GridBoundColumn();
boundColumn.DataField = "RowNumber";
boundColumn.HeaderText = "RowNumber";
boundColumn.ReadOnly = true;
grid.MasterTableView.Columns.Add(boundColumn);
boundColumn = new GridBoundColumn();
boundColumn.DataField = "Size";
boundColumn.HeaderText = "Size";
grid.MasterTableView.Columns.Add(boundColumn);
boundColumn = new GridBoundColumn();
boundColumn.DataField = "Description";
boundColumn.HeaderText = "Description";
grid.MasterTableView.Columns.Add(boundColumn);
boundColumn = new GridBoundColumn();
boundColumn.DataField = "Quantity";
boundColumn.HeaderText = "Quantity";
grid.MasterTableView.Columns.Add(boundColumn);
boundColumn = new GridBoundColumn();
boundColumn.DataField = "Duration";
boundColumn.HeaderText = "Duration";
grid.MasterTableView.Columns.Add(boundColumn);
boundColumn = new GridBoundColumn();
// Added code snippet to create the dropdown list
GridTemplateColumn objGridTemplateColumn = new GridTemplateColumn();
objGridTemplateColumn.HeaderText = "DurationType";
objGridTemplateColumn.UniqueName = "DurationType";
objGridTemplateColumn.ItemTemplate = new MyTemplate("DurationType");
grid.MasterTableView.Columns.Add(objGridTemplateColumn);
boundColumn = new GridBoundColumn();
boundColumn.DataField = "Amount";
boundColumn.HeaderText = "Amount";
grid.MasterTableView.Columns.Add(boundColumn);
PlaceHolder1.Controls.Add(grid);
}
private void grid_InsertCommand(object sender, GridCommandEventArgs e)
{
// Looking to loop through the form so i can insert the values into the datatable
}
void grid_NeedDataSource(object sender, GridNeedDataSourceEventArgs e)
{
DataTable current = (DataTable)Session["GridData"];
RadGrid grid = (RadGrid)sender;
grid.DataSource = current;
}
static DataTable GetTable()
{
//
// Here we create a DataTable with a few columns.
//
// Create Datatable to store all colums
DataTable dt = new DataTable();
DataRow dr = null;
dt.Columns.Add(new DataColumn("RowNumber", typeof(string)));
dt.Columns.Add(new DataColumn("Size", typeof(string)));
dt.Columns.Add(new DataColumn("Description", typeof(string)));
dt.Columns.Add(new DataColumn("Quantity", typeof(string)));
dt.Columns.Add(new DataColumn("Unit", typeof(string)));
dt.Columns.Add(new DataColumn("Duration", typeof(string)));
dt.Columns.Add(new DataColumn("DurationType", typeof(string)));
dt.Columns.Add(new DataColumn("Amount", typeof(string)));
dr = dt.NewRow();
dr["RowNumber"] = 1;
dr["Size"] = string.Empty;
dr["Description"] = string.Empty;
dr["Quantity"] = string.Empty;
dr["Unit"] = string.Empty;
dr["Duration"] = string.Empty;
dr["DurationType"] = string.Empty;
dr["Amount"] = string.Empty;
dt.Rows.Add(dr);
return dt;
}
ItemDataBound
事件用于在编辑模式下显示 ItemTemplate,当网格处于编辑模式时将出现 RadcomboBox。
protected void Grid_ItemDataBound(object sender, GridItemEventArgs e)
{
string DurationName;
if (e.Item is GridDataItem)
{
GridDataItem myGridItem = (GridDataItem)e.Item;
//Changing the DurationName field to Combobox in EDITMODE
if (myGridItem.IsInEditMode)
{
GridEditableItem edititem = e.Item as GridEditableItem;
int userId = Convert.ToInt16(edititem.GetDataKeyValue("RowNumber"));
RadComboBoxItem selectedItem = new RadComboBoxItem();
RadComboBox combo = (RadComboBox)myGridItem["DurationType"].FindControl("colname");
DurationName= DataBinder.Eval(myGridItem.DataItem, "DurationType").ToString();
combo.DataSource = roles.GetRoles();
combo.DataTextField = "DurationType";
combo.DataValueField = "DurationID";
combo.DataBind();
selectedItem = combo.FindItemByText(DurationName);
combo.SelectedIndex = selectedItem.Index;
}
}
}
此方法将返回数据以将其与 radcombobox(dropdownlist) 绑定(bind)
private DataTable getDurationTypes()
{
DataTable table = new DataTable();
table.Columns.Add("DurationTypeID", typeof(int));
table.Columns.Add("DurationTypeName", typeof(string));
table.Rows.Add(1, "Hours");
table.Rows.Add(2, "Days");
table.Rows.Add(3, "Weeks");
table.Rows.Add(4, "Months");
return table;
}
关于c# - RadGrid 中的下拉菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18876164/
将 RadGrid 用于 Asp.Net Ajax(来自 Telerik) 我需要重新设置 CurrentPageIndex。 Some examples说下一行代码应该是 myGrid.Rebind
Telerik Rad 控件在浏览器中仅显示为实线。但在 Visual Studio 设计中它显示正确。 There are no records to display
当我单击添加记录按钮时,我希望其中一列具有默认值。我如何在后面的代码中做到这一点?它是一个动态日期并且可以一直更改? 最佳答案 如果该列不是 GridTemplateColumn ,您可以使用列的 D
我正在尝试设置一个切换开关,以便用户可以将对象列表用作待办事项列表。我正在寻找一种用户可以单击一行的方法,并且它将跨度从一个字体图标切换到另一个字体图标。我还希望根本不访问服务器。 目前我有这个 Ja
我有一个使用 OnNeedDataSource 动态加载数据的 Telerik RadGdir。绑定(bind)所有数据后,我想使用 PreRender 事件添加一个页脚行,该行将包含描述网格数据的文
在their documentation Telerik 说有一种方法可以通过使用 AllowSorting 属性来禁用特定列的排序。我在看 Telerik.Web.UI.GridColumn mem
我有一个简单的辐射网格。当我单击“添加记录”时它会弹出一个插入模板,它会以垂直格式显示表单,我想更改它以使其以水平格式显示吗?我该怎么做? protected void Page_Load(objec
我想要 RADGRID 中的复选框。详细要求如下: 我正在使用存储过程中的 AutoGenerateColumns="True"填充所有 radgrid 列。我需要一个额外的复选框列。 在网格加载期间
我在使用 telerik radgrid 控件时遇到问题。当网格处于编辑模式时,我正在尝试使用 javascript 访问文本框。 我的代码如下所示:
我有一些嵌套的 div,其中一个包含需要填充其容器的 Radgrid 控件。 尝试了 100% 高度/宽度。没用。 试过绝对定位。没用。 遵循 Telerik 的建议 here .不。 按照这个pos
我有一个 radgrid asp.net 控件,我在其中编辑服务器端的行。我想在客户端知道用户是否在保存/放弃网格中的更改之前尝试关闭屏幕。 我找到了一些关于如何使用 get_masterTableV
我的 radgrid (RAD13) 有这个手动更新代码。上传时它有效,但问题是只有网格中的第一行保存它的更新。 我认为我应该传递一个自动递增的值来遍历行 protected void UpdateB
我有一个 RadGrid,它有一个像这样的列: /> /> 我想对其进行设置,以便此列在插入新值时允许输入,但在更新值时
我需要在 Telerik RadGrid Row Double Click 上触发客户端事件,并通过单击从服务器获取更新。但是双击事件不起作用。如果我删除“EnablePostBackOnRowCli
我可以根据后面代码中的数据为每列创建不同的控件,并且它可以工作。 我想在代码后面的每一行创建不同的控件。示例: ColumnA ColumnB
我在页面上有一个 RadGrid,当您单击该行时会回发,配置如下: 我试图通过以下方式停止事件的传播来停止回发: function RowClick(sender, e) {
我正在使用 RadGrid 从数据库中检索数据。我的 RadGrid 中有更多列,因此我需要显示 RadGrid 水平滚动以防止页面展开但禁用垂直滚动以便网格的高度应该展开以始终显示网格中的所有行。我
如何将代码中的“DurationType”列设置为下拉菜单? 我已经修改了代码以展示如何创建模板和添加下拉菜单。但我不知道如何获取下拉列表的值,因为它只显示在插入/编辑模板中,而不是常规网格中。 pr
我有一个 RadGrid,其中我想创建的列数未知。其实我知道第一列,它有一个数据字段PermissionName。我有一个 CSLA 数据源,它返回一个 PermissionInfo 对象列表,每个对
我需要在某些列上创建一个包含多个组的网格,我的代码是
我是一名优秀的程序员,十分优秀!