DRY Principles

Don’t Repeat Yourself is a common software design principle that we employ at Research Blocks. Whenever you find yourself doing a copy/paste of code and not changing much (if any) of the pasted code, consider creating a utility function or a new component to do the work. Here is an example from version 1.67 Front […]

Table Sorting and Filters

OmniBlocks® extends the default Ant Design table interface to provide managed features including sorting and filters for columns. Example An example of a column array entry that sets up the “SKU” column from our new MMR table interface… title: ‘SKU’,dataIndex: ‘produced_cat_num’,searchable: true,defaultFilteredValue: filter.produced_cat_num,sorter: Sorter.DEFAULT, Table Column Properties searchable Set to true puts the search icon on the […]