<div dir="ltr"><div>I read up the documentation. After the changes, the widget still doesn't seem to work. Can you also please check the ui file if you are free since I have used Qt Designer first time after watching tutorials.<br><br></div><div>Regards<font color="#888888"><br></font></div><font color="#888888">Suraj Kumar Mahto</font></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Aug 16, 2021 at 2:26 AM Thomas Baumgart via Kde-finance-apps <<a href="mailto:kde-finance-apps@kde.org">kde-finance-apps@kde.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Suraj,<br>
<br>
  m_editIdSelector->currentData().toInt() != static_cast<int>(m_currentItem.idSelector())<br>
<br>
does not work, as m_editIdSelector->currentData() returns the models Qt::Display role<br>
which does not seem to be an int but a string. It might be better to use<br>
<br>
  m_editIdSelector->currentIndex() != static_cast<int>(m_currentItem.idSelector())<br>
<br>
Same here:<br>
<br>
  m_currentItem.setIdSelector(static_cast<AlkOnlineQuoteSource::IdSelector>(m_editIdSelector->currentData().toInt()));<br>
<br>
which should be<br>
<br>
  m_currentItem.setIdSelector(static_cast<AlkOnlineQuoteSource::IdSelector>(m_editIdSelector->currentIndex()));<br>
<br>
Hope that helps (the above written w/o compiling it, so it might have bugs).<br>
Read <a href="https://doc.qt.io/qt-5/qcombobox.html#currentIndex-prop" rel="noreferrer" target="_blank">https://doc.qt.io/qt-5/qcombobox.html#currentIndex-prop</a> for more details.<br>
<br>
Thomas<br>
<br>
<br>
On Sonntag, 15. August 2021 19:33:38 CEST Suraj Kumar Mahto via Kde-finance-apps wrote:<br>
<br>
> Hello, I am stuck for few days to make the IdSelector combo box work. The<br>
> IdNumber entry works fine. I have tried to debug the same to find out the<br>
> possible cause but wasn't able to figure it out.<br>
> I have pushed the respective changes to<br>
> <a href="https://invent.kde.org/surajsloth/alkimia/-/tree/gsoc21" rel="noreferrer" target="_blank">https://invent.kde.org/surajsloth/alkimia/-/tree/gsoc21</a> Please direct me<br>
> where I am going wrong.<br>
> <br>
> Also, there isn't any enum type in AlkOnlineQuote::Errors::Type for the two<br>
> members added. So, I need to add the same. Please correct me if I am wrong.<br>
> <br>
> Regards<br>
> Suraj Kumar Mahto<br>
> <br>
<br>
-- <br>
<br>
Regards<br>
<br>
Thomas Baumgart<br>
<br>
<a href="https://www.signal.org/" rel="noreferrer" target="_blank">https://www.signal.org/</a>       Signal, the better WhatsApp<br>
-------------------------------------------------------------<br>
Q: What did the drummer name his twin daughters? A: Anna one ... Anna Two ...<br>
-------------------------------------------------------------<br>
</blockquote></div>