From 280f8015d06af1f41a3ef12e8300801c7a5e0d54 Mon Sep 17 00:00:00 2001 From: AviZi Date: Fri, 9 Jun 2017 02:39:56 +0300 Subject: [SDC-29] Amdocs OnBoard 1707 initial commit. Change-Id: Ie4d12a3f574008b792899b368a0902a8b46b5370 Signed-off-by: AviZi --- .../nfvo-components/table/SelectActionTableCell.jsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 openecomp-ui/src/nfvo-components/table/SelectActionTableCell.jsx (limited to 'openecomp-ui/src/nfvo-components/table/SelectActionTableCell.jsx') diff --git a/openecomp-ui/src/nfvo-components/table/SelectActionTableCell.jsx b/openecomp-ui/src/nfvo-components/table/SelectActionTableCell.jsx new file mode 100644 index 0000000000..2664c8e944 --- /dev/null +++ b/openecomp-ui/src/nfvo-components/table/SelectActionTableCell.jsx @@ -0,0 +1,20 @@ +import React from 'react'; +import SelectInput from 'nfvo-components/input/SelectInput.jsx'; + +const SelectActionTableCell = ({options, selected, disabled, onChange, clearable = true, placeholder}) => { + return ( +
+ onChange(option ? option.value : null)} + clearable={clearable} + options={options} /> +
+ ); +}; + +export default SelectActionTableCell; -- cgit 1.2.3-korg