I never had this problem before, but in my latest gadget it seems that setpreference does not always work! Has anyone else had this happen Or know why! Thank you in advance
My code is straight forward so I don't know what I could be doing that would make it only work most of the time
function
updateinfo(){m_module.setPreference(
"feed", feedinput.value);m_module.setPreference(
"num", numinput.value);refreshContent();

SetPreference does not always work?
Dietz
I've never really understood why that would be a problem. If you're able to save some information, that means you already have that available to you. Why would you try to re-load it with a getPreference() call Call getPreference() during initialization to get any data that you may have previously saved, and then never call it again. There's simply no point. Manage your data within your gadget, call setPreference() to store it occasionally, and you're done.
cosmmm
Duncan Woods
k3bdf
BenMo
trevi
Spyder_Snyper
Just a guess:
The amount of space for saving preferences is limited. You can store about approximately 1000 chars at this time.
Maybe you went over the limit