Python Forum
get destination path from item from QlistWidget - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: get destination path from item from QlistWidget (/thread-11789.html)



get destination path from item from QlistWidget - faithcure - Jul-25-2018

How can i get path selected item from QlistWidget item ?


RE: get destination path from item from QlistWidget - nilamo - Jul-25-2018

http://doc.qt.io/archives/qt-4.8/qlistwidgetitem.html#text

the_item.text() maybe?


RE: get destination path from item from QlistWidget - faithcure - Jul-25-2018

(Jul-25-2018, 08:04 PM)nilamo Wrote: http://doc.qt.io/archives/qt-4.8/qlistwidgetitem.html#text the_item.text() maybe?
This is just giving name of item for me. I need selected item path from listwidget .


RE: get destination path from item from QlistWidget - nilamo - Jul-25-2018

If it's not the list item's value, then I don't know what you're referring to. What path are you looking for?