(sep)
| 60 | } |
| 61 | |
| 62 | getValue (sep) { |
| 63 | let list = [], |
| 64 | values = [], |
| 65 | greedy = this.props.greedy; |
| 66 | forEach(this.refs, function (ref) { |
| 67 | ref.getChecked(list, greedy); |
| 68 | }); |
| 69 | |
| 70 | list.forEach(function (d) { |
| 71 | values.push(d.$value); |
| 72 | }); |
| 73 | |
| 74 | if (sep === undefined) { |
| 75 | sep = this.props.sep; |
| 76 | } |
| 77 | if (sep) { |
| 78 | values = values.join(this.props.sep); |
| 79 | } |
| 80 | return values; |
| 81 | } |
| 82 | |
| 83 | setValue (value) { |
| 84 | value = this.formatValue(value); |
nothing calls this directly
no test coverage detected
searching dependent graphs…