-
Notifications
You must be signed in to change notification settings - Fork 69
Open
Description
How can I get the selected value?
I have tried some way:
var comboTree1;
jQuery(document).ready(function($) {
comboTree1 = $('#justAnInputBox').comboTree({
source : SampleJSONData,
isMultiple: true,
cascadeSelect: true,
collapse: true,
selectableLastNode: true,
selected: selectedItem
});
var selectedTitles = comboTree1.getSelectedItemsTitle();
console.log('selectedTitles: ' , selectedTitles);
var selectedIds = comboTree1.getSelectedItemsId();
console.log('selectedIds: ' , selectedIds);
});
Getting error as:
jQuery.Deferred exception: comboTree1.getSelectedItemsTitle is not a function TypeError: comboTree1.getSelectedItemsTitle is not a function
Is there any way to get the selected value/ids ?
Metadata
Metadata
Assignees
Labels
No labels