You want to add the model_handle attribute as a custom column in the OneClick list view.
<?xml version="1.0" encoding="UTF-8"?> <table idref="table-model-config"> <column-list> <column> <name>Community Name</name> <content> <attribute>0x10024</attribute> </content> <hidden-by-default>true</hidden-by-default> </column> <column> <name>Model handle</name> <content> <attribute>0x129fa</attribute> </content> <hidden-by-default>true</hidden-by-default> </column> </column-list> </table> </column-list>. For example if we previously added community name, the final xml will look as follows, with our addition in bold. <?xml version="1.0" encoding="UTF-8"?> <table idref="table-model-config"> <column-list> <column> <name>Community Name</name> <content> <attribute>0x10024</attribute> </content> <hidden-by-default>true</hidden-by-default> </column> <column> <name>Model handle</name> <content> <attribute>0x129fa</attribute> </content> <hidden-by-default>true</hidden-by-default> </column> </column-list> </table>