That seems to work!
Thanks..
That seems to work!
Thanks..
How can I hide the 'standard' backbutton in the header with javascript?
I would like to hide the button in the case of an android device (they have already a backbutton). I can detect if the user has an andoid device, but I can not find how to hide the backbutton in that case.
I have found the following working solution:
code
if (typeof value == 'string')
return value;
else
if(typeof value != 'undefined')
return ""
else
return value["content"];
/code
It did not help. Same result.
I see the same behaviour also with other entries. In all cases the entry has some extra 'things' like:
code<d:SubTitle xml:space="preserve">/code
instead of:
code<d:SubTitle>/code
The problem is that they both exists. Some entries have the extra "xml:...", others not.
I have an other question. The following entry in the Atom feed:
code<d:Title xml:space="preserve">Naarden </d:Title>/code
Gives: code[object Object]/code as a result instead of Naarden
Do you know how to solve this?
That works!
Thanks..