Reputation: 2760
<Columns>
<asp:TemplateField HeaderText="Actions" ItemStyle-Width="15%">
<ItemTemplate>
<asp:ImageButton ID="imgbtn" ImageUrl="Styles/Images/Edit.jpg" runat="server" Width="25"
Height="25" OnClick="imgbtn_MessageEditClick" Enabled="True" ToolTip="Edit Message" />
<asp:LinkButton ID="Lnk_Delete" CommandArgument='<%# Eval("MsgID") %>'
CommandName="Delete" runat="server" > <img id="Img1" src="Styles/Images/Delete.jpg" runat="server" style="border-style: none"
alt="Delete Message" /></asp:LinkButton>
<asp:ImageButton ID="imgbtn_ViewDashBoard" ImageUrl="Styles/Images/dash.jpg" Enabled="True"
Width="" runat="server" PostBackUrl='<%# Eval("MsgID", "ResponseMetric.aspx?MsgID={0}") %>'
Text='Send' ToolTip="View DashBoard"></asp:ImageButton>
</ItemTemplate>
I have these Items templates, which is in the same column, I have another column MessageActive. In the rowDataBound
if the messageActive is no then I set the row color to red, and for the same column how can I disable
ImageButton ID="imgbtn"
and asp:LinkButton ID="Lnk_Delete"
inside the ItemTemplate
.
protected void MyGrid_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
System.Web.UI.WebControls.Image img = (System.Web.UI.WebControls.Image)e.Row.FindControl("Status");
int msgid;
int.TryParse(Convert.ToString(DataBinder.Eval(e.Row.DataItem, "MsgID")), out msgid);
string status = Convert.ToString(DataBinder.Eval(e.Row.DataItem, "MessageActive"));
if(status.Equals("No"))
{
e.Row.BackColor = Color.Red;
}
}
}
I do databind
for the gridview
.
Upvotes: 0
Views: 3504
Reputation: 101
you can add the following code to your RowDataBound event handler method
ImageButton imgBtn = e.Row.FindControl("imgbtn") as ImageButton;
LinkButton lnkBtn = e.Row.FindControl("Lnk_Delete") as LinkButton;
if (null != imgBtn)
imgBtn.Enabled = false;
if (null != lnkBtn)
lnkBtn.Enabled = false;
Upvotes: 2
Reputation: 460028
ImageButton btnEdit = (ImageButton)e.Row.FindControl("imgbtn");
btnEdit.Enabled = !status.Equals("No");
LinkButton btnDelete = (LinkButton)e.Row.FindControl("Lnk_Delete");
btnDelete.Enabled = !status.Equals("No");
Upvotes: 3