Hi allI am looking for a solution to set CellMultiLine with ScrollBars on only one celland not on the complete column.I only found Column.CellMultiLine.Thanks you a quick feedback.Best regardsFrank Uray
Optionally, you can drag an UltraControlContainerEditor into the designer assign the editorConrol property to the ultratexteditor and set the cell's editorcomponent property to be the container.
That way you can insure that only this editor will have multiline, scrollbars, etc and not the rest of the column.
this.ultraControlContainerEditor1.EditingControl = ultraTextEditor1; ultraTextEditor1.Multiline = true; ultraTextEditor1.BorderStyle = Infragistics.Win.UIElementBorderStyle.None; ultraTextEditor1.Scrollbars = ScrollBars.Both; this.ultraGrid1.Rows[2].Cells[0].EditorComponent = ultraControlContainerEditor1;
I attached a sample demonstrating this.
Well, I guess you have some problem on your website.Look at the image here: http://www.symmetric.ch/_Downloads/CellMultiLineTest.jpg
ok, next try :-)Exception was: System.ComponentModel.Win32Exception: The wait operation timed outI tried to attach a .png file, now I try a .jpg.
Somehow, the attachment did not work ... here next try :-)
Hi MichaelThank you for the sample. This is almost it :-)When you look at my screenshot: when the cell is in edit mode all the text is shown,but when the cell is not in edit mode, only the first line is shown.How can this be done ?Also, when the cell is in edit mode, the left side of the cell does not look right.Thank you already for your effort.Kind regardsFrank