Question T16868
Visible to All Users

SurveyCreator Customization queries.

created a year ago (modified a year ago)

HI ,

Could you please help to answer below queries related to SurveyJs customization with Angular,

  1. Is it possible to added number upfront to the radio button just like below,

Clipboard-File-1.png

  1. is it possible to change the radio button panel for radio duplicate ,Required and Delete as like below?

change the text and image for duplicate ,Required and Delete.
Clipboard-File-2.png

  1. can we hide or add the property from survey properties panel ,

for example i want hide Title , Description or visible or Required and also can i change the text for Name to SurveyName or Title to SomeTItle,

Clipboard-File-3.png

  1. can we hide the tiles itself from Survey Property panel ,

for example :- hide Data Tile or Validation from the panel,

Clipboard-File-4.png

  1. can we change boolean type like below attached image,

Clipboard-File-5.png

  1. can we remove labels for multiple textBoxes and kept on the top of each text box as below attached image,
    Clipboard-File-6.png

  2. can we add image to panel icon as like attached image for panel,

Clipboard-File-7.png

  1. Radio button properties could be static , without hover to the panel like below attached image,

Clipboard-File-8.png

  1. can we change the button type in Survey Property panel,

for example :-Editable or read only to radio button and width mode to radio button attached image.

Clipboard-File-9.png

  1. is it possible to do the sign with pen or it is only we can type for signature?

  2. can we change drop down to radio button in survey properties for Navigation tab like below,

Clipboard-File-10.png

thanks & Regards,
Shubham Sharma.

Comments (1)

    Hello Shubham,
    Please let me clarify whether you have received a commercial developer license which enables access to SurveyJS Creator.

    Thanks

    Answers approved by surveyjs Support

    created a year ago

    Hello Shubham,

    1. It can be done via custom template similar to this example. You can have different code for designer (by using quesiton isDesign read-only property) and runtime.
    2. Yes, you can replace our actions with our actions. Delete the existing, add new actions and reorder them
    3. Yes, it is possible there are examples on our websites how to implement it. In 2-3 months we will have presets and you will be able to set the property grid in JSON and likely in UI in Creator Configurator.
    4. Yes, you can
    5. You will have to register your own render template for boolean question and render it as you need.
    6. I am not sure it is possible to implement easily. It may require a code modification on our side. It would require investigation. You can create a composite component and implement it by adding a new property and create text question on the fly. It would work.
    7. You can change all our icons.
    8. It could be done by changing a CSS rule. I don't remember that somebody asked it and we try to do it, but it is just a CSS rule that make it behavior like this that can be easily changed in custom configuration.
    9. You can do it by setting a custom property editor. I guess it will be easy for us to introduce "radio" property type since it will require couple lines of code and a Unit test to implement it. You will need to write about 20-30 lines of code to implement it. However, you are the first one who asked about changing buttons into radio group. In 3-4 months we will refresh our Property Grid. It will look cooler out of the box.
    10. You can implement your own question type if you don't like our Signature Pen that does exactly what you need.
    11. It is the same property editor as a button. If it doesn't have enough space or the type is set to "dropdown" then "dropdown" is used, otherwise button groups.

    Thank you,
    Andrew
    SurveyJS Team

      Other Answers

      created a year ago

      Hi Andrew ,

      Thank you very much for your clearification.

      could you please clearify below questions as well,

      1. can we add an image on the surveyCreater dashborad when there is no question addes, somthing like below,
        Clipboard-File-1.png

      2. while adding the image to the panel from the image picker is it possibe to show the options(delete, add) only when we will hover over the image in image picker ?

      Clipboard-File-2.png

      thanks,
      shubham sharma.

        Show previous comments (4)
          1. Here is the code
          JavaScript
          import { Serializer } from "survey-core"; Serializer.findProperty("multipletextitem", "maxLength").defaultValue = 45;
          1. Please review examples in this section.

          Thank you,
          Andrew
          SurveyJS Team

            Hi Andrew,

            thanks for reply but you got me wrong i think,

            my ask was what is the maxLength for multiple textboxes by default if i will not set anything.

            1. for signature can i upload image instead of sign?

            thanks.

              1. The default value is taken from survey.maxTextLength and it is 0 by default, so there is no limits.
                You can change it as you want.

              2. Then I don't understand the question. What do you mean "image"? signuture pad stores data in the image format. "png" is default. You can control it via dataFormat property. There are 3 options.

              Thank you,
              Andrew
              SurveyJS Team