The sidebar tag has no wiki summary.
1
vote
0answers
127 views
Why does this Javascript code not work?
I have the following Javascript code embedded in my side row
window.onload = new function()
{
hideBtns();
}
function hideBtns()
{
if(document.getElementsByName('edit')[0]!=null){
...
2
votes
1answer
63 views
How can I link to an app's new record interface from a homepage widget?
I want to create a homepage widget for the sidebar that has a button to create a new record in a custom app (which I intent to distribute, so it needs to be a portable solution).
I'd like to use a ...