silverstripe Questions
2
Solved
In the Silverstripe templating syntax $AbsoluteLink returns the full URL of a page/object, including the protocol and host:
http://www.example.com/event/ics
I want to be able to call a full URL ...
Colpin asked 9/6, 2016 at 0:1
3
Solved
I have created a new page type that needs something to break up the content. I have created a strapline block that i would like to use in 3 places on the page, however i want to create only 1 versi...
Myles asked 19/12, 2015 at 0:20
2
Solved
I have a Dataobject in ModelAdmin with the following fields:
class NavGroup extends DataObject {
private static $db = array(
'GroupType' => 'Enum("Standard,NotStandard","Standard")',
'Numbe...
Detribalize asked 30/3, 2016 at 0:56
1
Solved
I've got a relatively simple setup running using SilverStripe 3.2.1 with the restfulserver addon and using a variety of widgets which are associated to a Page using the elemental addon.
When I mak...
Czech asked 25/2, 2016 at 22:7
1
Solved
Example: I have Members (who can login and update their data) who have one or many qualifications. So I have a DataObject 'Members' and a DataObject 'Qualification' with a has_one/has_many relation...
Smasher asked 25/1, 2016 at 18:11
2
Solved
I've got three DataObjects in Silverstripe 3.1: an Issue, a Vote, and a Voter. Issues have many Votes; Votes have one Voter and one Issue. On my Issue_show page, I want to show all that Issue's Vot...
Trews asked 12/11, 2013 at 16:59
5
Solved
I work with a framework called SilverStripe ... we are currently in the process of migrating an old site onto this framework. The problem is that the old site URLs ended with .php or .html whilst i...
Padegs asked 29/12, 2015 at 10:20
1
Solved
I have an admin model tab (called "Appointments") for a SilverStripe that stored form submissions. Everything is working fine and the data is displaying inside the summary grid. However, I need to ...
Bethought asked 6/1, 2016 at 21:20
1
Is there a way to make ModelAdmin filters more persistent? Currently if you filter, edit a DataObject and come back, the filter is gone. Also prev/next from unclecheese/betterbuttons do not respect...
Peroration asked 26/2, 2015 at 15:23
3
I have created a Customer DataObject by extending Member. Customer has a many_many data relation with a Package DataObject.
I would like increment/decrement a Credits field in the Customer DataObj...
Desiderata asked 1/9, 2015 at 6:25
2
Why does my JavaScript appear after the footer? Below is my code in the layout (Page.ss):
<% include SideBar %>
<div class="content-container unit size3of4 lastUnit">
<article>
...
Bobodioulasso asked 23/8, 2015 at 16:10
1
How to add Custom button and its functionality in Admin Silverstripe?
Please tell me solution.
Custom Button add only in one menu.
Polycotyledon asked 21/8, 2015 at 12:30
2
Solved
When adding a many_many relationship much like the projects to mentors relationship in the silverstripe guide:
http://doc.silverstripe.org/framework/en/tutorials/5-dataobject-relationship-manageme...
Albur asked 30/7, 2013 at 1:13
1
Using SilverStripe 3.1 I have laid out a FrontPage page type that loops through its children to produce a big tall scrolling page. It has all kinds of different page types in it and I access their ...
Comanchean asked 22/5, 2015 at 19:25
4
I am new to SilverStripe.
I would like to know a good place where I can start making modules for SilverStripe; some good tutorials to get me started.
Tee asked 8/11, 2010 at 12:27
3
Solved
Our site has an object called "TrailNotice" which has a many_many relationship with the page type "TrailSection".
class TrailNotice extends DataObject {
private static $many_many = array(
'Trai...
Granjon asked 15/4, 2015 at 1:16
2
Solved
I'd like to be able to return an image in Black&white in a controller, so I can use it in a template. On this page I found that the GD class has a greyscale method. Unfortunately I don't unders...
Corrida asked 6/11, 2013 at 12:24
2
Solved
How do I add a button to the backend of the CMS that fires an action? I can display the button where I want using:
public function getCMSFields()
{
$fields = parent::getCMSFields();
$fields->...
Nuri asked 29/4, 2014 at 1:33
2
Solved
I tried to build tabs with jquery.
But i recognized that my links
<a href="#tab-1">Tab 1</a>
are converted to
<a href="/#tab-1">Tab 1</a>
Because of the Slash at the b...
Omidyar asked 13/12, 2013 at 7:8
1
Solved
I have a custom Page called ForgotPasswordPage.php and a ForgotPasswordPage.ss template. I also have a custom Form class in ForgotPasswordForm.php and it's corresponding custom Form template, Forgo...
Quartic asked 18/2, 2014 at 18:8
2
A site I've been working on, which has been working fine on my local dev and live dev environments is giving me issues when I try to deploy it to a live server (the client wants to host it with the...
Ernieernst asked 9/12, 2013 at 16:9
1
Solved
When managing Dataobjects with ModelAdmin in Silverstripe 3, i was wondering how you can add buttons for custom action to the list view as well as to the edit-page.
I've managed to add a button fo...
Rhadamanthus asked 21/8, 2013 at 5:21
2
Solved
it happens often that an silverstripe installation does not have the right permission to write in the assets folder - e.g. for saving resampled images...
I wonder what is the best permissions sett...
Besmirch asked 8/5, 2013 at 11:16
1
Solved
I am looking to attach multiple images to a page in silverstripe (that will act as a rotating gallery eventually) and was wondering if it was possible for a user to add a link for each of these ima...
Rogan asked 21/1, 2013 at 4:49
1
Solved
I am new to OOP frameworks in general and Silverstripe in particular. I'm sure I'm missing something vital!
I am currently trying to create a twitter feed for my main page. In my Page_controller I...
Halicarnassus asked 22/8, 2012 at 14:18
© 2022 - 2024 — McMap. All rights reserved.