Forms Data Controls :: Datagrid Setting Background Color Depending On Header Value?

Oct 18, 2010

I have an asp.net gridview which represents some kind of reservation calendar. Each row represents a workplace and each column a day. The header value (date) is set by a method since the start of the time period shown by the gridview can be selected by the user. Since the date column can start at every day of the week I wanted to mark the weekend day columns with a special background. How to set this? (See .aspx code snippet below which is currently used for each column ().

Remark: ItemStyle-BackColor= '<%# %>' (dynamic) annotation isn't allowed in the <TemplateField> Tag and the actual date must be evaluated somehow from the header or another control.

[Code]....
[Code]....

View 1 Replies


Similar Messages:

Web Forms :: Setting The Content Page Background Color Different From The Master Page Back Ground Color

Jul 14, 2010

I have a master page and set it's back ground color in the body tag <body style="background-color:Red">. Now that is fine for the Master page. How do I set the back ground color of the content page to a different color?

View 12 Replies

Forms Data Controls :: How To Set The Background Color Of Menu In To Two Seprate Different Color

Jan 18, 2011

I m using this code

Menu menu = new Menu();
menu.MenuItemClick += new MenuEventHandler(menu_MenuItemClick);
menu.BackColor = System.Drawing.Color.AliceBlue;

But i want that background color of menu should be seprate two Different color red and AliceBlue

View 3 Replies

Forms Data Controls :: How To Display A Header Of Gridview As A 3D View Color Header

Jan 4, 2010

how to display a header of gridvew as a 3D view color Header?

View 14 Replies

Web Forms :: Setting Gridview Header Back Color Dynamically ?

Mar 29, 2011

i am setting the gridview headers backcolor dynamically
if (!Page.IsPostBack)

{ buildGrid(); gvTeamGameSeries.HeaderStyle.BackColor = Color.FromName("red"); }

however everytime i reload the page,backcolor disappears.If i move it out from IsPostBack block ,it works fine but i want to load grid only when the page loads for first time(inside !Page.IsPostBack).

View 8 Replies

C# - Setting The Background Color On A Selected Row On ListView?

Mar 6, 2011

Currently I'm setting the background color of the row being edited by doing the following in the edititemtemplate.

<tr id="row" runat="server" enableviewstate="true" style="background-color: #5CB8DF">

A sorting requirement changed and the client wants to have the last edited record appear at the top of the listview. So after the save, the ListView is getting updated as I am using AJAX and not taking it out of edit mode. If the record the were editing was #3 in the list, it would move up to the first row now, but the ListView is still highlighting row 3.

I am capturing a GUID in just setting it to "display:none" on the tag. So I have a unique to work with if I need to. Is there a way to accomplish this in C# code-behind?

View 1 Replies

Setting Gridview Header Color?

Oct 13, 2010

i am working in asp.net and c# i have a grid view. i have 10 columns in that grid view. I have some problems with grid view header text color.some of the columns header have link (for sorting). the color of such header text is a light blue.after clicking the blue color change to another color.

some of columns header does not have link. the color of such header text is gray. i want to make the color of entire header text to single color like gray. after clicking the link it must be in same color.

View 2 Replies

AJAX :: Change Background Color Of Active And Inactive Tab Panel Header

Feb 27, 2014

I have a tabcontainer with three tabpanel. The first tab is always enabled, while the other two get enabled and disabled in the code-behind depending on some conditions.I would like to customize the header style of the second and third tab such that: - If the tabs are disabled, the header (title of the tab) font color should be gray - If the tabs are disabled, the header (title of the tab) font color should be blue. Currently, I have the following in my style sheet: `a.ajax__tab_tab{ color: blue; }`but this always sets the tab title font color to blue, regardless of whether the tab is enabled or disabled. This piece of code shows the conditions to enable or disable the tabs. Can I control for style here as well?

protected void HorizonTextBox_TextChanged(object sender, EventArgs e)
{
if (HorizonTextBox.Text != "")
{
TabPanel2.Enabled = true;
TabPanel3.Enabled = true;
WholeUpdatePanel.Update();

[Code] .....

View 1 Replies

Forms Data Controls :: Gridview Header Css / Set The text Color To White For The Header Only The Non Bound Columns Go White

Aug 13, 2010

i have a gridview bound to sql datasource with template fields binding the columns. I have set the Header Style to a css class. I have 3 columns not bound to data as Add, Edit and Delete. When I set the text color to white for the header only the non bound columns go white. The bound columns are BLUE like hyperlink. Any one know a way round this. (If I set the style in the gridview the all columns are white. Want to set in external css file).

[Code]....

View 1 Replies

Forms Data Controls :: Gridview Column Formatting Depending On Text In Header?

Mar 30, 2010

I want if the header of a particular column contains a word "S", the header and row turns red. I used following code to make header red and it works fine. How to make it such that the rows also turn red if condition is met ? I cannot hardcode in columns since the Gridview is autogenerate colums as data structure keeps changing.

Protected Sub GridView1_DataBound(ByVal sender
As
Object,
ByVal e
As System.EventArgs)Dim HeaderRow
As GridViewRow = GridView1.HeaderRowFor
Each c
As TableCell
In HeaderRow.CellsIf c.Text.EndsWith("S")
Then
c.BackColor = Drawing.Color.OrangeRed
End
If
Next
End
Sub

View 2 Replies

Forms Data Controls :: Change Row Background Color On Repeater?

Jun 29, 2010

I have repeater and I am using foreach to go through each row, checking for specific value and assigned the label accordingly. However, when there is a value that is not expected, I would like to highlight the whole row on yellow color.

How can I set only for specific row in repeater with different background color?

View 3 Replies

Forms Data Controls :: Background Color For Hidden Iframe?

Oct 13, 2010

Is it possible to change the backround color of a iframe? The default is white..

<iframe id="hdnFrm" name="hdnFrm" src="" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" vspace="0" hspace="0" style="width:90%; height:70px"></iframe>

View 5 Replies

Forms Data Controls :: Read The Background Color Of A Row In A GridView?

Jul 16, 2010

I have a GridView. In my RowDataBound event I add attributes for the mouse onclick event, which sets the row's background color to red when the row is clicked. This works. I have a button outside of the GridView. When I click this button, I want to read each row of the GridView, and if its background color is red I want to perform some processing on the row. I tried the following code and even when the row's background is red, I cannot get its background color (bgc is empty).

[Code]....

View 9 Replies

Forms Data Controls :: Gridview Caption And Background Color?

Jan 13, 2011

I am able to change the girdview caption in code like this:GridView1.Caption = "New grid title"But I can not find how to change the background color where this caption (in the entire girdviews heading).

View 4 Replies

Forms Data Controls :: Retain The Background Color Of Repeater Row?

May 21, 2010

I am using repeater control in my project and I have made its rows clickable by javascript, when I click a row it changes its background color.

My problem is that when ever i click any server side control in the page the color of the selected row disappear. Can Anyone has Idea to retain the background color.

View 2 Replies

Forms Data Controls :: Changing Background Color Of A Cell In A Datatable?

Feb 24, 2010

I am reading a datareader, populating a datatable and then when finished populating I bind to a gridview. Right now, I am placing a literal in the cell of the rows based upon date differences....sort of a textual gant chart. What I want to be able to do is change the background color of the cell I am putting these literals in. I am including the code below where I am populating the cells with the text. Does anyone know how to make the background color change? I know that in a normal gridview on datarowbind I can change it but I don't know how to do this on a cell by cell basis within the code I have below.

[Code]....

View 6 Replies

Forms Data Controls :: Dynamically Set Background Color Of GridView Cell?

Oct 23, 2010

How can I make the background color of a GridView cell dependent on the boolean value of field?

[Code]....

[Code]....

View 1 Replies

Forms Data Controls :: Add Background Color To Gridviewrow According To Condition In Gridview

Jan 10, 2010

i want to add b.colr to gridview row

html code

<div>

View 9 Replies

Forms Data Controls :: ListView Single Selection Background Color?

Apr 23, 2010

I want to change the background color of a row when the user selects an item in the ListView. Also, when something is already selected previously, the previously select row reverts back to the default background color. how I can acheive this?

[Code]....

View 2 Replies

Forms Data Controls :: Add Color To The Header Of A Gridview?

Jul 6, 2010

I have a gridview with the following header shown below

TYPE LOCATION

Big New York

Small BOSTON

Now, I would like to add a background colour for the headers TYPE, LOCATION. How do you do that? Kindly note, I am not trying to add a text color but instead a background color

View 2 Replies

Forms Data Controls :: Merging Two Datatables And Changing The Background Color On A Gridview

May 20, 2010

I am pulling information from two different databases (structure is the same) and putting them into two datatables. The problem I am having is figuring how to merge the data togther in a single gridview and change cell background color for only the data in the second datatable.

View 4 Replies

Forms Data Controls :: How To Set Background Image To Gridview Header

Jul 9, 2010

how to give background image to gridview header

View 3 Replies

Forms Data Controls :: How To Put A Background Color To Input Controls Where The Mouse Cursor Is Located

Mar 10, 2011

How can I put a background color to my input controls where the mouse cursor is located?For example: on textbox focus, change background color to lightyellow and on lost focus, change the background color to default.And this to be applied to all the input controls in my web app.

View 5 Replies

Forms Data Controls :: How To Set The Background Color Of A Treeview When User Moves The Cursor From One Node To Another

Jan 7, 2011

i have dyanamically created a treeview. seeting the backgroud color of a node when user moves the cursor from one node to another.

<asp:TreeView
ID="OrderTreeView"
runat="server"
ExpandDepth="FullyExpand" ShowLines="True"
BorderWidth="0px"
Width="292px"
Font-Size
="12px"
Font-Names="arial,helvetica"
ForeColor="Black"
NodeStyle-HorizontalPadding="4px"
Font-Bold="false">
<HoverNodeStyle
BackColor="#FFCC66"
ForeColor="Black"
Font-Bold="True"
/>
<SelectedNodeStyle
BackColor="#CAE4FF"
BorderWidth="0px"
ForeColor="Black"
orizontalPadding="4px"
Font-Bold="True"
/>
and i also tried with
OrderTreeView.HoverNodeStyle.BackColor = System.Drawing.Color.Yellow;// "#FFCC66";
didnt work.

when user selects another node,how to remove the background color of previously select node and set the background color of current node.

View 6 Replies

Forms Data Controls :: Changing Div Background-color When Checkbox Is Checked Inside Repeater Control

Jan 3, 2010

I have a repeater control on my page. Here's my code:

[Code]....

I would like to change a background color of the item's <div> when user checks the chechbox. I have an event handler for CheckedChange event but I don't know how can I get access to this div from the event handler.

View 4 Replies







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