diff --git a/sample/src/welcome.html b/sample/src/welcome.html
index c447c86..5ebb6bf 100644
--- a/sample/src/welcome.html
+++ b/sample/src/welcome.html
@@ -1,7 +1,7 @@
-
+
test
diff --git a/src/elements/multiple-select.css b/src/elements/multiple-select.css
index 25b6926..1ddfbc8 100644
--- a/src/elements/multiple-select.css
+++ b/src/elements/multiple-select.css
@@ -91,6 +91,9 @@
color: #aaa;
cursor: text;
}
+.ms-container .ms-selectable-filter{
+ margin-bottom: 5px;
+}
/*
.multiple-select {
right: auto !important;
diff --git a/src/elements/multiple-select.html b/src/elements/multiple-select.html
index 35c487d..fbc8f57 100644
--- a/src/elements/multiple-select.html
+++ b/src/elements/multiple-select.html
@@ -3,24 +3,28 @@
+
-
-
+
+
${getItemDisplay(item.item)}
+
-
-
+
+
${getItemDisplay(item.item)}
diff --git a/src/elements/multiple-select.ts b/src/elements/multiple-select.ts
index de5d86c..39e9d36 100644
--- a/src/elements/multiple-select.ts
+++ b/src/elements/multiple-select.ts
@@ -46,6 +46,22 @@ export class MultipleSelect {
@bindable
displayFieldName: string = "name";
+ /**
+ * The title of the selectable left
+ * @type {string}
+ * @memberof MultipleSelect
+ */
+ @bindable
+ selectableTitle: string = "";
+
+ /**
+ * The title of the selection left
+ * @type {string}
+ * @memberof MultipleSelect
+ */
+ @bindable
+ selectionTitle: string = "";
+
private _itemsInternal: SelectableItem[] = [];
private _isAttached: boolean = false;
private _ignoreInternalSelectedItemsChanged: boolean = false;