Hi
I have this code for insert html text in RTE. In all browsers it works fine, except in Safari because it inserts the text at the beginning of the RTE area.
This functionallity does not apply for Safari?
private async Task SelectedPopupItemsHandler(MenuEventArgs<MenuItem> e)
{
//await RteObj.SaveSelection();
await Task.Delay(500);
if (e.Item.Text == "D4")
{
await RteObj.ExecuteCommand(CommandName.InsertHTML, "<span style='color: brown;background-color: white'>" + WebApp.Tools.Tools.GetDate() + "</span>");
}
//await RteObj.RestoreSelection();
}