Posted in Btomic on June 09, 2010 by Ross Lloyd
This post briefly shows how to implement a popup in the Btomic framework.
A Btomic popup can be used to obtain data using a seperate child page without moving away from the current page, thus keeping the layout simple and manageable. The parent page will be greyed out and focus will fall on the popup; always returning to the parent when closing. Using Btomic.Classes.PopupClasses makes this process really easy, managing all the appropriate javascript for you.
Posted in Btomic on June 09, 2010 by Ross Lloyd
Btomic is built on top of the Microsoft .NET framework, leveraging only those elements that are best suited for building web based enterprise systems that work with large volumes of data and require business process management.

Posted in Btomic on September 14, 2009 by Administrator
The table object refers to a class which implements properties and methods which relate to a specific database table. The table object must inherit from the BaseTableObject class. The BaseTableObject implements various methods, some of which allow the table object to be serialized to cache and deserialized from cache. This enables us to cache the current “active” record to memory, thus minimising unnecessary calls to the database.
A form object refers to a class which contains an instance of the table object. The form object must inherit from Btomic.Forms.BaseForm