Forms Data Controls :: How To Freeze Specific Columns In GridView

Aug 31, 2010

My question is how to freeze specifi columns of Gridview control ? Freeze means...for example say if we are freezing the first column of grid then on scrolling a horizontal scroll bar of the grid will scroll all columns other than the first column. That means the first column will be visible always without any movement. But the first column should move if we use the vertical scroll bar.

View 1 Replies


Similar Messages:

Data Controls :: Freeze (Fixed) Columns In GridView Using JQuery

Jun 16, 2015

I want to freeze the first 3 columns in my gridview.  There are few solutions out there but they all have some formatting or browser issue.

View 1 Replies

Forms Data Controls :: Create An ASP Grid With Dynamic Columns With An Ability To Freeze Columns And Rows

Sep 20, 2010

I created a gridview that is made up of 4 gridviews and using a stored procedure to populate it. I create columns at runtime because the number of columns changes all the time.To make the grids editable I am adding template fields at runtime as I create the columns, this is to ensure that a user is able to edit the cells and some foot values update. Reason why I have four grids is to freeze rows and columns like in excel using javascript. The problem is that performance is very bad especially in IE, the grids take a long time to load. I am not sure if this is caused by the data load or the creation of text boxes. see some of the code below for my _aspx page:

[Code]....

View 1 Replies

Forms Data Controls :: How To Freeze Two Columns In Datagridview

Aug 26, 2010

I have a situation where I need to freeze first two colums in a datagrid view control on my asp.net app. In windows forms there is a proprty called Freeze which can be enabled / disabled. How can I freeze first two colums in a data grid view control on my ASP.NET page.

View 1 Replies

Forms Data Controls :: Freeze Datagrid Columns / Scroll Bar Movement Getting Slow?

Jul 13, 2010

I have to freeze the first column in a data grid. i have done freezing part but the issue is vertical and horizontal scroll bar movement getting slow. in my data grid each row contains 18 textboxes and 18 image buttons.if number of rows count around 15 then the scroll bars working almost properly.issue in
morethan 15 rows

For freeze i am using CSS.Platform is asp.net1.1

in CSS i am using below given codes.
div#div-datagrid {
width: 200px;
height: 200px;
overflow: auto;
}
/* Locks the left column */
td.locked, th.locked {
position:relative;
cursor: default;
left: expression(document.getElementById("div-datagrid").scrollLeft-1);
}
/* Locks table header */
th {
font-size: 14px;
font-weight: bold;
text-align: center;
background-color:Navy;
color: white;
border-right: 1px solid silver;
position:relative;
cursor: default;
top: expression(document.getElementById("div-datagrid").scrollTop-4);
z-index: 10;
}
/* Keeps the header as the top most item. Important for top left item*/
th.locked {z-index: 99;}

View 2 Replies

Data Controls :: Print Only Specific Columns Of GridView

May 7, 2015

I want to hide some of the columns of the gridview before printing.

For example gridview contains customerid,city and postal code.

Now i want to show city and postal code during printing.

So how can i achieve this?

View 1 Replies

VS 2005 - Possible To Freeze Gridview Columns

Jun 20, 2011

I have a gridview where I display (from left to right) plant id, product no and month/year and there after a column with qty for every day on the month.

The gridview is located inside a panel that has a horizontal scrollable property set that lets user scroll from left to the right. This works fine.

Now, they are asking if it is possible somehow to freeze plant id and product no? Currently when they scroll past day 10 then plant id and product no is not longer visible and making it hard to see what line you are on.

View 24 Replies

Data Controls :: GridView BoundField Column Readonly - Disable Specific Columns In Edit Mode Of GridView

May 7, 2015

How to disable editing the data in the cells of datagridview in c#?

View 1 Replies

VS 2012 - Freeze Gridview Header And First 2 Columns

Jul 10, 2013

I need to freeze my gridview header and the first two columns. I found a great jquery plugin called tinytbl which does the job but it messes up the inline javascript on my page which causes a few issues.

Any better way to freeze columns? I see alot of examples on the net using css but they use expression which has been deprecated.

View 1 Replies

Data Controls :: Show Only Specific Columns And Hide Others When Sending GridView In Email Body

Jun 17, 2012

i have done sending gridview data  as excel  to mail, it is working fine

then  i had 5 columns in gridview but i want to send 4 column instead of 5 column.

protected void Button1_Click(object sender, EventArgs e)
{
fn_AttachGrid(); // here calling function to send mail gridview data as excel format
}

[Code]....

View 1 Replies

Freeze Columns In Gridview Where Grid Has Static Height And All Rows Are Rendered?

Feb 23, 2011

I'm trying to freeze columns in gridview where grid has static height and all rows are rendered(no paging and scroll var is visible).I only managed to add scroll through content by overflow property,but this time all columns are scrolling as well.My task is to freeze columns while maintaining column width.Let this be my grid

<div style="height:200px;overflow:auto;">
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
UseAccessibleHeader="true or false">

[code]...

View 1 Replies

Forms Data Controls :: How To Freeze GridView Header Using GridView Properties

Feb 14, 2010

I have GridViews in mostly all web-pages. If data rows are too much then by scrolling down the grid, header misses.

How to Freeze GridView Header like we do in MS Excel?

View 5 Replies

Forms Data Controls :: How To Freeze Row Header For Gridview

May 6, 2010

i m using a Gridview in my Page.Now i want to freeze the row Header of the gridview.

i did it with CSS its working fine In IE

the problem arise, when the same code is working in IE but nt in Opera and also Chrome..

solution for using it in cross browser.or else code for freezing the header wihtout the CSS style sheets..

i want it to use it with the properties of Gridview ..

View 10 Replies

Forms Data Controls :: Freeze Gridview Heading?

Mar 31, 2010

How can i freeze grid view heading?

View 3 Replies

Forms Data Controls :: Freeze Gridview First Column Of Each Row?

Feb 16, 2011

I trying to use below code in my app to freeze grid columns but its not working.The same code is working fine in the sample.I am using IE 8.

[URL]

<style
type
="text/css">
/* Div container to wrap the datagrid */
/* Div container to wrap the datagrid */

[Code]....

View 1 Replies

Forms Data Controls :: Gridview Header Freeze In IE8 Standard Mode?

Feb 17, 2011

i designed a gridview with the option of Freeze the header. below is the style i have applied in the headerstyle

background: #ecf5ff;
color: #333;
background-color: #6D91BF;
border-style: solid;
border-width: 1px;
border-color: #9cc9ed #5c9fde #6daddb #b4d2f0;
font-weight: bold;
text-align: center;
color: white;
text-decoration: none;
font-size: 12px;
position: relative;
top: expression(this.offsetParent.scrollTop);
z-index: 10;

but its not working in IE8 standard view but working in IE8 compatibility mode,

View 14 Replies

Forms Data Controls :: Make A Hierarchical Gridview With 1 Freeze Column?

Dec 4, 2010

I want to make a hierarchical gridview with 1 freeze column.

i have freeze a column in general gridview but it was not working on internet explorer 8.

View 3 Replies

Forms Data Controls :: Datagrid - Displaying Specific Columns As A Dropdown

Mar 16, 2011

I have a datagrid which displays a list of user data, such as name, his or her status, age. I have created a list of rows of user data but where the column shows status for example Single, Married, i want it to create a dropdown list where i can easily change the user status by selecting it from a dropdown and clicking the update button at the top of the datagrid. The update button will update all records that have been changed not just from the dropdown. I assume the dropdownlist requires a columnbinding event but i can't find any straight forward tutorials.

View 2 Replies

Web Forms :: GridView - Edit Only Specific Columns And Not All

Jun 16, 2012

I use these code  for my grid view [URL] ....
 
Here have  Customerid  ,Name  ,Company  column when we click on edit that edit Name and Company Column .

I want when user click on Edit they can edit just Name column I want they can't edit Company column how i can do it?

View 1 Replies

Web Forms :: Export Only Specific Columns Of GridView To Excel

May 27, 2012

I know how to export GridView to excel but it exports all Columns

I want to export only some columns and not all of ASP.Net GridView to excel.

View 1 Replies

Web Forms :: GridView Edit Update Only Specific Columns And Not All

May 26, 2012

i have record for 10 student... i want to enter marks and give status pass or fail..i m using grid view to show data.....like

student name       class        marks      Pass/fail(should be drop down)      marks

above are my coloum....and i want to edit only pass/fail   and marks entry......how can do it in grid view.

View 1 Replies

Forms Data Controls :: Show FormView In Edit Mode With Specific Table Columns Depending On Their Genre?

Sep 8, 2010

I have a table in my database called "Profiles". This holds data on Female and Male personal characteristics.On my aspx, I have a formview in edit mode which is binded to an object data source with a GetDataByUserId Select methodwhich retrieves data from the "Profiles" Table via a DAL.The "Profiles" table has some columns which relates to females only and some just males and some are generic to both.See example below

UserId - / of Type GUID
GenreId / of Type BOOL.
Hip Size (For females)
Dress Size ( For Females)
ChestSize (For Men )
TrouserSize (For Men)
Weight ( For both )

When the User logs in , they go to an update Page which has the Formview in Edit Item Mode and contains drop down Lists whichare binded to the Users Selected Value. The DDL are in turn bound to their related table such as HIP, Dress, Chest, Trouser etc.bjectiveIf a female user logs in I just want to show them the (Hip Size) DDL and DressSizeDDL in the Edit item template of the formview and not the ChestSize DDL or TrouserSize DDL.At present the GetProfileByUserId returns all colums from the tableMy question is how do I do this and just show DDL which are relevant to the Female or Male Only. In some cases the usermay not have selected an item in the previous form so they could also be NULL.Am i on the right path by writing a Select Query that checks to see if the User is Male or Female by checking the Genre column in Profiles first.Do I also need 2 panels, 1 to hide Female DDLS and the other to Hide MaleDDLs subject to logged in user genre.

View 8 Replies

Forms Data Controls :: In Page User Able To Select Gridview Columns And It Will Hide Remaining Columns

Mar 18, 2010

in asp.net page user able to select gridview Columns, and it will hide remaining columns and that selection done by check box with column list bellow is Image link , what exactly I am looking for [URL] it look bellow after selection of column done [URL]

View 1 Replies

Data Controls :: Freeze GridView Header When AutoGenerateColumns Is True

Aug 20, 2013

I want to freeze my Header columns when Autogeneratecolumns=True.  

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;

[Code] .....

View 1 Replies

Data Controls :: How To Freeze GridView Header And Footer And Make It Static

Sep 3, 2013

When i scroll the cursor the header and static need to static but content must scroll..

View 1 Replies







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