Data Controls :: Hide Column In Repeater Based On Some Condition

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


Similar Messages:

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

Hide A Column Of GridView Based On A Condition?

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

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

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 :: Disable Or Hide DropDownList Control Based On Condition In GridView

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

Data Controls :: Display And Hide Specific Columns Of DataGridView Based On Condition

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

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

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

Forms Data Controls :: Datagrid Control Column Link Button Or Label Condition Based On The Boolean Value True Or False

May 11, 2010

I have a datagrid control, the first column is Revno, currently presenting info in linkbutton. i want to do a condition based on another field docid, which gets true or false value from database. if true then present Revno in linkbutton otherwise show the revbnno just as a label., thatway users does'nt have ability to clickit.

<ItemTemplate>
<asp:LinkButton ID="lblRevision" runat="server" CssClass="Textboxes" Text='<%# DataBinder.Eval(Container.DataItem, "RevNo")%>' CommandName="FileDownloadRecord"></asp:LinkButton>
</ItemTemplate>
this docid field has flag true or false.
if true meaning show the revno as LinkButton, otherwise show the revno as label.
GetDocdetail(DataBinder.Eval(Container.DataItem, "Docid")
on the codebehind side i can use this function.
Public Function GetDocdetail(ByVal DocID As boolean) As String
If DocID = "true" Then
Else
End If
End Function

View 4 Replies

Forms Data Controls :: ItemTemplate - Hide A Hyperlink Based On The Value Of A Column?

Apr 1, 2011

I have a gridview and in the gridview i have a an itemtemplatefield with a regular html hyperlink in it.

Based on the value of one of the columns in the gridview, i want to hide this hyperlink and just replace it with the value of another column

e.g. <a href="page.aspx?x=<%=Me.CurrentAgent.ID %>&id=<%# Eval("Id") %><%# Eval("Customer") %></a>

if Eval("Status") = 123 then instea of the above hyperlink, i just want <%# Eval("Customer") %>

View 2 Replies

Web Forms :: Hide Show Fields In MS Reports Based On Condition?

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

Web Forms :: Hide Specific Row Cell From GridView Based On Some Condition

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

Show/hide  the (gvChild) Based On Some Condition In Rowdatabound Event Of The GvParent?

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

Web Forms :: Hide Show Tabs Of TabContainer Control Based On Condition

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

VS 2013 - Removing Hyperlink From Gridview Column Based On Condition

Mar 24, 2016

I have a gridview, in which one of the columns [unitid] is a link that opens up other gridviews. When the [downtime] column is equal to '0', i'd like the link in [unitid] to be removed, and just show that field as text. Here's my code for the gridview:

<asp:GridView ID="gvUnitSummary" runat="server" AutoGenerateColumns="False"
CellPadding="4" ForeColor="#333333" HorizontalAlign="Center" Width="100%"
Font-Size="Medium" DataSourceID="sdsUnitSummary" DataKeyNames="unitid" EnableModelValidation="True"
EnableViewState="False" >
<AlternatingRowStyle BackColor="#CDDBB4" />

[Code] .....

View 4 Replies

Hide Element In ASP Based On Inside Repeater

Jan 5, 2010

I know how to use a simple If statement wrapped in the <%# tags to hide something, but I don't know how to do it in a repeater when I need to access Container.DataItem, as in I need the dataItem currently being 'repeated'

eg

if (CurrentValidationMessage.Link != "")
{
show a hyperlink
}
Markup:
<asp:Repeater ID="repValidationResults" runat="server">
<HeaderTemplate>
</HeaderTemplate>
<ItemTemplate>
<a href='<%# ((MttImportValidationMessage)Container.DataItem).EditLink %>'> Link to erroneous Milestone </a>
<%# ((MttImportValidationMessage)Container.DataItem).Message %>
<br />
</ItemTemplate>
</asp:Repeater>

View 2 Replies

Forms Data Controls :: Show / Hide A Div In A Nested Repeater By Clicking On A Button Inside Parent Repeater?

Nov 12, 2010

what changed do I need to make to my code for it to achieve what I'm after.

At the moment I am getting a "cannot cast to type" error message with the below code.

I have also tried calling the ItemDataBound method in with the parent repeater tags and had no errors but when I clicked on the button it would just move back to the top of the page and would not hide or show any data. Also I have made the div style to none but the first record still shows its child but the rest don't.

[code].....

View 1 Replies

C# - Hide Repeater Columns Based On User Privileges?

Feb 9, 2011

how to hide a repeater column based on the user privileges.

Say I have:

<asp:Repeater ID="repeater" runat="server>
<HeaderTemplate>
<table id="table_id">
<tr>
<th>Name</th>
<th>Secret Info</th>
<tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td><asp:Label ID="Label1" runat="server" Text='<%# Eval("Name") %>' /></td>
<td><asp:Label ID="Label1" runat="server" Text='<%# Eval("SecretInfo") %>' /></td>
<tr>
<ItemTemplate>
<AlternatingItemTemplate>
<tr>
<td><asp:Label ID="Label1" runat="server" Text='<%# Eval("Name") %>' /></td>
<td><asp:Label ID="Label1" runat="server" Text='<%# Eval("SecretInfo") %>' /></td>
<tr>
<AlternatingItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>

How would I only display the 'Secret Info' column to logged on users?

View 3 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 :: How To Highlight GridView Row Based On Condition

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

Forms Data Controls :: Show Hyperlink On Condition In Repeater ItemTemplate

Nov 2, 2010

I have a Repeater displaying some data that doesn't do what I'd like to see. If a certain condition is met (ex: parent.NumOfChildren > 0) I would like a hyperlink shown. Here is what I have so far:

<asp:Repeater ID="parents" runat="server" >
<ItemTemplate>
<asp:HyperLink NavigateUrl='<%# "Children.aspx?parent=" &#43; DataBinder.Eval(Container.DataItem,"Parent_ID")%>'
Text='View Children' runat="server" target="_self" ID="Hyperlink2" NAME="Hyperlink2"/> -
</ItemTemplate>
</asp:Repeater>

In this case, the "View Children" link shows up for every item in my Repeater, but I'd like it shown only if parent.GetNumOfChildren() > 0. Would it be correct to try setting the Visible="true/false" property of the HyperLink? Is that the norm for this sort of problem? Or, is there a way to wrap the entire <asp:Hyperlink> ... </asp:Hyperlink> tag in an if statement that has a reference to the object that is currently being interated in the Repeater? Ie:

if(CurrentDataItemInIteration.GetNumOfChildren() > 0)
{
<asp:Hyperlink> ..... </asp:Hyperlink>
}

To me, the Visible="true/false" solution seems cleaner, if possible.

View 5 Replies

Data Controls :: Change GridView Row Color Based On Condition

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

Data Controls :: How To Display Different Row Colors Based On Condition In Gridview

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

Data Controls :: How To Blink GridView Row Based On Some Condition Using JQuery

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







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