Ignore Columns
To ignore columns in the widget, you must use the ignoredColumns property.
The following screenshots show a sample widget in the CTModelHouse mobile application. When you expand the row, other hidden columns such as Available Balance, Currency and so on display.
The following is a sample code snippet for ignoring a column in the widget:
CWEH.registerHandler('CT_ACC_SUMMARY_WGT', CWEC.CTAPPBEFOREINITIALIZE, function() { this.ignoredColumns = ['ACCOUNT_TYPE']; }); //Here, CT_ACC_SUMMARY_WGT is the Widget ID and CTAPPBEFOREINITIALIZE is the event ID.
When the sample code is used, the Account Type column is ignored in the widget. The important thing to note here is that the ignored Account Type column is not displayed when you expand the row as shown in the following screenshot.