fmui-base 2.3.9 → 2.3.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/lib/form/subForm.js +3 -0
- package/lib/react_grid/react_grid.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/lib/form/subForm.js
CHANGED
|
@@ -1111,6 +1111,9 @@ var PageHome = function (_React$Component) {
|
|
|
1111
1111
|
if (!extButtonList) {
|
|
1112
1112
|
extButtonList = [];
|
|
1113
1113
|
}
|
|
1114
|
+
if (subForm && subForm[index] && subForm[index].extButtonList) {
|
|
1115
|
+
extButtonList = subForm[index].extButtonList;
|
|
1116
|
+
}
|
|
1114
1117
|
|
|
1115
1118
|
return extButtonList.map(function (item, i) {
|
|
1116
1119
|
return _react2.default.createElement(
|
|
@@ -830,7 +830,8 @@ var MyGrid = function (_React$Component) {
|
|
|
830
830
|
_react2.default.createElement('img', { className: 'nodata t-PL10 t-PR10', src: '../../../fmui/images/home/nodata.png' })
|
|
831
831
|
)
|
|
832
832
|
)
|
|
833
|
-
)
|
|
833
|
+
),
|
|
834
|
+
t.props.extendedContent ? t.props.extendedContent : ''
|
|
834
835
|
);
|
|
835
836
|
}
|
|
836
837
|
if (item.portletCode === 'bssx') {
|