Forms Data Controls :: Show - Hide Template Headertext In Gridview Based On Requirement

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


Similar Messages:

Forms Data Controls :: Hide Detailsview Template Headertext Column?

Jan 26, 2011

[Code]....

when image display, there is a space where the template headertext resides.

how do i remove the header space (vertical line )completely to leave just the imagebutton.

View 2 Replies

Forms Data Controls :: How To Show Or Hide A Template Field Within A Gridview Upon A Condition In C#

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

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

Data Controls :: Show / Hide TextBox Based On Value Of DropDownList Inside GridView?

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

Data Controls :: Show / Hide TextBox Based On Selected Value Of DropDownList Inside GridView

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

Data Controls :: Show Or Hide Image Control In GridView Based On Condition From Database

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

Forms Data Controls :: Hide / Show A Template?

Jun 29, 2010

I have 3 linkbuttons in a footer-template and want to be able to hide/show one of them at will. How to do so?

View 8 Replies

Data Controls :: Dynamically Show Hide Label And HyperLink Based On Condition In Same Column Of GridView

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

Forms Data Controls :: How To Hide/show Columns Based On The Dropdownlist Value

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

Forms Data Controls :: Show / Hide Detailviews Based On Querystring

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

Forms Data Controls :: Show / Hide Textbox In Formview Based On A Dropdown?

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

Forms Data Controls :: Hide TemplateColumn HeaderText Programatically With C#?

Nov 24, 2010

[code]....

hide TemplateColumn HeaderText programatically with c#?

View 1 Replies

Forms Data Controls :: Sorting Item Template When Programmatically Add HeaderText?

Nov 12, 2010

I have datagrid and inside this grid have template field. I add Header text progr. like this

gvData.HeaderRow.Cells(8).Text = "Hi"

But when I do this I can not sort this column when add SortExpression="Hi"

View 1 Replies

Data Controls :: Show Hide HyperLink Control In DataList Based On Session Value

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

Forms Data Controls :: Hide Gridview Row Based On Condition?

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

Forms Data Controls :: Show / Hide GridView Control?

Jul 22, 2010

Protected Sub SQLDShowActionRef_Selected(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.SqlDataSourceStatusEventArgs) Handles SQLDShowActionRef.Selected

View 4 Replies

Forms Data Controls :: Show/Hide Gridview Rows In JavaScript?

Apr 2, 2010

On a page of my project, i have a gridview, i need to perform following operations with it:

1. On Page_Load i want to bind all the data (100 Rows) with the gridview.

2. On my Page i want to show only 4 records with Show More/Show Less Links.

3. When user clicks on the link, i want to show All data or 4 Rows accoeding to the link.

4. I don't want any roundTrip to the server, so plz don't suggest AJAX, i want to attain this by using Javascript.

View 3 Replies

Forms Data Controls :: Hide / Show Gridview Columns Using Javascript?

Jul 15, 2010

I have a webpage that lists information about trucks and their map sections and whether the combination is active and will be used.

On the page I put a check box that says Show Only Active and marked the checked property as true by default. When the RowDataBound event fires I check to see if that checkbox is marked as true and if it is I check if the individual map sections are marked as active. If they are not active then I set the row visibility equal to false like below.

[code]....

View 1 Replies

Forms Data Controls :: How To Show / Hide Columns Conditionally In Gridview

May 24, 2010

dv = new DataView(table);
Table.Columns.Add("ID", typeof(string));
table.Columns.Add("Type", typeof(string));
table.Columns.Add("EmpName", typeof(string));
table.Columns.Add("Manager", typeof(string));
row = table.Rows.Add();
row["ID"] = result["ID"].ToString();
row["Type"] = result["Type"].ToString();
row["EmpName"] = result["EmpName"].ToString();
row["Manager"] = result["Manager"].ToString();

Then I am adding boundfield to gridview for all 4 columns. Now I want to check if "Type" column contain "Sales" thne do not show "Manager" columns. Let me know can I do this?

View 4 Replies

Forms Data Controls :: How To Show / Hide TemplateField Column Of GridView

Feb 19, 2010

I am trying to show/hide TemplateField of gridview but not getting it... here is ma sample aspx code

<asp:TemplateField HeaderText="ColumnA">
<ItemTemplate>
<asp:Label ID="lblTest" runat="server" Text=' <%# Eval("Test")>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>

Now in server side i am trying to hide this column but failed !!

protected void gv_RowCreated(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Header || e.Row.RowType == DataControlRowType.DataRow)
gv.Columns[2].HeaderStyle.CssClass = "hiddenClass"; // here i am setting display:None using css class
}

how to show/hide TemplateField on server side

View 5 Replies

Forms Data Controls :: Show Gridview Boundfield If Exists And Hide Another?

Dec 13, 2010

I have the following two Boundfields in my gridview:

[Code]....

If UserSelectedDisplay exists, I want to display that. Otherwise I want to display display_title. How would you do that?

View 2 Replies

Forms Data Controls :: How To Use One Button To Show And Hide A Column On A Gridview Without Using JavaScript

Jan 17, 2010

I have a gridview, which contains a template field with a button. On this button, I want to show and hide another column with this one button. I don't want to use Java Script because my site already uses a lot of this and AJAX. So, can someone show an example of some code behind, which is what I want to do on how to show and hide another column on a gridview?

View 1 Replies

Data Controls :: How To Hide Show Panel Based On Date Time And Current Date

Oct 8, 2013

Here what i am trying to accomplish. I want to have a div or panel on the page and have some text on it. The div or panel must hava a specfied time limit and then disaaper from the page. Say i want this text to apper on 10Cotober 10.00  and disapper from the page on 11October 18.00. 

View 1 Replies

Data Controls :: Hide Label In GridView / Repeater Based On Value

May 7, 2015

I have a nested repeater, I want to hide label control in child repeater if its empty.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved