-
I am working on this application using CSLA 3.8. Its an MDI Winforms Application. This sample application uses Forms as against the winpart in the sample project trackers. I have easily implemented fetch and delete in these forms. But I have been trying without success to implement Save and Update. This...
-
Here is a Stack Trace that i got when trying to create my object When traced i saw that the exception is causing when the UI bounds the data-source to the business layer here you go at TestApp.Form1.NavBarItem1_LinkClicked(Object sender, NavBarLinkEventArgs e) at DevExpress.XtraNavBar.NavBarItem.RaiseLinkEvent...
-
Hello! I am new to the CSLA .NET and I am wondering how the CSLA business entities can be used with Web Forms UI. I am going to use CSLA 3.8 with .NET 3.5 Framework. How can I for example use validation rules from the business entity to validate multiple textboxes? How does the validation logic for example...
-
This would work in most cases. In my case I need to databind to the (non-bindable) SelectedItems for both triggers. For that i'd like to use Rockys work around: csla : InvokeMethod.MethodParameter ="{ Binding ElementName =myGrid, Path =SelectedItems}" with a dependency property 'SelectedItems'...
-
Any ideas?
-
I have a multi-part form that utilizes several user controls (ie a user control to standardize the display and entering of an address or several uc that display different parts of a business object to simplify data-entry). The problem I am having is that I am passing the binding source to the user controls...
-
It depends on what grid you're using. If you're using the stock grids, you may have to implement this yourself using SortedBindingList as a guide. AddSort / RemoveSort makes it sound like you add a sort column with each call, so it looks to me as you should be able to do it. But you'll have...