I am trying to use RadSpell , but a web.config security setting is not allowing RadSpell to open it's frame popup window. The security setting is a must setting , i can not remove this setting. This setting is to prevent click jacking. ( more on this - https://www.owasp.org/index.php/Clickjacking)
Here is my web config setting.
<httpProtocol>
<customHeaders>
<clear/>
<add name="Strict-Transport-Security" value="max-age=31536000; includeSubDomains" />
<add name="X-Frame-Options" value="DENY"/>
<add name="Content-Security-Policy" value="frame-ancestors 'inherit' " />
<remove name="X-AspNet-Version" />
<remove name="X-Powered-By" />
</customHeaders>
</httpProtocol>
Hi,
I have a scenario where i wanted a textbox against a list of employees to enter some details. I want to disable the selection text while still being able retrieve the details entered against each employee in the given textbox. I could have used a grid control but for something this simple I like the dropdown feature of combobox. I was able to get the textbox in the template but I wasn't able to disable/hide the selection text. Is this doable?
I am using kendo ui for scheduler and it is working as I needed but when i represent more part of data thorugh tootip and provide some action over contextmenu. The tooltip overlap on the contextmenu makes contextmenu invisible for the tooptip portion only. following are the scenarios in the images attached.
Following are two images shows the problem exactly.
Hi,
I am pasting a sample html using editor.Pastehtml method in sitecore 8.1 Rich text editor and it removes iframe tags after pasting. It works in few scenarios like
1. when the editor is empty.
2. When we paste at the end of the entire html.
3. It works when there is one frame tag, but when there are two it removes both and pastes the left out.
Below is the sample html that i am trying to paste to the editor.
"<div class="root"><p class="article-exhibit__header iframe-header_57aa38e436cf474fa4eaeaa77c7fb05d">header</p> <p class="article-exhibit__title iframe-title_57aa38e436cf474fa4eaeaa77c7fb05d">title</p> <div class="iframe-component"> <div class="iframe-component__desktop ewf-desktop-iframe_57aa38e436cf474fa4eaeaa77c7fb05d" data-mediaid="57aa38e436cf474fa4eaeaa77c7fb05d" data-embed-link="enabled"> <iframe width="560" height="315" src="https://www.youtube.com/embed/x56ipAMMmLA" frameborder="0" class="ewf-desktop-iframe_57aa38e436cf474fa4eaeaa77c7fb05d"></iframe> </div> <div class="iframe-component__mobile ewf-mobile-iframe_57aa38e436cf474fa4eaeaa77c7fb05d" data-embed-link="enabled"> <iframe width="560" height="315" src="https://www.youtube.com/embed/x56ipAMMmLA" frameborder="0" class="ewf-mobile-iframe_57aa38e436cf474fa4eaeaa77c7fb05d"></iframe> </div> </div> <p class="article-exhibit__caption iframe-caption_57aa38e436cf474fa4eaeaa77c7fb05d">caption</p> <p class="article-exhibit__source iframe-source_57aa38e436cf474fa4eaeaa77c7fb05d">source</p> </div>"
Can anyone help me with this? Please let me know if you need any other information.
Hi,
I want to keep Tasks reordering (up/down), which is a great feature. But I don't want tasks to be added as a child tasks during this order.
Is it possible to keep the task reorder, but to disable "Drop over certain task and make it a child task." ?
We are using the RadScheduler to view and manipulate the doctors appointment list.
In day view we want to show the patient name and also som detailed information - neatly organised as in multiple columns.
We have tried using formating options for the Appointment.Description like "{0}\t{1}\t" and "{0,30} {1,10}" which doesn't seem to help.
Our goal is to see appointment organised like this:
09:20 JACK NICHOLSON 22.04.1937 GPO YYN
09:40 LINDA BLAIR 22.01.1959 KL YN
What we get is this:
09:20 JACK NICHOLSON 22.04.1937 GPO YYN
09:40 LINDA BLAIR 22.01.1959 KL YN
Is there a way to make the string formatting work as expected (simplest) or to add string objects with predefined width to the appointments (more complex).
Best regards,
Gunnar