Jump to:

2580 Posts in 695 Topics by 540 members

Data Model Questions

SilverStripe Forums » Data Model Questions » How to limit user selection in ManyManyComplexTableFiled

Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba

Page: 1
Go to End
Author Topic: 519 Views
  • Ben_W
    Avatar
    Community Member
    77 Posts

    How to limit user selection in ManyManyComplexTableFiled Link to this post

    I have the following ManyManyComplexTableField, which basically form a many to many relationship that allows user to pick number of pages as recommended reading for a given page. Is there a way I can enforce a business rule into this, say user may not select more than 5 pages as recommended reading. Need a way to disable the checkbox I would thought. Any pointer would be deeply appreciated. Cheers.

    $tablefield = new ManyManyComplexTableField(
       $this,
       'MyRegionPages',
       'Page',
       array(
          'Title' => 'Page Name',
          'BoldIntroduction' => 'Bold Introduction'
       ),
       'getCMSFields_forPopup',
        "SiteTree.ID != $this->ID AND SiteTree.ParentID=$this->ParentID",
        'Sort'
    );

    $tablefield->setPermissions(array(
    ));

    $fields->addFieldToTab( 'Root.Content.FurtherReadings', $tablefield );

    519 Views
Page: 1
Go to Top

Want to know more about the company that brought you SilverStripe? Then check out SilverStripe.com

Comments on this website? Please give feedback.