- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
当我点击编辑按钮时
<asp:FormView runat="server" id="fwHotelDetails" DataKeyNames="id" OnDataBound="fwHotelDetails_DataBound" OnModeChanging="fwHotelDetails_ModeChanging">
<ItemTemplate>
//display content here
<asp:LinkButton ID="EditButton" runat="server" CausesValidation="False" CommandName="Edit" Text="Edit" />
</ItemTemplate>
<EditItemTemplate>
This text should be displayed when I click the Edit button
<asp:LinkButton runat="server" ID="UpDateButton" CausesValidation="false" CommandName="Update" Text="Lagre" />
</EditItemTemplate>
</asp:FormView>
更新
这是我的代码隐藏:
namespace development.templates
{
public partial class HotelDetails : TemplatePage
{
static Hotel hotel;
protected DataRow drHotel;
DataTable dtCriteria;
DataTable dtHotel;
private HotelCriteria hotelCriteria;
protected void Page_Load(object sender, EventArgs e)
{
int hotelID = Convert.ToInt32(Request.QueryString["hotelid"].ToString());
if (!IsPostBack)
{
if (hotelID != 0)
{
// Create Hotel instance based on hoteID.
hotel = new Hotel(hotelID);
drHotel = hotel.hotelData.Rows[0];
dtHotel = hotel.getHotelsByCity(drHotel["city"].ToString());
// Hotel scrore is calculated from a score which is derived from certain criterias.
hotelCriteria = new HotelCriteria(hotelID);
dtCriteria = hotelCriteria.getHotelCriteria();
//Set datasource for hotel list in right sidebar.
hotelListByCity.DataSource = correctList(dtHotel, hotelID);
hotelListByCity.DataBind();
// Set datasource for current hotel
fwHotelDetails.DataSource = hotel.hotelData;
fwHotelDetails.DataBind();
}
}
}
protected void fwHotelDetails_DataBound(object sender, EventArgs e)
{
//Find the criteria list and set the datasource
Repeater rep = (Repeater)fwHotelDetails.FindControl("repCriteriaScore");
rep.DataSource = this.dtCriteria;
rep.DataBind();
// Controll is user is logged in. If logged in, then user may add, edit or delete hotel record.
System.Security.Principal.IPrincipal user = Context.User;
if ((user != null) && user.Identity.IsAuthenticated){
Panel panel = (Panel)fwHotelDetails.FindControl("administrationPanel");
panel.Visible = true;
}
}
protected void fwHotelDetails_ModeChanging(object sender, FormViewModeEventArgs e)
{
switch (e.NewMode)
{
case FormViewMode.Edit:
MessageLabel.Text = "Edit mode";
fwHotelDetails.ChangeMode(FormViewMode.Edit);
break;
case FormViewMode.ReadOnly:
MessageLabel.Text = "Read mode";
break;
case FormViewMode.Insert:
MessageLabel.Text = "Insert mode";
break;
}
}
}
}
最佳答案
如果记录为空,EditItemTemplate 也不会显示。换句话说,如果您有一个 gridview,您从中选择一个详细记录来提供给 formview,并且它们没有所选网格项目的详细信息,那么该表单将根本不会显示。我检查详细记录是否为空,如果是,我将 formview 或 detailview 设置为“插入”模式。这样他们就可以输入新记录。
关于c# - 无法在 FormView 的 <EditItemTemplate> 中显示内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1465287/
我有一个像这样的 FormView: Test Name '> Test Name 这意味着在 InsertMode 中,用户可以使用下拉列表更改 Suite
插入记录后我有一个表单 View 我想知道插入记录的最后一个 id 最佳答案 你必须依赖你的数据源对象。 例如,如果您使用的是 EntityDataSource,则非常简单。 1 catch 事件 E
定义 FormView 派生类时: class PrefsView(FormView): template_name = "prefs.html" form_class = MyFor
我有一个连接到 LinqDataSource 的 FormView,我想按查询字符串对其进行过滤。基本上,如果通过查询字符串传入 ID,我只想显示该记录,否则如果没有提供 ID,则只显示所有记录。我已
我想使用表单 View 显示学生成绩单。如果是第二学期的成绩单,成绩单将有额外的栏目,如果是第三学期的成绩单,则将有另外两栏。要找出它是哪个术语,我需要评估 TermNumber 属性,并显示适当的标
我一整天都在想办法解决这个问题 - 我有一个 FormView带有一些文本字段和 GridView有几列。出于某种原因,我的 FormView不显示,但 GridView 我的 .aspx 文件如下:
我有一个包含窗体 View 和 ObjectDataSource 的 ASP.NET 页面。在页面上,我只有 4 个字段绑定(bind)到我的数据源中的字段。我的数据源包含 10 个字段。当我调用更新
Django FormView 和 CreateView 有什么区别? 我看到的唯一区别是,FormView 需要 ModelForm 但 CreateView 不需要。 否则,两者都会做同样的事情来
我已经做到了,任何使用用户名注册的用户都会自动将其用户名转换为小写。 user/forms.py 我现在遇到一个问题,我无法找到一种方法将登录表单中的用户名在提交时转换为较低的用户名。因为我仍然希望用
我的 Form 中遇到了一些奇怪的故障执行。我不确定这是一些实现错误还是 SwiftUI 本身的错误。 所以基本上我想做的是典型的“ToDo/TimeTracking”应用程序。我想创建一个引用项目实
我有一个使用 FormView 的类 View 。我需要更改表单的名称,即在我的旧函数 View 中以前是这样的: upload_form = ContactUploadForm(request.u
有这个 urls.py 片段: url(r'^storageitem/(?P[\w]+)/addtransaction/$', login_required( StorageItemTrans
ID : CpuName :
我需要在插入新项目后进入编辑模式。 OnItemInserted 方法: protected void fvReport_ItemInserted(Object sender, FormViewIns
在 ItemUpdating 上,我能够检索字段值,但我不能只检索更新的值。 有没有比下面的方法更好的方法? protected void fwHotelDetails_ItemUpdating(Ob
如何从代码后面检查表单 View 是否为空?我试过 DataItemCount ==0 但它似乎不起作用。谢谢 if (FormView_imgBG.DataItemCount == 0)
我需要找到这个 标签位于 FormView 中控制,我需要根据条件删除这个标签,但我无法使用 FormView.FindControl 找到它方法
我通过谷歌搜索,发现很多人都在为这个问题苦苦挣扎,但我仍然没有找到正确的答案。 http://i.stack.imgur.com/15jen.png 我有一个表单 View ,需要检查语言代码是否重复
下面是我的代码。我遇到的问题是我的绑定(bind)文本字段没有按预期将信息发送回 UpdateCommand。如果我将任何 @variables 替换为硬编码文本,则更新会按预期进行。因此,如果我将
188 点 400 个帖子 带有下拉列表的动态 Formview 非常失败。 6 小时 21 分钟前|LINK 我脑子里有一个想法,我正在努力实现它,但它没有用。这是需要发生的事情:用户从列表中选择一
我是一名优秀的程序员,十分优秀!