Search found 458 matches

by webform
Thu Mar 21, 2024 2:12 pm
Forum: Modules/Add-Ons
Topic: Passing Default values to FormBuilder Multiselect
Replies: 7
Views: 17756

Re: Passing Default values to FormBuilder Multiselect

After thinking about it a bit more, I have managed to pass an array of values to a multiselect field in FormBuilder. I converted my selected values to an array and then FormBuilder wanted to accept the data. {$title = $item->title} {assign var='category' value=','|explode:"{$item->category}&quo...
by webform
Thu Mar 21, 2024 8:43 am
Forum: Modules/Add-Ons
Topic: Passing Default values to FormBuilder Multiselect
Replies: 7
Views: 17756

Re: Passing Default values to FormBuilder Multiselect

Normally I use the default template, where I adapt it to be usable with Bootstrap. And it works fantastic in most cases, but in this case I will probably have to make a custom html template as you suggest, so that I can get many select values into a multiselect field. (I'm building a frontend editin...
by webform
Wed Mar 20, 2024 9:07 pm
Forum: Modules/Add-Ons
Topic: Passing Default values to FormBuilder Multiselect
Replies: 7
Views: 17756

Re: Passing Default values to FormBuilder Multiselect

Yeah, i need to take my thinking hat on and look into if i could recreate the multiselect field manually in the form template, so i can preselect the multiselect values i need :-\
by webform
Wed Mar 20, 2024 6:53 pm
Forum: Modules/Add-Ons
Topic: Passing Default values to FormBuilder Multiselect
Replies: 7
Views: 17756

Re: Passing Default values to FormBuilder Multiselect

I use the fields ID to pass default values like value_fld12='value1,value,2,value3' , where the field is a Multiselect Field Type. And default value IS passed if there is only one value but not if there is multiple values, like in the example above. So it may not work to pass multiple values to a Mu...
by webform
Wed Mar 20, 2024 11:27 am
Forum: Modules/Add-Ons
Topic: Passing Default values to FormBuilder Multiselect
Replies: 7
Views: 17756

Passing Default values to FormBuilder Multiselect

I'm trying to pass default values to a FormBuilder Multiselect field and it works just fine with a single value but not with multiple values. {FormBuilder form='MyForm' value_TITLEFIELD='My Title' value_MULTISELECTFIELD='value1,value,2,value3'} The help says "It may not work for more exotic fie...
by webform
Tue Mar 12, 2024 10:13 am
Forum: Modules/Add-Ons
Topic: LISE Custom Search Template
Replies: 2
Views: 18203

Re: LISE Custom Search Template

Thank a lot Velden, that did the trick and my actionid is now consistent through all fields. My final custom search template: {$form_actionid = $actionid} <div id="{$modulealias}_search" class="card bg-contrast-0 rounded-6 border-0 shadow"> <div class="card-body p-5"> {...
by webform
Mon Mar 11, 2024 11:39 am
Forum: Modules/Add-Ons
Topic: LISE Custom Search Template
Replies: 2
Views: 18203

LISE Custom Search Template

I am confused about how to create a custom search template. I have a number of select fields, but after each select the actionid for the subsequent fields changes and the search fails. Here is an example of a custom search template: <div id="{$modulealias}_search" class="card bg-contr...
by webform
Fri Mar 01, 2024 11:35 am
Forum: Modules/Add-Ons
Topic: LISE frontend form (FormBuilder) with default values fails
Replies: 1
Views: 201

Re: LISE frontend form (FormBuilder) with default values fails

I have kinda solved it with a bit of a hack: In my LISE detail template i set my variables i need in my comment form: {$lesson_title="{$item->title}" scope=global} {$lesson_id="{$item->serial}" scope=global} Then in my form i use hidden fields to get the variables with "Proc...
by webform
Thu Feb 29, 2024 1:49 pm
Forum: Modules/Add-Ons
Topic: LISE frontend form (FormBuilder) with default values fails
Replies: 1
Views: 201

LISE frontend form (FormBuilder) with default values fails

I have discovered an interesting problem, that if you set a default value for a FormBuilder form, which sends form results to LISE, you get a Database error. {FormBuilder form='capture_comment' value_fld83=$item->title value_fld82=$item->serial} LISE Database error: 0 - - Query: SELECT COUNT(alias) ...
by webform
Wed Feb 21, 2024 12:42 pm
Forum: Modules/Add-Ons
Topic: LISE API Auto Generate URL from Frontend Form
Replies: 1
Views: 282

Re: LISE API Auto Generate URL from Frontend Form

I couldn't figure out how to get the GenerateSlug API to work, so i did a work around where i generates the slug based on an uniq serial field and the title field: /** * Load wanted LISE instance, where you wan't to save items. * If instance can't be loaded, it will silently return. */ $mod = \cms_u...
by webform
Mon Feb 19, 2024 3:08 pm
Forum: Modules/Add-Ons
Topic: LISE API Auto Generate URL from Frontend Form
Replies: 1
Views: 282

LISE API Auto Generate URL from Frontend Form

I'm trying to trigger a GenerateSlug for items submitted from a frontend form. I have this code in my UDT, but the URL field remains empty: $obj->slug = LISE\api::GenerateSlug($params['title'], 'LISEINSTANCE'); I'm guessing the field name is wrong, and changed the code to: $obj->url = LISE\api::Gene...
by webform
Wed Feb 14, 2024 2:27 pm
Forum: Modules/Add-Ons
Topic: Display LISE categories hierarchy position without leading zeroes
Replies: 2
Views: 22789

Display LISE categories hierarchy position without leading zeroes

I know i can display LISE categories hierarchy position with {$category->hierarchy}, but how do i remove the leading zeroes like 00001.00016 => 1.16?
I can use |ltrim:'0' on the first part but what about the second part after the decimal point?
by webform
Fri Feb 09, 2024 8:54 am
Forum: CMSMS Core
Topic: Duplication of a child page deletes default page
Replies: 2
Views: 312

Re: Duplication of a child page deletes default page

Thank you.

I'll try to investigate further and see if i can replicate the error.

I have 2 suspicions I work from; That the duplicate child page was disabled and that the CMSMS software has been continuously updated (So not a brand new fresh installation).
by webform
Thu Feb 08, 2024 11:57 am
Forum: CMSMS Core
Topic: Duplication of a child page deletes default page
Replies: 2
Views: 312

Duplication of a child page deletes default page

I am experiencing something very mysterious where a duplication of a child page takes over and removes the original default page. The page has all of the duplicate page's content and template, but has taken over the default page content id and default status. In the Content Manager, the original def...

Go to advanced search