I'm using datagrid from infragistic, I want when people change my datagrid, and click submit button, the database will be updated with the change, but I don't know hot to do that. Could anyone help me ? Where I can find the tutorial or other reference to
learn using infragistic control ? I have seen the manual but it doesn't give enough explanantion. for me. I;ve tried this and it gives error after postback
Infragistics has their own forum that would be a better place to post this, because there are a lot more experienced people there to help with your questions that have a lot of experience with the framework.
Brian
"Trust in the Lord and do what is good; dwell in the land and live securely. Take delight in the Lord, and He will give you your heart's desires" (Psalm 37: 3-4).
OK, I've used the windows version (haven't had a chance to use the web version yet), and I can tell you that their controls use a lot of events, and there may be a different one to suit your needs. Check this out:
http://help.infragistics.com/NetAdvantage/NET/2007.2/CLR2.0/ and find UltraWebGrid, and dig down through the events, and see which one meets your needs.
Brian
"Trust in the Lord and do what is good; dwell in the land and live securely. Take delight in the Lord, and He will give you your heart's desires" (Psalm 37: 3-4).
marcadian
0 Points
3 Posts
Infragistic UltrawebGrid
Sep 26, 2007 06:09 AM|LINK
I'm using datagrid from infragistic, I want when people change my datagrid, and click submit button, the database will be updated with the change, but I don't know hot to do that. Could anyone help me ? Where I can find the tutorial or other reference to learn using infragistic control ? I have seen the manual but it doesn't give enough explanantion. for me. I;ve tried this and it gives error after postback
protected void UltraWebGrid1_UpdateGrid(object sender, UpdateEventArgs e)
{
foreach (UltraGridRow row in e.Grid.Rows)
e.Grid.UpdateDBRow(row);
}
bmains
All-Star
29116 Points
5886 Posts
MVP
Re: Infragistic UltrawebGrid
Sep 26, 2007 11:47 AM|LINK
Hey,
Infragistics has their own forum that would be a better place to post this, because there are a lot more experienced people there to help with your questions that have a lot of experience with the framework.
"Trust in the Lord and do what is good; dwell in the land and live securely. Take delight in the Lord, and He will give you your heart's desires" (Psalm 37: 3-4).
marcadian
0 Points
3 Posts
Re: Infragistic UltrawebGrid
Sep 28, 2007 07:36 AM|LINK
thx, i've posted it there :D but i still hope that someone here can answer my question.
bmains
All-Star
29116 Points
5886 Posts
MVP
Re: Infragistic UltrawebGrid
Sep 28, 2007 11:57 AM|LINK
OK, I've used the windows version (haven't had a chance to use the web version yet), and I can tell you that their controls use a lot of events, and there may be a different one to suit your needs. Check this out: http://help.infragistics.com/NetAdvantage/NET/2007.2/CLR2.0/ and find UltraWebGrid, and dig down through the events, and see which one meets your needs.
"Trust in the Lord and do what is good; dwell in the land and live securely. Take delight in the Lord, and He will give you your heart's desires" (Psalm 37: 3-4).