FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. jitendra.sabat
    3. Topics
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 4
    • Best 0
    • Controversial 0
    • Groups 0

    Topics created by jitendra.sabat

    • J

      Unsolved How to achieve multiselect dropdown using 'Advanced Registration Form' custom form field

      Q&A
      • • • jitendra.sabat
      2
      0
      Votes
      2
      Posts
      568
      Views

      danD

      @jitendra-sabat

      We don't have an out of the box form control for a multi-select, but you can create one using the theme customization. You should start with a custom form field with a check box form control type because it supports multiple values.

      As long as the serialized version of the form is valid and matches the data type you set in the field definition, it should work.

      So, start with the checkbox list, and ensure that is functional, and then you can re-write that control or style it however you want in the themed template, or via JavaScript.

    • J

      Unsolved How to add/alter attributes of a 'Advanced Registration Form' form field

      Q&A
      • • • jitendra.sabat
      2
      0
      Votes
      2
      Posts
      479
      Views

      danD

      @jitendra-sabat

      Hiya,

      You can add keys to the messages.properties file. Here's a blog post that illustrates this: https://fusionauth.io/blog/2020/09/01/theme-registration-form

      In that post, the registration.data.minprice field is one of the custom fields.

    • J

      Unsolved "Enable Theme" for login page option is not available. How to enable the same or how can we customize login screen bypassing Fusion Auth default login screen?

      Q&A
      • • • jitendra.sabat
      3
      0
      Votes
      3
      Posts
      2.5k
      Views

      danD

      To add on to what @joshua wrote:

      You can't host assets in FusionAuth (like CSS or images). You must host those externally. This post might be useful to you: https://fusionauth.io/community/forum/topic/1306/parameterizing-themes To offer a localization drop down, you need to build the select box in your theme or you can use the localSelector helper macro. This will iterate the supported locales for a theme and build the dropdown. Then, when it is changed, the page will forward to the same URL with a new locale parameter, which should render the page properly. More on the localization of themes here: https://fusionauth.io/docs/v1/tech/themes/localization I'm not familiar with Material UI but if it is javascript, html and css, it should be workable.