diff options
author | İsmail ÇAGDAŞ <ismailcagdas@gmail.com> | 2017-03-29 13:39:01 +0300 |
---|---|---|
committer | İsmail ÇAGDAŞ <ismailcagdas@gmail.com> | 2017-03-29 13:39:01 +0300 |
commit | 11827d2f4e5310ae173c1b19ad8268530754aa6a (patch) | |
tree | 53ac15ecc89b946ca16aec0cc71b9151088b5310 /dev/jquery.jtable.core.js | |
parent | 802857992844caa2cdc8fa027ff131977eaae098 (diff) | |
download | jtable-11827d2f4e5310ae173c1b19ad8268530754aa6a.zip jtable-11827d2f4e5310ae173c1b19ad8268530754aa6a.tar.gz jtable-11827d2f4e5310ae173c1b19ad8268530754aa6a.tar.bz2 |
implemented record actions dropdown plugin
Diffstat (limited to 'dev/jquery.jtable.core.js')
-rw-r--r-- | dev/jquery.jtable.core.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dev/jquery.jtable.core.js b/dev/jquery.jtable.core.js index 105f419..5f7faac 100644 --- a/dev/jquery.jtable.core.js +++ b/dev/jquery.jtable.core.js @@ -715,7 +715,10 @@ return this._getDisplayTextForDateRecordField(field, fieldValue); } else if (field.type == 'checkbox') { return this._getCheckBoxTextForFieldByValue(fieldName, fieldValue); - } else if (field.options) { //combobox or radio button list since there are options. + }else if (field.type == 'record-actions') { + return this._createRecordActionsDropdown(record, field); + } + else if (field.options) { //combobox or radio button list since there are options. var options = this._getOptionsForField(fieldName, { record: record, value: fieldValue, |