﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebTextEditor - Styling a SpellChecker</title><link>http://www.intersoftsolutions.com/Community/WebTextEditor/Styling-a-SpellChecker/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Styling a SpellChecker</title><link>http://www.intersoftsolutions.com/Community/WebTextEditor/Styling-a-SpellChecker/</link><pubDate>Thu, 12 Nov 2009 02:04:15 GMT</pubDate><dc:creator>yudi</dc:creator><category>Style</category><category>SpellChecker</category><description>&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;Glad to hear that the issue is solved now.&lt;br /&gt;Please feel free to contact us with any questions or concerns you may have.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;Thank you for your contribution in our community.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Styling a SpellChecker</title><link>http://www.intersoftsolutions.com/Community/WebTextEditor/Styling-a-SpellChecker/</link><pubDate>Tue, 10 Nov 2009 22:47:01 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><category>Style</category><category>SpellChecker</category><description>&lt;p&gt;Unfortunately, i think it would be more helpfull if you are doing it via client side. Because some elements which need to be customized and also the timeout which you were using, only available on clientside.&lt;/p&gt;&lt;p&gt;Regards,&lt;br /&gt;Handy &lt;/p&gt;</description></item><item><title>Styling a SpellChecker</title><link>http://www.intersoftsolutions.com/Community/WebTextEditor/Styling-a-SpellChecker/</link><pubDate>Tue, 10 Nov 2009 17:42:17 GMT</pubDate><dc:creator>ewoudt@counton.com.au</dc:creator><category>Style</category><category>SpellChecker</category><description>&lt;p&gt;Thanks, that's very useful, i was hoping there was a way of setting it server-side, which would make it much simpler if your doing many of them,&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;This works brilliantly though, &lt;/p&gt;
&lt;p&gt;Thank you&lt;/p&gt;</description></item><item><title>Styling a SpellChecker</title><link>http://www.intersoftsolutions.com/Community/WebTextEditor/Styling-a-SpellChecker/</link><pubDate>Tue, 10 Nov 2009 04:49:37 GMT</pubDate><dc:creator>yudi</dc:creator><category>Style</category><category>SpellChecker</category><description>&lt;blockquote&gt;&lt;p&gt;I want to change the z-index because i have a div which has a higher z-index than the spellchecker's z-index, so i can't actually see the spellchecker div.&lt;/p&gt;&lt;p&gt;I also would like to change the shadows around the spellchecking popup if at all possible?&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;Actually, that javascript popup is WebDialogBox control. You can set the z-index of WebDialogBox control on OnAfterCheckSpell client side event of WebSpellChecker by using following script/code.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;function WebSpellChecker1_OnAfterCheckSpell() {
    var sp = ISGetObject("WebSpellChecker1");
    window.setTimeout(function() {
        sp.DialogBox.Window.GetWindowDivElement().style.zIndex = 201;
        sp.DialogBox.Shadow.style.zIndex = 201;
        }, 1000);
}&lt;/pre&gt;

&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;I’d like to propose a simpler way. That is by setting your div element (that its z-index value is greater than the dialogbox of WebSpellChecker) to have its z-index value less than 102 (102 is the default z-index value of the dialogbox).&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;Please let us know your response.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Styling a SpellChecker</title><link>http://www.intersoftsolutions.com/Community/WebTextEditor/Styling-a-SpellChecker/</link><pubDate>Mon, 09 Nov 2009 22:07:31 GMT</pubDate><dc:creator>ewoudt@counton.com.au</dc:creator><category>Style</category><category>SpellChecker</category><description>&lt;p&gt;Hello, &lt;/p&gt;&lt;p&gt;There is a javascript popup that gets shown when using the Spellchecker as seen in the &lt;a href="http://live.intersoftpt.com/cs/WebTextEditor/WebSpellChecker/WebSpellChecker_CommonControl.aspx?noframe=1&amp;amp;path=/WebTextEditor/Spell Checker" target="_blank"&gt;Live Demo&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I want to change the z-index because i have a div which has a higher z-index than the spellchecker's z-index, so i can't actually see the spellchecker div.&lt;/p&gt;
&lt;p&gt;I also would like to change the shadows around the spellchecking popup if at all possible?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Ewoudt&lt;/p&gt;</description></item><item><title>Styling a SpellChecker</title><link>http://www.intersoftsolutions.com/Community/WebTextEditor/Styling-a-SpellChecker/</link><pubDate>Mon, 09 Nov 2009 04:02:16 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><category>Style</category><category>SpellChecker</category><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;Welcome to Intersoft Solutions. We glad that you are trying our controls. May i know your requirement? WebSpellChecker is not an UI control, so, why do you need to change z-index and styles?&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>Styling a SpellChecker</title><link>http://www.intersoftsolutions.com/Community/WebTextEditor/Styling-a-SpellChecker/</link><pubDate>Sun, 08 Nov 2009 19:04:03 GMT</pubDate><dc:creator>ewoudt@counton.com.au</dc:creator><category>Style</category><category>SpellChecker</category><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Thanks in advance for any help,&lt;/p&gt;
&lt;p&gt;I'm sorry if this is an obvious question, i'm new at using intersoft :-)&lt;/p&gt;
&lt;p&gt;I have a need to change the z-index of the spellchecker and some other styles, does anybody know how i can go about this?&lt;/p&gt;</description></item></channel></rss>