Click here to Skip to main content
15,904,023 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have rad tree list in different tabs and rad tab strip with different tabs.
I need to drag a column value to another(different) tab. the drag and drop is everywhere to everywhere. All tabs has different pages.
can anyone help me with a solution.
Thanks

What I have tried:

I tried from drag and drop with one page but not able do with different tabs.
like added client settings for one tree view and some function for that.



function ItemDropped(sender, eventArgs) {
var text = $find('RadText');
if (sender != null && sender.get_dataItems().length > 0 && text.get_text() != "Enter a complete valid part number") {
var selectedIndexes = $find('BOMTree').get_selectedIndexes();
var row = selectedIndexes[0];
var item = $find('BOMTree').getItem(row);
var setPN = item._parentItem._childItems[row - 1]._data._clientDataKeyValues['Part Number'];
text.set_text(setPN);
addToHistory();
}
}
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900