Browse By Tags

  • Enumerating Lists in .NET

    Below is a small snippet of code that shows how Lists can be enumerated within code. I needed to carry out a task that would cycle through the fields of a List block allowing me to set some properties. The code assumes the following usings using…
  • Customizing the FilterBox (FilterScreen) and the List (ResultsGrid) in a ListPage Class

    In this article I would like to consider the customization of the both the FilterBox (aka FilterScreen) and the List (aka ResultsGrid) used in a ListPage class. I have written about the use of the ListPage class previously. Creating a ListPage that…
  • Creating a ListPage that can be Used in Multiple Contexts

    When using the SDK Entity template to quickly create a set of classes to support a custom entity in Sage CRM. It only mentions one records context within the constructor. These are the properties FilterByField FilterByContextId The following code…
  • ListPage not filtering from DefaultValue of FilterBox field

    When running a page built from the ListPage class, the list does not filter when you run the page when using DefaultValue set in a FilterBox screen field. Example, in the pers_status field of the FilterBox OnCreate is DefaultValue="Active"; The list shows…
  • Export to Excel from a List in .Net

    Help! I need to export a list from a custom entity. The custom entity's list page was generated using .net (RunListPage). I found an example on the community on how to do this with an asp page. However, I cannot find any assistance in doing this in…
  • . net lists not filtering based on company

    Hoping someone can help. I appear to be having some strange behavior in my system and I am not sure why. Lists that were created using .net are showing all records in the system versus just the records for the company record I am on. The strange thing…
  • dot net list won't go to next page.

    Hi, My dot net codes are like below: public class InventorySummaryPage : Web { public override void BuildContents() { try { Record _RecordInventory = FindCurrentRecord("Inventory"); GetTabs(); VerticalPanel _vp = new VerticalPanel(); _vp…
  • Unable to create specialized list tab off one custom entity to another

    I have a two custom entities: one is a primary called 'Job' , the other is a secondary called Bid2WinUserFields. Both entities store their parent Opportunity ID. We have a .Net DLL tab that displays the Bid2WinUserFields as a list tab off the Opportunity…