Tutorials
Resources
Forum
Communities
Interview
Jobs
Projects
Offshore Development
Silverlight Tutorials
|
Mentor
|
Code Converter
|
Articles
|
Code Factory
|
Computer Jokes
|
Members
|
Peer Appraisal
|
IT Companies
|
Bookmarks
|
Revenue Sharing
|
Prizes & Awards
My Profile
Sign In
Register
AdSense Revenue
Active Members
Today
Appukuttan
(94)
Abhi
(72)
Babu Akkandi
(63)
Last 7 Days
Appukuttan
(619)
Babu Akkandi
(470)
divya
(321)
more...
New Feature:
Community Sites
:
Create your own .NET community website and start earning from Google AdSense !
It's Free !
How to fix max char width of gridview column
Posted Date: 09 May 2008
Resource Type:
Code Snippets
Category:
ASP.NET GridView
Author:
Mr. Kiran S Patel
Member Level:
Bronze
Rating:
Points
: 10
This code sample will help you to fix max no of charters displayed in grid view column, and how to show full detail in tool tip.
'--- Write Following Code to RowDataBound event ---------
Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs)
Handles GridView1.RowDataBound
Dim MaxChar As Int16 = 50
If e.Row.RowType = DataControlRowType.DataRow Then
If e.Row.Cells("GoodsDesc").Text.Length > MaxChar Then
e.Row.Cells("GoodsDesc").Text = e.Row.Cells(6).Text.Substring(0, MaxChar)
End If
e.Row.Cells("GoodsDesc").Text = e.Row.Cells("GoodsDesc").Text + "..."
e.Row.Cells("GoodsDesc").Attributes. _
Add("Title",e.Row.DataItem("GoodsDesc").ToString)
End If
'----------- "GoodsDesc" is Column name ----------
End Sub
Responses
No responses found. Be the first to respond and make money from
revenue sharing program
.
Feedbacks
Popular Tags
What are tags ?
Search Tags
Sign In
(No tags found.)
Post Feedback
This is a strictly moderated forum. Only approved messages will appear in the site. Please use 'Spell Check' in Google toolbar before you submit.
You must
Sign In
to post a response.
Next Resource:
implement Paging in .Net
Previous Resource:
How to Export the gridview results in an excel sheet.
Return to Discussion Resource Index
Post New Resource
Category:
ASP.NET GridView
Post resources and
earn money
!
Related Resources
Data from database to Grid View
To get the repeater item on button click in repeater and delete row from table ion c#
Repeater with CheckBox nested inside a GridView
Binding XML Data to the GridView
Creating dynamic template columns in gridview
dotNet Slackers
BizTalk Adaptors
Web Design
Contact Us
Privacy Policy
Terms Of Use