Adding a footer with same functionality as the header - fullcalendar

Can I add replicate the header buttons in the footer?
I have a rather long calendar and the user would like to be able to move forward/back when scrolled to the bottom of the calendar.
I found a note on the Google code site this would be considered for v1.5 but don't see anything in the recent docs about it.

a jquery plugin. instead of replicating header buttons, why not make the header buttons sticky

Related

view header are not visible when i scroll in Xpage View Panel

I am facing a problem in xpage. I am showing 10000 documents in single page Using xpage view panel. When I use scroll , View headers also becomes invisible.
I got this link for the same query. They are asking to use extension library.
This is the link where same query reported
I can put my Scroll div for view panel only . is there any way to have scroll for view content only in xpage without Extension Library.?
Any help would be appreciated. Thanks in advance.
The extension library gets installed with all current versions of Domino. It is fully IBM supported, so why not....
Anyway you asked:
On Dojomino there is an example how to read ?ReadViewEntries into a Dojo grid. It does roughly the same as the Extlib but with more steps.
.or. Use a repeat control and have non scrolling headers (afaik requires div not table - but you can google that, it is pure HTML/CSS)

chrome extension, jstree, iframe: drag and drop

I'm new to chrome extensions development and I'm building one that requires a side panel (not the popup), like firebug but on the right side.
I'm using jsTree (with json_data) in the side panel and I want to drag elements from the webpage to the side panel.
So far, to create the side panel, I've used a div appended to the body with a z-index so that it appears above the webpage, but the elements' styles in my side panel are altered because of the website's css.
So I thought I could use an iframe to avoid any css incompatibility within my side panel.
I create the iframe dynamically, with a src="chrome-extension:///page.html".
I've managed to make my jstree work fine in my iframe by loading the jquery+jstree scripts directly in the iframe's source page... that's pretty bad but I can't get the content script to be used for the iframe's source page (despite "all_frames": true).
I'd like to drag elements from the website's page into jstree in the iframe...
I've found the iframeFix: true and refreshPositions: true, but that doesn't seem to change anything...
Anyone knows how to do that?
If I don't use an iframe, according to the multiple examples on the web, I can easily drop an element to the jstree using the dnd plugin.
I haven't tried it; even if it worked, the css in my side panel will be altered and I can't let that happen.
I've seen the "div layer above the iframe" technique. I can successfully drop an element from the webpage on that div above the iframe.
But, when I try to post a message (containing the dropped elements' data) to the iframe through a port the iframe doesn't receive the message.
My idea in this case is to somehow add the message to the json data of jstree.
I've read all the posts I've found about content_scripts and iframe, I know about the bugs... I can't figure out if it's fixed or not, and if it is, I don't know how to make the port communication between the ifram and the content script work.
Anyone knows more about that?
I should also add that when I try to communicate between the content script and the iframe using a port, and copy the listener from the iframe in the background page, the background page receives the message just fine... which just means that the port communication is working fine I suppose, but not between the content script and the iframe...
Any thoughts? I'm really stuck
answering my own question;
I haven't found a solution on how to use iframes in a chrome-extension with jstree.
I'm just going for the hardcore way; append a <div> to the <body>, and make sure by doing a lot of testing that the css inside my <div> will remain isolated from the webpage's css.
Cheers

Hiding/Removing headers, footers & side navigation from an asp.net document that is in an iframe

I am a newbie at this web stuff and am stuck trying to figure out how to strip the headers, footers and side navigation from a document that is being used as the source for the iframe. I have a document page that is displayed in an iframe, but it is displaying everything like the navigation sidebars and the header and footer. Unfortunately, this document page by itself needs the navigation stuff on the top and side, but when displayed in the iframe, it will confuse the user as the unwanted stuff is duplicated with the parent page. So.... How do I remove the side navigation, header and footer?
I am using asp.net. The document is being set in the code behind using attributes (i.e. iframe.Attributes.Add("src", "index.aspx")). So I need to strip out the unwanted stuff before loading it into the iframe and cannot seem to find any methods of achieving this, nor can I find any references on the internet. Please help!
You have to implement a iframe (print in the article given) stylesheet as per http://www.killersites.com/articles/newsletterArchive/Newsletter_Nov3_2003.htm.
Then when you are calling from ASP.net, you can open the page with the new CSS.
Hope this helps.

Disabling the whole page untill the loading process gets completed

I have one web page in ASP.NET and I want that page to be disabled until the whole page loading process gets completed.
One way is to activate a lightbox without content that will dim the whole page and then on the body onload event hide that lightbox.
Lightbox is a like having a modal window above the original window, and is used to preview pictures and other content. It could easy be modified to do what you want. Just activate a lightbox with no content and then hide the lightbox when the document is loaded.
This is a strange requirement and I would be interested in finding out your reason for doing this. Is there a problem or error that is ocurring. Perhaps you think the best way to prevent the error is to freeze the UI until the page loads.
I think that you should edit your question and describe what the underlying issue is. There might be a better way to improve your page.
I've seen this done with a simple overlay before.
Basically an iframe and a div that covers the page and has a high z-index is output at the beginning of page render. This is styled so it greys the page out and it also makes everything non-clickable. Then, once the page is loaded, a simple bit of javascript can be used to remove the div and iframe (or just set their styles to make them disappear).
I've also seen people attempt this issue by manually iterating over all controls on the page in JavaScript and disabling them. This is a horrible way to attempt it :)
The jQuery BlockUI plugin is another good option with lots of customization options.

How to create Facebook style fixed Status bar?

I want to create fixed status bar in by web form to display various status/messages/notification to user , i can used fixed CSS property but i want to implement in i.e 6/7 and in Firefox. and all the browsers.
Here's a quick and easy solution on how to fix element/bar on the bottom page:
jixedbar - Fixed bottom bar like Facebook
Now all you have to do next is to find an AJAX framework (prototype, jquery, etc) and start coding your custom menu (application, notification, slider, etc.) or similar to the one in Facebook.
Dean Edwards' "IE7" JavaScript library may help. It fixes position: fixed in IE6.
I think you want a sticky footer.
There are several out there. For instance, take a look at the tickbar, which seems quite configurable: http://www.ticketmy.com/bumpin/socialbar/index.php
Here's a pretty simple notification bar
I wonder if there's a quick and dirty way to save the state of something in that bar across a site...
view this post Facebook Style Footer Admin Panel

Resources