-
Fistly, on the good note, I just wanted to say that netTiers is really great and does save lots of work. However, there is one thing I can't handle and hope that the community can help figure this. I have done some searching and (my bad, possibly) can't find an easy solution for my problem. I...
-
Hi, I’m trying to get a GridView to sort on a foreign key column using NetTiers. This is not supported on the EntityGridView on HyperLinkField Columns as well. To explain a bit further on what I’m trying to achieve I’ll take the above listed example. Table Structure [Customers] CustomerID CompanyName...
-
Hey Board, I just spent 20 minutes writing out a post and hit the back button... *bangs head on desk*... Sorry this one is shorter, but I have to get some sleep! My question pertains to the following table structure: http://www.photolava.com/view/cj39.html Quick Explanation: Members are people within...
-
Hi all ! First, thanks for this wonderful that is .NetTiers ! It saved my days of work ! I have a question about the generated select methods and their use in strongly type datasources. I understood that Find is more secure than GetPaged (or is it GetAll) because it uses prepared statements and thus...
-
This has been a huge problem for me and from what I can tell, a lot of us. Unless you are using the GetPaged method, the EntityGridView ignores the sorting event. I started to throw out the NT grid, but then it dawned on me... 1. Setup your grid and datasource just as you usually would, except turn off...
-
I am trying to sort using an EntityGridView, but it is not working. Click on column headers refreshes the page, but sorting does not occur. Can anybody help? Here is my markup: <data:EntityGridView AllowExportToExcel="false" ID="gvAppointments" DataKeyNames="ID" runat="server" AutoGenerateColumns...
-
Hi! In EntityPropertyComparer.cs, we find the following method: public int Compare(object x, object y) { object a = x.GetType().GetProperty(PropertyName).GetValue(x, null); object b = y.GetType().GetProperty(PropertyName).GetValue(y, null); if ( a != null && b == null ) return 1; if ( a == null...
-
Hi! Thanks Robert! I had thought about this, but it would be a last resort solution for us, since we use look-up tables everywhere and we need this in every GridView. Do Strongly Typed Data Sources support sorting on complex objects? The Data Source would need to perform a JOIN internally I guess. Is...
-
Hi! I would like to know whether there is a trick to sort a GridView based on a column that contains IDSource information. For example, if I have a GridView with a column populated using Eval("AddressIDSource.StreetName"). Is it possible to sort the GridView based on the Street Name? Cheers! JF
-
how to keep the sorting functionality on EntityGridView working when using the builder with the TList? Always get the err messafe that the datasource doenst support sorting. THANKS. OQ