I'm doing some testing on Firefox toolbars for the sake of learning and I can't find out any information on how to store the contents of a "search" drop-down inside the user's profile.
Is there any tutorial on how to sort this out?
|
|
|
|
|
|
|
Since it's taking quite a bit to get an answer I went and investigate it myself. Here is what I've got now. Not all is clear to me but it works. Let's assume you have a <textbox> like this, on your .xul:
You now have to add some other attributes to enable history.
This gives you the minimum to enable a history on that textbox.
This is the absolute minimum to get a history going on. |
|||
|
|
|
|
Gustavo, I wanted to do the same thing - I found an answer here on the Mozilla support forums. (Edit: I wanted to save my search history out of interest, not because I wanted to learn how the Firefox toolbars work, as you said.) Basically, that data is stored in a sqlite database file called formhistory.sqlite (in your Firefox profile directory). You can use the Firefox extension SQLite Manager to retrieve and export the data: https://addons.mozilla.org/firefox/addon/5817 You can export it as a CSV (comma- separated values) file and open it with Excel or other software. This has the added benefit of also saving the history of data you've entered into other forms/fields on sites, such as the Search field on Google, etc, if this data is of interest to you. |
|||
|
|
|
|
Gustavo's solution is good, but *document.getElemenById('search_with_history').value;* is missing a 't' in getElementById |
||
|