Skip to main content

Idea pipeline (top 25)

1815 Ideas

Erwin EkkelModerator

Improved HTML control in regards to Copy-PasteOpen

Can we get a better control for the HTML fields in universal? Trying to copy advanced text into a html control is a chore.Here are some examples of annoyances:Copying from Notepad/notepad++ removes all kind of textWhen putting this text in Notepad/Notepad++:<this is not copied> this is copied <not there> <not there as well> is thereAnd copy pasting into the HTML editor in Universal, I end up with:this is copied is thereCopying from sql removes the layout. When putting this text in SQL Server Management Studio:    -- Drop all referenced foreign keys    select @sql = @sql + N'alter table ' + quotename(t2.name) + N' drop constraint ' + quotename(f.name) + N' ' + char(10) + char(13)      from sys.foreign_keys f      join sys.tables t        on t.object_id = f.referenced_object_id      join sys.tables t2        on t2.object_id = f.parent_object_id     where t.name = @tab_idAnd copy pasting into the HTML editor in Universal, I end up with:  -- Drop all referenced foreign keys select @sql = @sql + N'alter table ' + quotename(t2.name) + N' drop constraint ' + quotename(f.name) + N' ' + char(10) + char(13) from sys.foreign_keys f join sys.tables t on t.object_id = f.referenced_object_id join sys.tables t2 on t2.object_id = f.parent_object_id where t.name = @tab_id- When copying from Teams, the newlines also get removed. - Copying from webbrowser also copies the background colourThis makes creating a simple instruction in an html field almost impossible. So I regularly choose to upload a Word file instead of trying to get this to work in a html field.