-
Hi, I have a webpage with a grid on it. This grid is bound to a typed datasource. I want to be able to search on a number of properties on this datasource (using an 'OR'-like query), but the results returned must belong to the currently logged on user (so, an 'AND'-query like 'AND ownerid = ....'). In...
-
I have separate controller classes for accessing the ServiceLayer Componentlayer. Each controller class simply has a shared method that returns the necessary information from within the servicelayers. Previously I have kept these under the GUI project in a separate folder. It has come to the point that...
-
Alright, from what I can tell, when using the Typed Data Sources, adding new records works as expected without any additional code. The updates and deletes required special handlers... here's what I had to do. protected void UltraWebGrid1_UpdateRowBatch(object sender, RowEventArgs e) { if (!(e.Row.Cells...
-
Hey everyone, I know there are a lot of mixed feelings/experiences using the Infragistics controls with .netTiers on these forums, but there really isn't any demonstrated examples of how (if possible) to make all of it work together. I am trying to create a simple UltraWebGrid that uses a TypedDataSource...
Posted to
.netTiers - General Support
(Forum)
by
Lusid
on
03-24-2007
Filed under: .netTiers, Typed DataSource Controls, CRUD, EntityDataSource, ObjectDataSource, Infragistics, strongly typed datasource, Web project, C#, .net 2.0
-
I've seen quite a few posts here where people have no problems binding Infragistics controls to their NetTiers layer. I've been able to do this programmatically in the code, but then I lose the design-time capabilities of the UltraGrid designer in a WinForms based application. Take for example my normal...
-
I think I'm missing something really basic here. I have an entity gridview bound to a typed datasource- this is the generated admin page using 13/Nov/06 nightly templates. The entity has multiple foreign keyed relations. Nothing happens when I select delete. Its obviously choking on the foreign key colections...
-
Hi John (and Swin), I did try that, but it seems that with Entity Tracking turned on, it just rebound to the originally retrieved data. I set the EnableCaching property of the DataSource to false, turned off ViewState, everything, but I believe it still returned cached data. Values in the database did...
-
Done a quick search on MultiFormView on forums and Wiki. Just wanted to know what the MultiFormView does over the FormView?. I'm aware of the TemplatePath which is really cool and should be incorprated into all templated .net controls. Does it do anything else different? I could use this control all...
-
I have a repeater on a webpage hooked up to a provider datasource (the one generated for my table in the .Web project). I've been using GetAll as the select method but want to page the data. I know repeaters don't page information but I need a better layout than what GridView will give me. So I tracked...
-
Yes, this is correct, this the just following the archicecture from microsoft with the DataSource controls. For every datasource, you have a View, which represents the current view for the data you are working with. Don't confuse this view with an actual sql server view. You can find more info in...