Data Controls :: Show Hide CommandButton Based On Condition In GridView
Nov 22, 2015
I am adding two button in gridview here I populate gridview on page load this work fine problem is that  when my status value are  check  or peending then my two button are show.
But I want when my status value are check then check  button should be hide
And view button show in which row where staus value  are check But when my status value are peending here show check button and view button should be hide. I want follwing type .
Gridview Like that on page load
id name class status
1 imran 5 check
Hide Check button
View Button Show
2 ali 8 pending
Check  Button Show
View Button Hide
3 farooq 7 check
Hide Check button
View Button Show
How to do it following my code.
Default.Aspx.cs
protected void Button1_Click(object sender, EventArgs e)
{
populategridview();
}
public void populategridview()
{
string strConnString = "Data Source=.SQLEXPRESS;Integrated Security=SSPI;
[Code] .....
View 1 Replies
Similar Messages:
Dec 19, 2012
i am using template field display image based on condition in table field. i have field name verify i used to store yes or no value if it is yes then display image else noting to display in gridview
View 1 Replies
May 7, 2015
I am checking string  and then bind category. If condition is false then i  need anchor tag in which i pass querystring to specific link.
<itemtemplate>
<asp:Literal runat="server" ID="litPrice" Text='<%#((String.IsNullOrEmpty(Eval("Price").ToString()) || Eval("Price").ToString()=="00/0.00" || Eval("Price").ToString()=="0/0.00") ? "<span font-family="arial"><a href="http://www.xyz.com/web/enquiries.asp?category="+ Eval("category")>Enquiry</a></span>" : Eval("Price"))%>' >
</asp:Literal>
</itemtemplate>
I am getting error. CS1010: Newline in constant
View 1 Replies
May 10, 2010
I have one asp.net gridivew where i have written some code and bind it.. itz working fine now my requirment is when ever any gridview row which conatin column 3rd zero(0) i want to hide tht row ..
View 2 Replies
Dec 18, 2013
I am using a dropdownlist in a gridview which contains 3 valuesappleorangebanana
apple will be displayed as default valueif i select orange and banana the dropdownlist list should be disable or hidden but the selected value must be displayed
protected void btnsubmit_Click(object sender, EventArgs e)
{
foreach (GridViewRow gr in GridView1.Rows)
{
[Code].....
View 1 Replies
Sep 2, 2010
is there a way to show or hide a Template Field within a gridview upon a condition in C#?
View 2 Replies
May 22, 2012
i have passed a paramater to the report
if param="Y" then i want to display field2 else field 3
i tried that in expression as
=IIF(paramater!state.value="Y" , fields!add1.value,feilds!add2.value)
but i am not getting
View 1 Replies
Jun 15, 2010
I have following criteria in my gridview control.I have a parent gridview control (gvParent) which has 8columns in it. and i have gvchild within gvParent.And i want to show/hide the (gvChild) based on some condition in rowdatabound event of the gvParent. i need to display the child grid at the end of each row in gvParent .Also Child Grid should start from 3 rd column of the gvParent and should end at 8th column.How to bring the child grid after each row ?
View 2 Replies
May 13, 2012
I have a tab container with 10 tabs each with unique id on a hyperlink click i need to make some tabs visible true false,in hyperlink I am passing a query string param
if the param="Y" param = Request.QueryString["type"];Â
if  (param == "Y") {Â
for (int tc = 0; tc <= TabContainer1.Tabs.Count - 1; tc++) {Â
if (TabContainer1.Tabs[tc].ID == "Y") {
TabContainer1.Tabs[tc].Visible = true;Â Â Â Â Â Â Â Â Â Â Â Â Â Â
}Â else {Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
TabContainer1.Tabs[tc].Visible = false:
}Â } }
I have the above condition but on this click the tab container is not at all visible but without any parameter passing the tab container is visible.
View 1 Replies
Sep 14, 2013
My Repeater will display the data like below
Id Name Mark1 Mark2 Mark3
1    aaa     50    30     20
2   bbb     50    30     30
3    ccc     50    30     20
if mark3 has all fields with 0 means i want to hide column mark3... How to do this....
View 1 Replies
Feb 11, 2011
I want to hide a column of GridView based on a condition. How can I access the column in C# code?
if() // condition
{
// Disable code here. ?????
}
View 2 Replies
May 7, 2015
This is my Code
My query is if i select Other in dropdownlist i want visible textbox..
how to i do it..
<asp:GridView ID="TypeFruit" runat="server">
<Columns>
<asp:TemplateField HeaderText="Type" >
<ItemTemplate>
<asp:DropDownList ID="ddlfruit" runat="server" >
<asp:ListItem Value="0">Select</asp:ListItem>
<asp:ListItem Value="1">Fruit</asp:ListItem>
<asp:ListItem Value="2">Other</asp:ListItem>
</asp:DropDownList>
<asp:TextBox ID="TxtOther" runat="server" Visible="false"></asp:TextBox>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>Â
View 1 Replies
Jan 29, 2013
I have a table dt_details which includes columns -Â name, address, phone,emailid, website,remarks,paid.
In the datagrid i have to display full columns only if paid is yes and if paid is no only name & phoneno should display.How to do that ?
View 1 Replies
Mar 30, 2010
I am using VS2008.I am binding dynamic datatable to gridview. I have few dropdowns and textboxes in gridview.
I have dropdownlist(ddlTrCodeNw_)in gridview foooter template. Based on the selection of Trcode value few controls will be enabled,disabled,visible,hide. in gridview.
<asp:GridView ID="gvAPPost" runat="server" Width="100%" ShowFooter="true"
AllowPaging="true" AutoGenerateColumns="false"
onrowcommand="gvAPPost_RowCommand"
onrowdatabound="gvAPPost_RowDataBound"
>
<Columns>
<asp:TemplateField HeaderText="Discount %" Visible="false">
<FooterTemplate>
<asp:TextBox ID="txtDiscountPerNw" runat="server" Width="40px" Enabled="false" Visible="false" ></asp:TextBox >
</FooterTemplate>
<ItemTemplate>
<asp:TextBox ID="txtDiscountPer" runat="server" Width="40px" Enabled="false" Visible="false"></asp:TextBox >
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
Intially I set TemplateField HeaderText also Visible="false".
so i have written the condition in ddlTrCodeNw_SelectedIndexChanged.
Now when
if(ddlTrCodeNw.SelectedValue=="24")
{
txtDepstNw.Enabled = true;
txtDepstIncNw.Enabled = true;
txtCrdtNw.Enabled = false;
txtCrdtIncNw.Enabled = false;
lblDiscTrcodeNw.Visible = true; // I want to show this TemplateField HeaderText also when i need.
}
I can I show TemplateField HeaderText also whenever i need.
View 3 Replies
May 7, 2015
In my query i have 1 gridview..
In this gridview i have 1 dropdownlist and  1 textbox..
textbox is in visible=false state..
My question is after selecting dropdown list selected value i want visible textbox in gridview..
View 1 Replies
Aug 3, 2012
I have a gridview which displays a list of submittted applications with a column that contains an edit link.
<asp:TemplateField HeaderText="Status">
<ItemTemplate>
<asp:LinkButton ID="lnkBtnEdit" runat="server" CommandArgument = '<%# Eval("appID")%>' Text = "Edit" OnClick = "editApp" />
</ItemTemplate>
</asp:TemplateField>
I want to hide the link button if the status (value 1 or 0) of the form is set to 1. Here is the code I am trying to use.
Protected Sub gv1_RowDataBound(sender As Object, e As GridViewRowEventArgs)
If e.Row.RowType = DataControlRowType.DataRow Then
'get the cell cell value
Dim status As Integer
[code]....
I think my mistake lies in getting the status value (as it ouputs 0 for every application).
View 1 Replies
May 25, 2012
I want to higlight the background color based on condition
E.g. I have a column likeÂ
name    rate
rafi      100
ravi        0
karthick  300
Here rafi and karthick should display the background color
ravi should display the whitecolor
View 1 Replies
Jul 16, 2010
I have an emergency request that I need to sort it out very quickly as I did not notice it early :(.
I have a dropdownlist, the contnet in the gridview (sqldatasource connection) changes based on the value the user slects, say I have play1, play2 from the dropdownlist, I would like to show column1, column2 and column3 with user selects play1; show column4, column5, and clomn6 when use selects play2; the datatable actually includes all 6 columns.
I understand that I need to use something like RowCreated event, and I need to set up condition based on the dropdownlist value, but I dont really know how to.
View 3 Replies
Oct 22, 2010
I have a form that has 2 querystring variables ID and FormID being passed to the page. Also on this page I have 2 different DataSources that outputs to a Detailview depending if the FormID is 1 or 2. I would like to be able to add a show/Hide command to Show only the DetailView that is selected and Hide the other. I have researched and found hat people are using a Multiview code, but I have not been able to find a working example code.
View 2 Replies
Jul 26, 2013
I want to change the color of particular gridview rows with an image in one row, based on condtion. How to achieve it.
View 1 Replies
Jul 19, 2013
how to display row values based on condition in grid view control and how to display different row colors based on condition in grid view.
View 1 Replies
May 7, 2015
I have to write this code to blink particular rows of gridview based on some conditions I found below link which actually does blink but after we click the row. URL...I need that the row should blink as soon as the web page loads.I also tried using the jquery as in below link but it is also giving error as.URL...
View 1 Replies
Sep 29, 2010
I have a textbox in a formview as well as a dropdown. When I select a value in the dropdown, the textbox should be made visible or invisible based on the value I select.
View 3 Replies
May 7, 2015
Actually I have a datalist in which I am binding product name and product description and there is a hyperlink.
I am binding datalist in page load and checking that user is login or not using session.
if user is login then hyperlink text should be view more
else
hyperlink text should be login to viewÂ
The code I have written is working fine but when user is logged in then Only one products hyperlink text changing. I want change it to all hyperlink text to view more when user login
View 1 Replies
Jun 29, 2010
if i give the 10 number,10 number of same images should be diplayd in the Grid View.
how can i do that.
View 7 Replies