-
Hello, I'm trying to sort a GridView by a property of a child object. I'm able to successfully set the DataField of a BoundField to the child column ("Application.Name"), but this doesn't work for sorting. How would I go about accessing this child property in the ApplySort method...
-
Hi all, This seems like a very simple question, but searching for 'like' isn't very helpful and searching wildcards for csla isn't coming up with any usable results. Basically, I would like to get business objects back that partially match a search term. For instance, if a user enters...
-
Hi, I need some help with EditableRootListBase class binding issue. I have EmployeeAccountList binded to DataGridView used on a Windows Forms. Then When I change some data and try save then I get an exception: {"Edit level mismatch in AcceptChanges"} I guess the problem is with the binding...
-
I have a CSLA list class that is inherited from: BusinessListBase Now I wan't to pass this list somehow to crystal report document. So I have tried this: reportDocument1 . SetDataSource ( cslaListOfObjects ); But I get error that crystal report can't receive nullable parameters. And also when...
-
I have a .Net 4 solution using Silverlight 5 and CSLA 4.3. The included projects: - MyProject (silverlight project that contains silverlight screens) - MyProject.Web (WCF project) - Library (contains csla business objects. Referenced only by MyProject.Web) - Library.Sl (contains links to existing business...
-
First of all i must say i am not a CSLA programmer, im a web programmer with the mandate to convert a part of a "winform CSLA 1.0" application to an ASP.NET application using the same core as the winform app (and i should mention i am sorry for the bad english my french sometimes takes over...
-
Dear Sir, I am trying to use ASP.NET 2.0 in a winform application. Because I don’t need create a membership db and can use existing membership API. Below is my custom code for Principle and Identity, it looks works. if you are free, could you please give a look, I wonder to know whether I am in...
-
I have a ListView (ROL) and DetailsView( BO). in my Detailsview have a Delete Button that invoke BO.Delee method directly. according to http://www.lhotka.net/weblog/IAmWorkingOnMyUsingCSLANET30EbookAndWroteSomeContentThatIDontThinkImGoingToUseInTheBook.aspx notify the ROL the Add and Update. but how...
-
I have a business object and a corresponding database table called Role. In this table I am preloading two default records. The first is named "Administrators" and second is named "Users". I want to allow people to add, edit, and delete roles, except for these default ones. I was...
-
I am working with an MVC 3 application using CSLA 4.0, and I have set in the global.asax to use the CslaModelBinder. I have a top level object that derives from BusinessBase<T> (I will call it Labor), and that object has a child collection (LaborLogList) that derives from BusinessListBase<T>...