21309 Posts in 5738 Topics by 2603 members
| Go to End | ||
| Author | Topic: | 2468 Views |
-
Re: How to obtain the current position in control loop

28 February 2009 at 7:10am
You're going to be waiting a while on that one. SSViewer doesn't accept dynamic values for arguments in functions.
What I would do is just augment a static class variable every time the function runs
so..
static $form_count = 0;
function CalendarForm()
{
self::$form_count++;
// do stuff
return a form with id="some_form_".self::$form_count
} -
Re: How to obtain the current position in control loop

28 February 2009 at 9:43am
Hey UncleCheese,
Just an update as to the SSViewer. Earlier today I managed to write the code for SSViewer to access dynamic values. I managed to get it to accept one value and then managed to fix it to allow for unlimited parameters to be passed. So, now it will work perfectly with dynamic values with/without control loops.You can view my submission at: http://open.silverstripe.com/ticket/3633
-
Re: How to obtain the current position in control loop

28 February 2009 at 11:47am
Nice work. I would love to see this functionality integrated into Silverstripe. Anxious to hear what comes of it.
| 2468 Views | ||
| Go to Top |

