Could you if you have time take a look into what could cause this? And if you can reproduce.
Something else:
Posted 21 February 2012 - 05:24 PM
@somartist | modules created | support me, flattr my work flattr.com
Posted 21 February 2012 - 06:29 PM
2/4 |========[]========| Columns: [ 4 ▼ ]
I'm still getting sometimes this error message that another "me" user currently is editing this page!
BTW it would be somehow be cool to update the #index when dragging an item. I think it could make sense since it isn't saved anyway. Though It may would be even cooler to have a title somehow "name" shown in the bar, that is recognized when collapsed not just #1,#2,#3.
Label not translated. Bug?
Ryan. The label of the repeater field the one you can drag, doesn't show me the german label..
Something else:
Posted 21 February 2012 - 06:30 PM
assume that all colums are equal do you? screen shot show columns, lengths different
Posted 21 February 2012 - 06:41 PM
Posted 21 February 2012 - 07:12 PM
@somartist | modules created | support me, flattr my work flattr.com
Posted 21 February 2012 - 08:51 PM
Posted 22 February 2012 - 04:12 AM
@somartist | modules created | support me, flattr my work flattr.com
Posted 22 February 2012 - 04:21 AM
Posted 22 February 2012 - 07:45 AM
Posted 22 February 2012 - 02:25 PM
Seems an issue in combinations with user data that is handled by my "PageEditSoftLock" module.
$user = $this->users->get($user_id);
if($user === $this->user){
if($user_id == $this->user->id) {Posted 23 February 2012 - 04:40 AM
@somartist | modules created | support me, flattr my work flattr.com
Posted 23 February 2012 - 01:23 PM
// create the new repeater field
$repeater = new Field();
$repeater->type = wire('modules')->get('FieldtypeRepeater');
$repeater->attr('name', 'my_repeater');
$repeater->label = 'Your Field Label';
$repeater->save();
// forces a self-setup + configuration (this is an odd step, I know, will improve)
$repeater->type->getConfigInputfields($field);
$repeater->save();
// add some other fields to the repeater
$repeaterTemplate = wire('templates')->get($repeater->template_id); // get the template used by the repeater
$repeaterTemplate->fields->add(wire('fields')->get('title')); // add title field
$repeaterTemplate->fields->add(wire('fields')->get('summary')); // add summary field
$repeaterTemplate->fields->save();
// add the new 'my_repeater' field to your the 'basic-page' template, as an example
$template = wire('templates')->get('basic-page');
$template->fields->add($field);
$template->fields->save();
$repeater = wire('fields')->get('my_repeater');
$item = $repeater->type->getBlankRepeaterPage($page, $repeater);
$item->title = 'Test item';
$item->summary = 'This is just a test item';
$page->my_repeater->add($item);
$page->save();
Posted 23 February 2012 - 01:32 PM
Posted 23 February 2012 - 01:59 PM
Soma, Diogo: you'll be glad to know I've taken a close look at field template context and how we might support it in the core. It'll be simpler than I thought, so there's a good chance I can get this in version 2.2, relatively soon. Now that I understand how we'll do it, I think we'll be able to provide template context of almost any field setting (custom and internal). So it will likely go beyond just title, description, collapsed, width, etc. To change the context of a field within a template, you will edit a template, then click on a field name or edit icon (in the asmSelect). It'll open a modal window with all the field's configurable settings, all within the context of the template. I think this will be pretty cool.
@somartist | modules created | support me, flattr my work flattr.com
Posted 24 February 2012 - 02:52 AM
Soma, Diogo: you'll be glad to know I've taken a close look at field template context and how we might support it in the core. It'll be simpler than I thought, so there's a good chance I can get this in version 2.2, relatively soon. Now that I understand how we'll do it, I think we'll be able to provide template context of almost any field setting (custom and internal). So it will likely go beyond just title, description, collapsed, width, etc. To change the context of a field within a template, you will edit a template, then click on a field name or edit icon (in the asmSelect). It'll open a modal window with all the field's configurable settings, all within the context of the template. I think this will be pretty cool.
Posted 24 February 2012 - 01:32 PM
Posted 24 February 2012 - 08:34 PM
0 members, 0 guests, 0 anonymous users