diff --git a/src/table/tableview/examples/table-view-basic.js b/src/table/tableview/examples/table-view-basic.js
index 57005ad5d..72dc13000 100644
--- a/src/table/tableview/examples/table-view-basic.js
+++ b/src/table/tableview/examples/table-view-basic.js
@@ -16,10 +16,20 @@
*
* @param {object} dtOptions Optional angular-datatables DTOptionsBuilder configuration object. See {@link http://l-lin.github.io/angular-datatables/archives/#/api angular-datatables: DTOptionsBuilder}
* @param {array} items Array of items to display in the table view.
- * @param {array} columns Array of table column information to display in the table's header row
+ * @param {array} columns Array of table column information to display in the table's header row and optionaly render the cells of a column.
*
*
.header - (string) Text label for a column header
*
.itemField - (string) Item field to associate with a particular column.
+ *
.htmlTemplate - (string) (optional) id/name of an embedded ng/html template. Ex: htmlTemplate="name_template.html". The template will be used to render each cell of the column.
+ * Use handleColAction(key, value) in the template to call the colActionFn callback function you specify. 'key' is the item attribute name; which should equal the itemFld of a column.
+ * 'value' is the item[key] value.
+ *
+ *
+ *
+ *
.colActionFn - (function) (optional) Callback function used for the column. 'value' is passed as a paramenter to the
+ * callback function.
*
* @param {array} actionButtons List of action buttons in each row
*
.onCheckBoxChange - ( function(item) ) Called to notify when a checkbox selection changes, default is none
*
.itemsAvailable - (boolean) If 'false', displays the {@link patternfly.views.component:pfEmptyState Empty State} component.
*
.showCheckboxes - (boolean) Show checkboxes for row selection, default is true
-*
+ *
* @param {object} dtOptions Optional angular-datatables DTOptionsBuilder configuration object. See {@link http://l-lin.github.io/angular-datatables/archives/#/api angular-datatables: DTOptionsBuilder}
* @param {array} items Array of items to display in the table view.
- * @param {array} columns Array of table column information to display in the table's header row
+ * @param {array} columns Array of table column information to display in the table's header row and optionaly render the cells of a column.
*
*
.header - (string) Text label for a column header
*
.itemField - (string) Item field to associate with a particular column.
+ *
.htmlTemplate - (string) (optional) id/name of an embedded ng/html template. Ex: htmlTemplate="name_template.html". The template will be used to render each cell of the column.
+ * Use handleColAction(key, value) in the template to call the colActionFn callback function you specify. 'key' is the item attribute name; which should equal the itemFld of a column.
+ * 'value' is the item[key] value.
+ *
+ *
+ *
+ *
.colActionFn - (function) (optional) Callback function used for the column. 'value' is passed as a paramenter to the
+ * callback function.
*
* @param {array} actionButtons List of action buttons in each row
*