5093 Posts in 1516 Topics by 1113 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 811 Views |
-
Custom Report Show Record

4 October 2010 at 6:15pm
I am currently writing a custom report for a client who wishes to track records which are stored in a DataObject.
Is there an inbuilt function which can display this information in a popup window similar to that of a getCMSFields_forPopup()?
-
Re: Custom Report Show Record

7 October 2010 at 8:18am
Hi Blackdog,
I don't follow... do you want to create a popup window or are you asking how to modify the edit fields... I've searched for getCMSFields_forPopup and cannot find the method... which version of ss are you using?
-
Re: Custom Report Show Record

7 October 2010 at 11:13am
Hey Swaiba,
Just display the report records in a popup window.
Not using the getCMSFields_forPopup, just creating a popup which acts the same way as that.
cheers.
-
Re: Custom Report Show Record

7 October 2010 at 9:23pm
Well since I could not find the method you wish to emulate, I cannot know what it does... however if all you want is a popup box that lists records...
then this will describe a coule bo methods of getting a popup window...
http://www.silverstripe.org/form-questions/show/293061?start=0#post293068then you can create a page that has something like this in the controller...
function GetRecords()
{
return DataObject::get('RecordName',<where clause>);
}and this in the template...
<% if GetRecords %>
<% control GetRecords %>
$FieldInRecord - $AnotherFieldInRecord - $YetAnotherFieldInRecord
<% end_control %>
<% end_if %>
| 811 Views | ||
|
Page:
1
|
Go to Top |


