473,549 Members | 2,745 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Gridview

Hi,
I have a gridview inside a table <table>...</table>
I have define explicitly wide of the table, for example 800px.
If we need gridview which is inside 800px table wider than table wide, how
can I show horizontal scroll bar on it?
I do not want to change the wide of main table. Thank you.

TIA & Regards,
Gun
Mar 28 '07 #1
4 8609
Hello,

I've never done it with the GridView, but I'm sure it applies there too:

http://www.w3schools.com/css/pr_pos_overflow.asp

The overflow property defines what an object does when it overflows the
boundaries of its parent. Setting this to scrollable will give you the end
result of a scrollbar which - I think - is what you want.

If you need an example let me know.

--
~~~~~~~~~~~
Ben Rush
http://www.ben-rush.net/blog
"Gunawan" <jg**********@g mail.comwrote in message
news:%2******** ********@TK2MSF TNGP02.phx.gbl. ..
Hi,
I have a gridview inside a table <table>...</table>
I have define explicitly wide of the table, for example 800px.
If we need gridview which is inside 800px table wider than table wide, how
can I show horizontal scroll bar on it?
I do not want to change the wide of main table. Thank you.

TIA & Regards,
Gun

Mar 28 '07 #2
You can put the gridview inside a panel, and use the scrollbars on the
panel. Check out the sample at ASPNet101:
http://aspnet101.com/aspnet101/aspne...llableGridView

--
David Wier
MVP/ASPInsider
http://aspnet101.com
http://aspexpress.com

"Gunawan" <jg**********@g mail.comwrote in message
news:%2******** ********@TK2MSF TNGP02.phx.gbl. ..
Hi,
I have a gridview inside a table <table>...</table>
I have define explicitly wide of the table, for example 800px.
If we need gridview which is inside 800px table wider than table wide, how
can I show horizontal scroll bar on it?
I do not want to change the wide of main table. Thank you.

TIA & Regards,
Gun


Mar 28 '07 #3
Thanks Ben,
It is look like a good article.
An example from you would help me much.
Thank In Advance.

Gun

"Ben Rush" <kw*****@yahoo. comwrote in message
news:%2******** **********@TK2M SFTNGP03.phx.gb l...
Hello,

I've never done it with the GridView, but I'm sure it applies there too:

http://www.w3schools.com/css/pr_pos_overflow.asp

The overflow property defines what an object does when it overflows the
boundaries of its parent. Setting this to scrollable will give you the end
result of a scrollbar which - I think - is what you want.

If you need an example let me know.

--
~~~~~~~~~~~
Ben Rush
http://www.ben-rush.net/blog
"Gunawan" <jg**********@g mail.comwrote in message
news:%2******** ********@TK2MSF TNGP02.phx.gbl. ..
>Hi,
I have a gridview inside a table <table>...</table>
I have define explicitly wide of the table, for example 800px.
If we need gridview which is inside 800px table wider than table wide,
how can I show horizontal scroll bar on it?
I do not want to change the wide of main table. Thank you.

TIA & Regards,
Gun


Mar 29 '07 #4
Now I can figure it out to display scroll bar with panel.
Thank you David.

Regards,
Gun

"David Wier" <da********@noS pamhotmail.comw rote in message
news:ec******** ******@TK2MSFTN GP02.phx.gbl...
You can put the gridview inside a panel, and use the scrollbars on the
panel. Check out the sample at ASPNet101:
http://aspnet101.com/aspnet101/aspne...llableGridView

--
David Wier
MVP/ASPInsider
http://aspnet101.com
http://aspexpress.com

"Gunawan" <jg**********@g mail.comwrote in message
news:%2******** ********@TK2MSF TNGP02.phx.gbl. ..
>Hi,
I have a gridview inside a table <table>...</table>
I have define explicitly wide of the table, for example 800px.
If we need gridview which is inside 800px table wider than table wide,
how
can I show horizontal scroll bar on it?
I do not want to change the wide of main table. Thank you.

TIA & Regards,
Gun



Mar 29 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
5665
by: theKirk | last post by:
using Visual Studio 2005 C# ASP.NET I know there has to be a simple way to do this....I want to use C# in a code behind for aspx. Populate a GridView from an xml file Add Fields to the GridView to allow entry of quantity and Y/N switch for
6
3024
by: Nalaka | last post by:
Hi, I have a gridView (grid1), which as a templateColumn. In the template column, I have put in a gridView (grid2) and a ObjectDataSource (objectDataSource2). Question is... How to I pass the current_row_key of Grid1... to the objectDataSource2 parameter? (so that the second grid, gets only the information to do with current row of grid1)
3
13728
by: NateDawg | last post by:
I'm reposting this. I'm kinda in a bind untill i get this figured out, so if anyone has some input it would sure help me out. Ok, I’ve noticed a few gridview problems floating around the forum. Everyone wants to do a java confirmation box when a user clicks the delete button. Fair enough, basic user design rules state that you should...
7
14789
by: | last post by:
Hello, Does anyone have an idea on how I can filter the data in the gridview control that was returned by an sql query? I have a gridview that works fine when I populate it with data. Now I want to look at that data and filter it based on what is in it. I know that this could have been done with data sets and data views in asp.net 1.1...
5
4825
by: Dick | last post by:
I have a GridView bound to an ObjectDataSource. I have a Button that calls GridView.DataBind. I want the row that is selected before the DataBind to still be selected afterwards. This happens automatically if the data doesn't change. But if records have been added or deleted then it looks as if some code is necessary: I've done this by...
5
6420
by: sutphinwb | last post by:
Hi - This could be a simple question. When I relate two tables in a datasetet, how do I get that relation to show up in a GridView? The only way I've done it, is to create a separate table in the dataset with a join query for the GetData() select method. I use ObjectDataStore to couple the GridView with the table adapter on the dataset. ...
1
5207
by: joechipubik | last post by:
I have a GridView in a FormView that has as its datasource a DataTable that is stored in the session cache. When I first load the page the GridView is displayed correctly, but on subsequent loads the GridView does not display. I've debugged the DataTable and even when it has data and is bound to the GridView, when the page loads the GridView...
2
13168
by: antonyliu2002 | last post by:
I've been googling for some time, and could not find the solution to this problem. I am testing the paging feature of gridview. I have a very simple web form on which the user can select a few fields to be included in the table, which is to be bound to the gridview. The web form looks like so (Don't worry about the stupidity of this web...
6
5743
by: RobertTheProgrammer | last post by:
Hi folks, Here's a weird problem... I have a nested GridView setup (i.e. a GridView within a GridView), and within the nested GridView I have a DropDownList item which has the OnSelectedIndexChanged event set on it. This triggers just fine, but within the codebehind of the OnSelectedIndexChanged event, I need to scan through all the entries...
3
5224
by: Peter | last post by:
I have a GridView which is populated by List<ofObjects> Does anyone have example of how to sort the columns of this GridView? I have found examples without DataSourceControl but these use DataTable, I am using List of Objects. Here's one example: http://ryanolshan.com/technology/gridview-without-datasourcecontrol-datasource/
0
7520
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7450
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7957
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
7809
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6043
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5368
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3500
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3481
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
763
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.