Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
55
Iggrid's edit row doesn't support textarea
posted

Hi,

I have a edtable grid, a column's edit type is "Text", i want to set the editor's textmode to multiline, but i dont' find any property in the ColumnUpdatingTextEditorOptions can be set, so I set the "textMode" to multiline when the "iggridupdatingeditrowstarted" event occured, but it is doesn't work.

The igTextEditor Known Issues have listed this issue:

  • When the base element is an INPUT element, setting the textMode option to multiline is not supported.

Is there any other  workaround ways to make the igEditor to support the multiline? When will the issue be fixed?

Thanks

Parents
No Data
Reply
  • 17559
    posted

    Hello lin mu,

     

    I have been looking into your questions and I can suggest you set the following options in the columnSettings of the Updating feature:

      {

         columnKey: "Name",

         editorType: "text",

         editorOptions: {

            textMode : "multiline"

         }

        

         }

    For additional reference please check the attached sample which I have created for you in order to show this behavior.

     

    If you need any further assistance on this matter please feel free to ask.

     

    MultilineEditor.zip
Children