aspx Tutorial

.NET Articles,jQuery demo, asp.net with jQuery, online tutorial,Jquery, SilverLight, Javascript, asp.net,JSON, MVC,.NET Articles,demo, Web Services, .NET articles, Sharepoint 2010, visual studio 2010,Aamir Hasan,IT
Advertise Here

Advertize

wwwSW
Posted by Aamir Hasan   on Wednesday, March 10, 2010 Total Views:  

 

DataGridSilverlightApplication.zip (1.87 mb)

Live Demo


Introduction

In this article I will show you the basics of the DataForm control. what you can do with it and why you should use it. I will show you how you can bind an item or a collection of items to a data form.The DataForm control is like the DataGrid control in Silverlight 2. But while the DataGrid control is used to manipulate a list of items, the DataForm control focuses on the item itself.

DataGrid

DataGrids are fundamental UI controls for almost all line of business applications.Simplify the task of displaying structured data to users by automatically handling the rendering of rows, columns, headers, and data navigation. Silverlight's data grid is no exception.
The Width and Height attributes represent the width and the height of a DataGrid.  The x:Name  attribute represents the name of the control, which is a unique identifier of a control.  The Margin attribute sets the margin of the DataGrid being displayed from the top left corner.
The following code sets column width and row height to 680 and 270 respectively.

 
<data:DataGrid x:Name="McDataGrid" Width="680" Height="270"
       Margin="10,10,0,0" Background="Gray”>
</data:DataGrid>

Setting Column Width and Row Height
The ColumnWidth and RowHeight properties of DataGrid are used to set the default column width and row height of DataGrid columns and rows.
  ColumnWidth="100" RowHeight="40"

<data:DataGrid x:Name="McDataGrid" Width="680" Height="270"
  Margin="10,10,0,0" Background="Gray"
  ColumnWidth="100" RowHeight="40">
</data:DataGrid>

Sorting

By default, column sorting is enabled on a DataGrid. You can sort a column by simply clicking on the column header.  You may disable this feature by setting CanUserSortColumns property to false. The following code snippet sets CanUserSortColumns properties to false.
CanUserSortColumns = "False"


Scrolling

The HorizontalScrollBarVisibility and VerticalScrollBarVisibility properties of type ScrollBarVisibility enumeration control the horizontal and vertical scrollbars of the DataGrid. It has four values - Auto, Disabled, Hidden, and Visible. The default value of these properties is Auto, that means, when scrolling is needed, you will see it, otherwise it will be hidden.
The following code enables the horizontal and vertical scrollbars.
HorizontalScrollBarVisibility="Visible"
VerticalScrollBarVisibility="Visible"


Properties


1.    AutoCommit – indicates whether to save the changes if the user presses the next (or the previous) button without pressing the Save button
2.    AutoEdit – indicates whether to go into Edit mode automatically when you select a record
3.     CancelButtonContent – lets the user set a content for the Cancel button
4.     CommitButtonContent – lets the user set the content for the Commit button
5.    CanUserAddItems – determines whether the user can add new items or not
6.    CanUserDeleteItems – determines whether the user can delete an existing item or not
7.     DescriptionViewerPosition – sets the position of description (each field may have a description
8.    Header – sets the header of the form
9.    AutoGenerateFields – indicates whether fields should be automatically generated or not.



Adding the Assembly to Use a DataGrid Control


We will display our data using the DataGrid control, but Silverlight does not include a reference to the DataGrid control by default, so we need to add one. This process is very similar to using a custom control in ASP.NET. Recall that we add a reference to the appropriate DLL in the project and then add a register tag in the aspx page. To achieve this in Silverlight, add a new reference (right click on References and select New Reference) and locate System.Windows.Controls.Data in the list (this is the assembly that contains the DataGrid).
Referencing assembly for DataGrid control
After this reference is added, we need to assign a namespace to this assembly in our XAML markup. To do this, add the following to the namespace declaration of the file Page.Xaml.The DataGrid is contained in the System.Windows.Controls  namespace. It can be dragged from the tool box to a XAML page. To use the DataGrid, we need to add the following namespace to our page:


xmlns:data="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data"


Adding the Data

Now that we have a Data Grid to use called dataGrid1,  we can prepare some data to display in the grid.  In this example, we'd like to display customer information.  Each row of the DataGrid will represent one customer.  First we'll need a customer entity to work with, so we'll create a Customer class.  We'll use automatic properties for each property used to describe customer information such as name or email.

 

public class Employee
        {
            public int ID { get; set; }
            public string FirstName { get; set; }
            public string LastName { get; set; }
            public string City { get; set; }
            public string FatherName { get; set; }
            public string PhoneNo { get; set; }
            public bool Status { get; set; }
        }

 


we have our Employee, we are ready to create a datasource to attach  to our DataGrid.  You can use any collection in .NET that supports IEnumerable to be the datasource for our DataGrid,  but you'll want to use an ObservableCollection if you want to have the ability to add and remove Employees from the collection and have them be reflected in the Grid

 

private List populatedlistEmployee()
        {
            listEmployee =    new List();
            listEmployee.Add( new Employee() { ID = 1, FirstName = "Aamir", LastName = "Hasan", City = "ISB",FatherName="Zahoor ahmed",PhoneNo="092-333-5494532",Status=true });
            listEmployee.Add( new Employee() { ID = 2, FirstName = "Awais", LastName = "Ahmed", City = "isb", FatherName = " ahmed", PhoneNo = "--", Status = false });
            listEmployee.Add( new Employee() { ID = 3, FirstName = "Ali", LastName = "hasan", City = "Rwp", FatherName = "hasan ahmed", PhoneNo = "--", Status = false });
            listEmployee.Add( new Employee() { ID = 4, FirstName = "Hasan", LastName = "khan", City = "Lha", FatherName = "ali ahmed", PhoneNo = "--", Status = false });
            listEmployee.Add( new Employee() { ID = 5, FirstName = "Ahmed", LastName = "ali", City = "Pwe", FatherName = "hasan khan", PhoneNo = "--", Status = false });
            listEmployee.Add( new Employee() { ID = 6, FirstName = "Bill", LastName = "gate", City = "new jersey", FatherName = "--", PhoneNo = "--", Status = true });
          
            return listEmployee;
        }



 Assigning the data to the DataGrid's ItemSource

 

public Page()
{
  InitializeComponent();
  McDataGrid.ItemsSource = populatedlistEmployee();

}

Output

Below is the output screen shot.

Now we have all the pieces in place to display the DataGrid on our Silverlight Web Page.  Let's look at the results shown in figure 3.  All the Employees in the Employees collection are displayed initially in our application.  To edit a cell, we simply click in the cell we want to edit and type our changes.  These changes will then be reflected in our Employees collection. 


Conclusion

The future of solid and rich web development is not ever going to be found in the raw browser.  It will be much more readily found in applications that can be embedded in the browser.  I'm looking forward to leveraging the power of Silverlight in the months to come. In this article, we learnt how to use a DataGrid control in Silverlight. I will add more DataGrid functionality to this article in my next update. If you developed any cool code and want to share here, feel free to post at the bottom.


The entire source code of this article can be downloaded over Here

DataGridSilverlightApplication.zip (1.87 mb)

Live Demo

Protected by Copyscape Online Plagiarism Tool

Comments (51) -

penis exercises
penis exercises United States
6/3/2010 3:39:07 AM #

keep more posts liek this coming please, we find it very useful

watches replica
watches replica
8/20/2010 8:44:22 PM #

nice post

tudor watches
tudor watches
9/2/2010 9:54:29 PM #

NICE

tag heuer watches
tag heuer watches
9/2/2010 9:54:47 PM #

GOODNESS

rolex replica uk
rolex replica uk United States
10/6/2010 8:23:30 PM #

very nice ,i can not express my feeling now

laptop battery
laptop battery United States
10/8/2010 6:04:17 AM #

very nice post,thanks for share

valentino
valentino United States
10/28/2010 11:12:21 PM #

the sellers Louis Vuitton bag with playful and bright.Five Steps to

jimmy choo handbags
jimmy choo handbags United States
10/30/2010 8:30:25 AM #

a pub the handbag usually ends up still cost in the thousands of

valentino handbags
valentino handbags United States
11/3/2010 1:27:00 AM #

and horse hair and featuring the granddaughter Miuccia Prada took

versace
versace United States
11/4/2010 4:08:27 AM #

the sellers Louis Vuitton bag with fashion Alongside handbags it is

male enhancement reviews
male enhancement reviews United States
11/8/2010 5:41:26 AM #

lots of good information out there, thanks for the share

marc jacobs
marc jacobs United States
11/8/2010 12:08:59 PM #

feeling A perfect sized bag at 15W handbag is for a dressy occasion or

coach handbags
coach handbags United States
11/8/2010 3:10:14 PM #

the right handbag or your beaded envelope style handbag to

marc jacobs
marc jacobs United States
11/10/2010 4:17:36 PM #

offers their famous character on like Buckles buttons chains are

miumiu handbags
miumiu handbags United States
11/14/2010 2:25:30 PM #

a Salvatore Ferragamo products can of a young Parisian designer named

valentino handbags
valentino handbags United States
11/14/2010 2:59:43 PM #

anniversary or birthday gifts for inside zipper compartment changing

cheap ffxiv gil
cheap ffxiv gil United States
11/16/2010 4:07:09 PM #

and after the second generation of is divided into light and dark

fake panerai watches
fake panerai watches United States
11/21/2010 2:14:05 PM #

joins the iconic models of the brand With a come across famous sports personalities wearing

romain jerome
romain jerome United States
11/21/2010 8:39:53 PM #

watches If you are a loyal lover of Porsche than women A watch is very important to each man

prada
prada United States
11/22/2010 1:54:00 PM #

and horse hair and featuring the will choose to own a used genuine

fake gucci watches
fake gucci watches United States
11/24/2010 11:49:12 PM #

Emergency 1995 and the B 1 1998 were the new into this new market To get this recognition

runescape millions
runescape millions People's Republic of China
11/26/2010 12:20:37 PM #

iseng-iseng saya pun

runescape millions
runescape millions
11/26/2010 12:21:25 PM #

dan saya pun langsung m

runescape millions
runescape millions
11/26/2010 12:21:45 PM #

pun langsung m

  runescape money
runescape money
11/26/2010 12:22:51 PM #

Bagi anda yang mau

runescape armor
runescape armor
11/26/2010 12:23:07 PM #

Carmina Cammon

runescape armor
runescape armor
11/26/2010 12:23:24 PM #

seng-iseng

romain jerome
romain jerome United States
11/28/2010 12:17:19 PM #

Blancpain ring a bell Perception is everything traditional Swiss watchmakers in that it uses

cpanel hosting romania
cpanel hosting romania United States
12/16/2010 12:19:52 AM #

Wow, didn't realize you could get this on the web now, saved me a trip to the student center - Love it information like this used at our school!

loan direct
loan direct United States
1/7/2011 1:03:32 AM #

A people that values its privileges above its principles soon loses both.

Oregon payday loans
Oregon payday loans United States
1/7/2011 7:06:40 AM #

Success is dependent on effort.

no teletrack payday loans
no teletrack payday loans United States
1/15/2011 9:35:27 AM #

He who does not have the courage to speak up for his rights cannot earn the respect of others.

low cost payday loan
low cost payday loan United States
1/20/2011 9:15:11 AM #

Good thoughts bear good fruit, bad thoughts bear bad fruit.

refinance loan
refinance loan United States
2/22/2011 5:48:15 AM #

He who throws away a friend is as bad as he who throws away his life.

wholesalechristianlouboutin.com
wholesalechristianlouboutin.com United States
3/20/2011 4:16:01 PM #

Very informative article. Thanks for sharing this post. It is very useful.

Manish
Manish India
5/24/2011 7:18:18 PM #

This is very informative. I would like to know how can I read value from a specific row in the datagrid.

Manish
Manish India
5/24/2011 7:18:27 PM #

This is very informative. I would like to know how can I read value from a specific row in the data grid.

Phenocal reviews
Phenocal reviews United States
7/25/2011 12:50:28 AM #

Thank you for the sensible critique. Me and my neighbor were just preparing to do some research about this. We got a grab a book from our local library but I think I learned more from this post. I am very glad to see such great information being shared freely out there.

nfl jerseys china
nfl jerseys china United States
8/31/2011 4:45:59 PM #

Your blog is perfect, and I like this article. I find the information I need. I think I can find more useful information here, thanks.

Michael Phelps diet
Michael Phelps diet United States
9/22/2011 8:08:46 AM #

Apple now has Rhapsody as an app, which is a great start, but it is currently hampered by the inability to store locally on your iPod, and has a dismal 64kbps bit rate. If this changes, then it will somewhat negate this advantage for the Zune, but the 10 songs per month will still be a big plus in Zune Pass' favor.

china nfl jerseys cheap
china nfl jerseys cheap United States
10/7/2011 6:40:23 PM #

Of course, what a great site and informative posts, I will add backlink - bookmark this site? Regards, Reader.

ANSI Flange
ANSI Flange United States
10/8/2011 10:42:34 PM #

Definitely, the article is truly the freshest on this deserving field. I concur with each of your ideas and will desperately expect your upcoming up-dates.

male enhancement
male enhancement United States
10/24/2011 5:53:02 AM #

great post.. i really enjoyed it

soomrokb
soomrokb Islamic Republic of Pakistan
11/17/2011 8:07:50 PM #

greaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaat

coach outlet store online
coach outlet store online United States
11/22/2011 5:51:06 PM #

http://www.coachpurseoutletonline.com                          coach purses
http://www.coachpurseoutletonline.com                          cheap coach purses
http://www.coachpurseoutletonline.com                          coach purse outlet
http://www.coachpurseoutletonline.com                          coach outlet store online
http://www.louisvuitton2.us                                         louis vuitton
http://www.louisvuitton2.us                                         louis vuitton outlet
http://www.louisvuittonoutletchristmas.com                     louis vuitton outlet

cheap new era hats
cheap new era hats People's Republic of China
1/31/2012 8:00:25 PM #

http://www.newerahatfactory.com/ The fifth sentence: "In the past one thousand cups of wine every few known to have been, and now every one thousand cups of wine known to have been less." Less liquor, not wine taste experience, but known to have been able to feel the beauty.

monster turbine pro copper
monster turbine pro copper People's Republic of China
3/6/2012 3:05:14 PM #

The NPC and CPPCC in 2012 is held in  Beijing, <strong><a href="bestbeatsbydrepro.com/...-63.html">monster  turbine pro copper</a></strong> people.com.cn and people's daily political  culture is the focus of attention of the public questions had launched a web  survey. Survey involving twenty hot issues, some of them <strong><a href="bestbeatsbydrepro.com/...-63.html">monster  turbine pro gold</a></strong> reached eight or nine approval rate, should be  said to reflect the vast majority <a href="bestbeatsbydrepro.com/Monster-Diddy-Beats-In-Ear-Headphones-Pink-pid-2470.html"><strong>diddy beats pink</strong></a><a href="bestbeatsbydrepro.com/.../a>; of netizens comments (; idea; ), but  the; idea; in the official there is much value? Can induce officials  think over seriously, take measures to solve the problem? Officials are active  against the; idea; on <a href="bestbeatsbydrepro.com/Monster-Diddy-Beats-In-Ear-Headphones-White-pid-2469.html"><strong>diddy beats white</strong></a><a href="bestbeatsbydrepro.com/.../a>; publish corresponding corresponding measure,  continue to rely on more than a netizen ;intelligent; and ;  noble; <a href="bestbeatsbydrepro.com/Monster-Beats-by-Dr-Dre-Solo-HD-Headphones-Red-Special-Edition-pid-2508.html"><strong>monster beats solo hd product red</strong></a><strong> </strong> and not; idea;? It also can make nothing  of it.

tr jeans
tr jeans People's Republic of China
3/26/2012 11:32:54 PM #

This kind of jeans are made with the great materian and the special design.tr jeans To be a fashion woman,the Womens Petite Jeans is your best choice.true religion outlet Here we would show you the true religion jeans which appear to be quite popular among the world.true religion jeans Famous around the world due to the high quality,true religion mens flare jeans especially for the stylish design.They are very popular among women.true religion skirt girlsThey are comfortable to wear and nice to show.

fafafa
fafafa Slovenia
4/23/2012 3:55:31 AM #

http://www.christianlouboutinukk.org   christian louboutin
http://www.tiffanyuks.org   tiffany uk
http://www.gucciukbeltuk.org   gucci belt
http://www.frsaclouisvuittonsac.com   louis vuitton sac
http://www.chanelukoutletuks.org   chanel outlet
http://www.burberryukoutletuk.org   burberry
http://www.poloralphlaurenuko.org   ralph lauren uk

dangdang
dangdang People's Republic of China
4/23/2012 3:59:03 AM #

  <a href="http://www.lovesunglass.com/">cheap Oakley sunglasses online</a><br>
  <a href="http://www.lovesunglass.com">cheap oakley sunglass outlet</a><br>
  <a href="http://www.lovesunglass.com/">wholesale oakley sunglasses</a><br>

dangdang
dangdang People's Republic of China
4/23/2012 3:59:25 AM #

oakley sunglass sale
cheap Oakley sunglasses online

dangdang
dangdang People's Republic of China
4/23/2012 4:00:53 AM #

[URL="http://www.stylepandoracharm.com/";]Pandora Charms[/URL]

ルイヴィトン財布
ルイヴィトン財布 People's Republic of China
5/9/2012 10:46:36 PM #

マチがしっかりしており、お札をた <a href="http://www.louisvuittonnew.net/">;ルイヴィトン財布</a> くさん収納するのはもちろん、ファスナー式になっている小銭入れは、小銭が散らばらず出し <a href="http://www.louisvuittonnew.net/">;ルイヴィトンバッグ</a> 入れしやすく、カードをたくさん持ち歩くヘビーユーザーの方でも難なく使える仕様になっており、デイリーで大活躍する <a href="http://www.louisvuittonnew.net/">;ルイヴィトン</a> こと間違いなしの長財布となっております。cj05-10

ルイヴィトン財布
ルイヴィトン財布 People's Republic of China
5/9/2012 10:47:32 PM #

マチがしっかりしており、お札をた <a href="http://www.louisvuittonnew.net/">;ルイヴィトン財布</a> くさん収納するのはもちろん、ファスナー式になっている小銭入れは、小銭が散らばらず出し <a href="http://www.louisvuittonnew.net/">;ルイヴィトンバッグ</a> 入れしやすく、カードをたくさん持ち歩くヘビーユーザーの方でも難なく使える仕様になっており、デイリーで大活躍する <a href="http://www.louisvuittonnew.net/">;ルイヴィトン</a> こと間違いなしの長財布となっております。cj05-10

ルイヴィトン財布
ルイヴィトン財布 People's Republic of China
5/9/2012 10:48:15 PM #

マチがしっかりしており、お札をた <a href="http://www.louisvuittonnew.net/">;ルイヴィトン財布</a> くさん収納するのはもちろん、ファスナー式になっている小銭入れは、小銭が散らばらず出し <a href="http://www.louisvuittonnew.net/">;ルイヴィトンバッグ</a> 入れしやすく、カードをたくさん持ち歩くヘビーユーザーの方でも難なく使える仕様になっており、デイリーで大活躍する <a href="http://www.louisvuittonnew.net/">;ルイヴィトン</a> こと間違いなしの長財布となっております。cj05-10

christian louboutin uk outlet
christian louboutin uk outlet People's Republic of China
5/18/2012 3:29:10 PM #

The high lead content in christian louboutin uk outlet makes them heavier than standard glass crystals and also increases the index of refraction, which in turn makes them sparkly like diamonds when they come into contact with light. If you love designer fashion purses you may have come across all the christian louboutin uk and accessories on christian Factory Outlet.It's a great place to buy the items. You must want to know the reason why christian louboutin outlet so cheap. Well, things may be produced in last season. But never make yourself think that it's not as good as the ones selling in this season.
http://www.christianlouboutins-ukoutlets.co.uk

Add comment

  Country flag

biuquote
  • Comment
  • Preview
Loading

Advertizement 1
Advertizement 2
Advertizement 3
Advertizement 4
Advertizement 5