How to take correct word from filtering(list view) using with pyqt42019 Community Moderator ElectionHow do I check if a list is empty?How to randomly select an item from a list?How do you split a list into evenly sized chunks?How do I remove an element from a list by index in Python?How to make a flat list out of list of lists?How to get the number of elements in a list in Python?How to concatenate two lists in Python?How to clone or copy a list?How do I list all files of a directory?How to read a file line-by-line into a list?
What are some noteworthy "mic-drop" moments in math?
Fourth person (in Slavey language)
What Happens when Passenger Refuses to Fly Boeing 737 Max?
Things to avoid when using voltage regulators?
PTIJ: Why can't I eat anything?
Upside Down Word Puzzle
What is the likely impact of grounding an entire aircraft series?
Does "variables should live in the smallest scope as possible" include the case "variables should not exist if possible"?
Replacing Windows 7 security updates with anti-virus?
Built-In Shelves/Bookcases - IKEA vs Built
Why is Beresheet doing a only a one-way trip?
How to create a hard link to an inode (ext4)?
BitNot does not flip bits in the way I expected
Why does Captain Marvel assume the planet where she lands would recognize her credentials?
PTIJ: How can I halachically kill a vampire?
Aliens englobed the Solar System: will we notice?
How do I deal with a powergamer in a game full of beginners in a school club?
String reversal in Python
Offered promotion but I'm leaving. Should I tell?
Word for a person who has no opinion about whether god exists
Why would one plane in this picture not have gear down yet?
How are such low op-amp input currents possible?
Who deserves to be first and second author? PhD student who collected data, research associate who wrote the paper or supervisor?
Should I take out a loan for a friend to invest on my behalf?
How to take correct word from filtering(list view) using with pyqt4
2019 Community Moderator ElectionHow do I check if a list is empty?How to randomly select an item from a list?How do you split a list into evenly sized chunks?How do I remove an element from a list by index in Python?How to make a flat list out of list of lists?How to get the number of elements in a list in Python?How to concatenate two lists in Python?How to clone or copy a list?How do I list all files of a directory?How to read a file line-by-line into a list?
Here in my sample program, i want to take the item from another widget using with list view.In my autosuggestion i have list of items, those are total_list1 =["renewal form","auto renewal form","store products","store programs"].In that i want to choose "renewal form" means it automatically tacking the ""auto renewal form" item.I don't have any idea about this.Can any one please help me how to solve this program.Thank you in advance.
Given below is my code:
import sys
from PyQt4 import QtGui, QtCore
class Example(QtGui.QWidget):
def __init__(self):
super(Example, self).__init__()
self.initUI()
def initUI(self):
Box=QtGui.QHBoxLayout(self)
self.le=QtGui.QLineEdit()
self.btn=QtGui.QPushButton("s")
self.btn.clicked.connect(self.items_list)
Box.addWidget(self.le)
Box.addWidget(self.btn)
def items_list(self):
self.w=QtGui.QWidget()
vbox1 = QtGui.QVBoxLayout(self.w)
hbox1=QtGui.QHBoxLayout()
self.le_search = QtGui.QLineEdit()
se_btn1 = QtGui.QPushButton("Search")
se_btn1.clicked.connect(self.filterClicked1)
hbox1.addWidget(self.le_search)
hbox1.addWidget(se_btn1)
vbox1.addLayout(hbox1)
total_list1 =["renewal form","auto renewal form","store products","store programs"]
self.list1 = QtGui.QListView()
self.model1 = QtGui.QStandardItemModel(self.list1)
for code in total_list1:
item1 = QtGui.QStandardItem(code)
self.model1.appendRow(item1)
self.list1.setModel(self.model1)
vbox1.addWidget(self.list1)
self.w.show()
def filterClicked1(self):
self.w.close()
filter_text = str(self.le_search.text()).lower()
for row in range(self.model1.rowCount()):
if filter_text in str(self.model1.item(row).text()).lower():
self.list1.setRowHidden(row, False)
print self.model1.item(row).text(), "wordd"
self.le.setText(self.model1.item(row).text())
self.le.setCursorPosition(0)
else:
self.list1.setRowHidden(row, True)
def main():
app = QtGui.QApplication(sys.argv)
ex = Example()
ex.show()
sys.exit(app.exec_())
if __name__ == '__main__':
main()
I am selecting here "renewal form"
but i am getting the auto renewal form
python python-2.7 pyqt4
add a comment |
Here in my sample program, i want to take the item from another widget using with list view.In my autosuggestion i have list of items, those are total_list1 =["renewal form","auto renewal form","store products","store programs"].In that i want to choose "renewal form" means it automatically tacking the ""auto renewal form" item.I don't have any idea about this.Can any one please help me how to solve this program.Thank you in advance.
Given below is my code:
import sys
from PyQt4 import QtGui, QtCore
class Example(QtGui.QWidget):
def __init__(self):
super(Example, self).__init__()
self.initUI()
def initUI(self):
Box=QtGui.QHBoxLayout(self)
self.le=QtGui.QLineEdit()
self.btn=QtGui.QPushButton("s")
self.btn.clicked.connect(self.items_list)
Box.addWidget(self.le)
Box.addWidget(self.btn)
def items_list(self):
self.w=QtGui.QWidget()
vbox1 = QtGui.QVBoxLayout(self.w)
hbox1=QtGui.QHBoxLayout()
self.le_search = QtGui.QLineEdit()
se_btn1 = QtGui.QPushButton("Search")
se_btn1.clicked.connect(self.filterClicked1)
hbox1.addWidget(self.le_search)
hbox1.addWidget(se_btn1)
vbox1.addLayout(hbox1)
total_list1 =["renewal form","auto renewal form","store products","store programs"]
self.list1 = QtGui.QListView()
self.model1 = QtGui.QStandardItemModel(self.list1)
for code in total_list1:
item1 = QtGui.QStandardItem(code)
self.model1.appendRow(item1)
self.list1.setModel(self.model1)
vbox1.addWidget(self.list1)
self.w.show()
def filterClicked1(self):
self.w.close()
filter_text = str(self.le_search.text()).lower()
for row in range(self.model1.rowCount()):
if filter_text in str(self.model1.item(row).text()).lower():
self.list1.setRowHidden(row, False)
print self.model1.item(row).text(), "wordd"
self.le.setText(self.model1.item(row).text())
self.le.setCursorPosition(0)
else:
self.list1.setRowHidden(row, True)
def main():
app = QtGui.QApplication(sys.argv)
ex = Example()
ex.show()
sys.exit(app.exec_())
if __name__ == '__main__':
main()
I am selecting here "renewal form"
but i am getting the auto renewal form
python python-2.7 pyqt4
sir i updated my code with images please check once
– navya sri
Mar 7 at 8:08
i have problem with renewal form sir when i wrote renewal i want to get renewal form
– navya sri
Mar 7 at 8:15
sir break is worked exactly .Thank you
– navya sri
Mar 7 at 8:24
add a comment |
Here in my sample program, i want to take the item from another widget using with list view.In my autosuggestion i have list of items, those are total_list1 =["renewal form","auto renewal form","store products","store programs"].In that i want to choose "renewal form" means it automatically tacking the ""auto renewal form" item.I don't have any idea about this.Can any one please help me how to solve this program.Thank you in advance.
Given below is my code:
import sys
from PyQt4 import QtGui, QtCore
class Example(QtGui.QWidget):
def __init__(self):
super(Example, self).__init__()
self.initUI()
def initUI(self):
Box=QtGui.QHBoxLayout(self)
self.le=QtGui.QLineEdit()
self.btn=QtGui.QPushButton("s")
self.btn.clicked.connect(self.items_list)
Box.addWidget(self.le)
Box.addWidget(self.btn)
def items_list(self):
self.w=QtGui.QWidget()
vbox1 = QtGui.QVBoxLayout(self.w)
hbox1=QtGui.QHBoxLayout()
self.le_search = QtGui.QLineEdit()
se_btn1 = QtGui.QPushButton("Search")
se_btn1.clicked.connect(self.filterClicked1)
hbox1.addWidget(self.le_search)
hbox1.addWidget(se_btn1)
vbox1.addLayout(hbox1)
total_list1 =["renewal form","auto renewal form","store products","store programs"]
self.list1 = QtGui.QListView()
self.model1 = QtGui.QStandardItemModel(self.list1)
for code in total_list1:
item1 = QtGui.QStandardItem(code)
self.model1.appendRow(item1)
self.list1.setModel(self.model1)
vbox1.addWidget(self.list1)
self.w.show()
def filterClicked1(self):
self.w.close()
filter_text = str(self.le_search.text()).lower()
for row in range(self.model1.rowCount()):
if filter_text in str(self.model1.item(row).text()).lower():
self.list1.setRowHidden(row, False)
print self.model1.item(row).text(), "wordd"
self.le.setText(self.model1.item(row).text())
self.le.setCursorPosition(0)
else:
self.list1.setRowHidden(row, True)
def main():
app = QtGui.QApplication(sys.argv)
ex = Example()
ex.show()
sys.exit(app.exec_())
if __name__ == '__main__':
main()
I am selecting here "renewal form"
but i am getting the auto renewal form
python python-2.7 pyqt4
Here in my sample program, i want to take the item from another widget using with list view.In my autosuggestion i have list of items, those are total_list1 =["renewal form","auto renewal form","store products","store programs"].In that i want to choose "renewal form" means it automatically tacking the ""auto renewal form" item.I don't have any idea about this.Can any one please help me how to solve this program.Thank you in advance.
Given below is my code:
import sys
from PyQt4 import QtGui, QtCore
class Example(QtGui.QWidget):
def __init__(self):
super(Example, self).__init__()
self.initUI()
def initUI(self):
Box=QtGui.QHBoxLayout(self)
self.le=QtGui.QLineEdit()
self.btn=QtGui.QPushButton("s")
self.btn.clicked.connect(self.items_list)
Box.addWidget(self.le)
Box.addWidget(self.btn)
def items_list(self):
self.w=QtGui.QWidget()
vbox1 = QtGui.QVBoxLayout(self.w)
hbox1=QtGui.QHBoxLayout()
self.le_search = QtGui.QLineEdit()
se_btn1 = QtGui.QPushButton("Search")
se_btn1.clicked.connect(self.filterClicked1)
hbox1.addWidget(self.le_search)
hbox1.addWidget(se_btn1)
vbox1.addLayout(hbox1)
total_list1 =["renewal form","auto renewal form","store products","store programs"]
self.list1 = QtGui.QListView()
self.model1 = QtGui.QStandardItemModel(self.list1)
for code in total_list1:
item1 = QtGui.QStandardItem(code)
self.model1.appendRow(item1)
self.list1.setModel(self.model1)
vbox1.addWidget(self.list1)
self.w.show()
def filterClicked1(self):
self.w.close()
filter_text = str(self.le_search.text()).lower()
for row in range(self.model1.rowCount()):
if filter_text in str(self.model1.item(row).text()).lower():
self.list1.setRowHidden(row, False)
print self.model1.item(row).text(), "wordd"
self.le.setText(self.model1.item(row).text())
self.le.setCursorPosition(0)
else:
self.list1.setRowHidden(row, True)
def main():
app = QtGui.QApplication(sys.argv)
ex = Example()
ex.show()
sys.exit(app.exec_())
if __name__ == '__main__':
main()
I am selecting here "renewal form"
but i am getting the auto renewal form
python python-2.7 pyqt4
python python-2.7 pyqt4
edited Mar 7 at 8:33
navya sri
asked Mar 7 at 7:56
navya srinavya sri
1419
1419
sir i updated my code with images please check once
– navya sri
Mar 7 at 8:08
i have problem with renewal form sir when i wrote renewal i want to get renewal form
– navya sri
Mar 7 at 8:15
sir break is worked exactly .Thank you
– navya sri
Mar 7 at 8:24
add a comment |
sir i updated my code with images please check once
– navya sri
Mar 7 at 8:08
i have problem with renewal form sir when i wrote renewal i want to get renewal form
– navya sri
Mar 7 at 8:15
sir break is worked exactly .Thank you
– navya sri
Mar 7 at 8:24
sir i updated my code with images please check once
– navya sri
Mar 7 at 8:08
sir i updated my code with images please check once
– navya sri
Mar 7 at 8:08
i have problem with renewal form sir when i wrote renewal i want to get renewal form
– navya sri
Mar 7 at 8:15
i have problem with renewal form sir when i wrote renewal i want to get renewal form
– navya sri
Mar 7 at 8:15
sir break is worked exactly .Thank you
– navya sri
Mar 7 at 8:24
sir break is worked exactly .Thank you
– navya sri
Mar 7 at 8:24
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55038708%2fhow-to-take-correct-word-from-filteringlist-view-using-with-pyqt4%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55038708%2fhow-to-take-correct-word-from-filteringlist-view-using-with-pyqt4%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
sir i updated my code with images please check once
– navya sri
Mar 7 at 8:08
i have problem with renewal form sir when i wrote renewal i want to get renewal form
– navya sri
Mar 7 at 8:15
sir break is worked exactly .Thank you
– navya sri
Mar 7 at 8:24