hi i am using following code in code behind to save entered record in ultrawebgrid...
{
cell1 = dr.Cells[0].Value.ToString();
----------> here on specific value check on cell1 i want to select that row cell how????????
}
Hello,
You can use the property Selected =true.
In your case: dr.Selected = true;
Hope this help.
no its not working....
it always select last row entered last cell.....
Also you can take a look at links below:
Samples: http://samples.infragistics.com/2008.3/WebFeatureBrowser/Default.aspxHelps: http://help.infragistics.com/NetAdvantage/NET/2008.3/CLR3.5/
Hope this helps
You can use the property SelectTypeRowDefault for multiple selection.
ASPX:<DisplayLayout SelectTypeRowDefault=Extended >
C#: protected void Page_Load(object sender, EventArgs e) { UltraWebGrid1.DisplayLayout.SelectTypeRowDefault = SelectType.Extended; }
Also you can take a look at the link below:http://news.infragistics.com/forums/p/2165/21881.aspx#21881Hope this helps.