-
Posts
1,699 -
Joined
-
Last visited
-
Days Won
14
Everything posted by renobird
-
Hahaha!
-
I'm nearly done with a site that has a very similar setup. It is definitely possible. The module linked above works well. In my case each mini-site admin can see the other sites, but doesn't have edit privs. If you had to hide the other sites, you could probably hide the main page tree and create a custom admin page that showed a truncated page tree starting at the top level page the mini site admin is allowed to edit.
-
Ryan, I've been experimenting with this a lot — and it's really solid. I can't imagine not having it now. The only thing I can't sort out (it may not be possible) is how to hide a page field if it returns no results. For example: I have a page field that is a sidebar picker. It uses a custom selector to look for a sibling page named "sidebars". There isn't a always "sidebars" page defined in every parent, so sometimes the page field is empty. That can be confusing, so I was hoping I could hide the page field if there are no options available. I may need a simple module for this instead, but thought I would ask if it's possible dependencies.
-
Silly problem: How to move page across page boundaries in the backend?
renobird replied to joe_g's topic in Getting Started
You mean to move a page into a new parent? if so, make sure the parent you want to move to is open. -
Killed me. Dead. Perhaps you could also list the first 20, then "load more" via ajax on request. Also... Welcome Seb!
-
Events Fieldtype & Inputfield (How to make a table Fieldtype/Inputfield)
renobird replied to ryan's topic in Modules/Plugins
Ryan, This is excellent! What I'm doing now with repeaters looks similar, but it's a lot more work to setup, and not as clean. Very much appreciated. Also, I love how the new admin is looking. That screenshot made me happy. -
Hi Martijn, I missed the post about your module. Looks great! I have a little helper function that does pretty much the same thing with repeaters. It works OK, but gets a bit wild with large tables. I don't even know what I was expecting from what Ryan posted, just thought he might have some fancy approach that I haven't seen for handling tabular data entry by clients.
- 33 replies
-
- crud
- handsontable
-
(and 3 more)
Tagged with:
-
Ryan, any chance you would be willing to share a very basic example? A "table" Fieldtype/Inputfield would be amazing.
- 33 replies
-
- crud
- handsontable
-
(and 3 more)
Tagged with:
-
using $page->render($options) and template cache
renobird replied to Soma's topic in API & Templates
Ran into this today — Thanks Soma! -
randyj, You might want to create a page as a parent for these entries. For example: submissions -- entry1 -- entry2 -- etc... Once you have your entries saved to pages, you can access them using the API, just like any other page. So in the template you use to display entries you could do something like: $entries = $pages->get("/submissions/")->children(); foreach ($entries as $entry) : ?> <p><?=$entry->name_1;?></p> <p><?=$entry->description_1;?></p> <? endforeach; ?> This is written in the browser, so check it for errors.
-
You can combat the by giving the names container a min-height at smaller widths. That way if there are some that only take up one line the container still expands to a consistent height across all items. Yeah. Assuming you are going to go with open sans, just add that declaration to the <body> and remove all the references to Arial.
-
One other tiny nitpick. Open Sans and Arial together in a few places feels a little weird. I would avoid the conflicting type and just use one or the other site wide for the sans-serif typeface.
-
Very well done! Congrats on the launch. On the faculty page, if the area isn't listed it throws off the grid Maybe output a if the area is empty? Otherwise, looks fantastic.
-
A paradigm shift on how pages are presented in admin
renobird replied to a topic in Wishlist & Roadmap
Looking forward to it. I've made my own workarounds, but they are kind of one-offs for each need. Which is a little tedious. -
Ability to provide custom cropping center to the ImageSizer
renobird replied to u-nikos's topic in Wishlist & Roadmap
This idea if a defining a focal point for image cropping came up at work today. And of course, here it is. -
kongondo, Glad you are back. New admin themes on the dev branch is a good place to start if you haven't seen it.
-
I'm actually really glad he did that, and that it has caught on. My development is significantly faster now. IE7 usage is extremely low, and using things like box-sizing only serve to set the final coffin nail deeper. Sorry to hear you are still having to support browsers that old Martijn. What kind of usage percentages are you seeing?
-
Hi vxda, Very nice looking site. Once thing I noticed here is that the large images take an very long time to load. On the homepage the slideshow starts before the first image is even finished loading.
-
Agrio new website and corporate identity / branding
renobird replied to Raymond Geerts's topic in Showcase
If you use SCSS, you can combine and minify as you build. -
Antti, I've just done some basics, but it seems to be working great now! Mac: - Safari - Chrome - FF Windows: - IE9 - Chrome I hope the sorting issue isn't too difficult to conquer — that's that last piece I would need to make this production ready. Thanks for all your hard work.
-
Unfortunately I don't have a way to open this site up yet. It's restricted using Shibboleth for authentication, so there's no way to create an account for a non-university user.
-
Spoke too soon. Just tested on a page with additional JS. I can open and edit, but when the modal closes there is a silent JS issue that kills all the other JS on the page. I'm not getting any errors or warnings. Update: Modal never closes after save on IE9, just hangs.
-
Working nicely here on: Mac: - Safari - Chrome - FF Windows: - IE9 - Chrome After using this a good bit the last week, I think it might be a good idea to set body {overflow:hidden} via JS while the modal is open. That way only the modal will scroll. I have some lengthy body fields and sometimes the multiple scrolling can get weird.
-
Antti, Will grab and test now — thanks!