<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>Terra Informatica Forums: Last 35 Posts</title>
<link>http://terrainformatica.com/forums/</link>
<description>Terra Informatica Forums: Last 35 Posts</description>
<language>en</language>
<pubDate>Thu, 07 Aug 2008 21:02:12 +0000</pubDate>

<item>
<title>Arun on "insert new elements dynamically using csss!"</title>
<link>http://terrainformatica.com/forums/topic.php?id=629&#038;page#post-3259</link>
<pubDate>Thu, 07 Aug 2008 03:41:03 +0000</pubDate>
<dc:creator>Arun</dc:creator>
<guid isPermaLink="false">3259@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;hmm no .. involves div's and widgets alone.
&lt;/p&gt;</description>
</item>
<item>
<title>andrew on "insert new elements dynamically using csss!"</title>
<link>http://terrainformatica.com/forums/topic.php?id=629&#038;page#post-3258</link>
<pubDate>Wed, 06 Aug 2008 11:35:52 +0000</pubDate>
<dc:creator>andrew</dc:creator>
<guid isPermaLink="false">3258@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;Is this about changing value of &amp;lt;textarea&amp;gt;/&amp;lt;plaintext&amp;gt; elements?
&lt;/p&gt;</description>
</item>
<item>
<title>Arun on "insert new elements dynamically using csss!"</title>
<link>http://terrainformatica.com/forums/topic.php?id=629&#038;page#post-3257</link>
<pubDate>Wed, 06 Aug 2008 01:09:13 +0000</pubDate>
<dc:creator>Arun</dc:creator>
<guid isPermaLink="false">3257@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;like&lt;br /&gt;
&amp;lt;tag1&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;tag2&amp;gt;&amp;lt;/tag2&amp;gt;         //wont change and no configuration allowed the user still has to type this in&lt;br /&gt;
&amp;lt;tag3&amp;gt;&amp;lt;/tag3&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/tag1&amp;gt;
&lt;/p&gt;</description>
</item>
<item>
<title>Arun on "insert new elements dynamically using csss!"</title>
<link>http://terrainformatica.com/forums/topic.php?id=629&#038;page#post-3256</link>
<pubDate>Wed, 06 Aug 2008 01:07:27 +0000</pubDate>
<dc:creator>Arun</dc:creator>
<guid isPermaLink="false">3256@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;Is it possible right to insert new elements just by using the csss!?&lt;/p&gt;
&lt;p&gt;I have a template SDK code which has some redundant tags, so i want it to get added automatically, so the user doesnt have to type it in. Is it possible ?
&lt;/p&gt;</description>
</item>
<item>
<title>Arun on "selector support in htmllayout"</title>
<link>http://terrainformatica.com/forums/topic.php?id=628&#038;page#post-3255</link>
<pubDate>Tue, 05 Aug 2008 13:23:47 +0000</pubDate>
<dc:creator>Arun</dc:creator>
<guid isPermaLink="false">3255@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;wow thanx a lot andrew .. tat did the trick..
&lt;/p&gt;</description>
</item>
<item>
<title>andrew on "selector support in htmllayout"</title>
<link>http://terrainformatica.com/forums/topic.php?id=628&#038;page#post-3254</link>
<pubDate>Tue, 05 Aug 2008 13:11:31 +0000</pubDate>
<dc:creator>andrew</dc:creator>
<guid isPermaLink="false">3254@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;Try this:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
  &amp;lt;style&amp;gt;
  div.heading
  {
    color:blue;
    behavior:check; // so it will flip-flop its :value from true to false
    value-changed!: self.next().hide-rows = self:value? &amp;quot;odd&amp;quot; # &amp;quot;even&amp;quot;;
  }
  div.heading:checked
  {
    color:red;
  }
  div.content[hide-rows=&amp;quot;odd&amp;quot;] &amp;gt; div:nth-child(odd) {display:none}
  div.content[hide-rows=&amp;quot;even&amp;quot;] &amp;gt; div:nth-child(even) {display:none}
  &amp;lt;/style&amp;gt;
&amp;lt;head&amp;gt;
&amp;lt;body&amp;gt;

&amp;lt;div id=&amp;quot;parent&amp;quot;&amp;gt;
  &amp;lt;div class=&amp;quot;heading&amp;quot;&amp;gt;heading&amp;lt;/div&amp;gt;
  &amp;lt;div class=&amp;quot;content&amp;quot;&amp;gt;
    &amp;lt;div&amp;gt;1&amp;lt;/div&amp;gt;
    &amp;lt;div&amp;gt;2&amp;lt;/div&amp;gt;
    &amp;lt;div&amp;gt;3&amp;lt;/div&amp;gt;
    &amp;lt;div&amp;gt;4&amp;lt;/div&amp;gt;
  &amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;

&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/code&gt;&lt;/pre&gt;</description>
</item>
<item>
<title>Arun on "selector support in htmllayout"</title>
<link>http://terrainformatica.com/forums/topic.php?id=628&#038;page#post-3253</link>
<pubDate>Tue, 05 Aug 2008 12:49:17 +0000</pubDate>
<dc:creator>Arun</dc:creator>
<guid isPermaLink="false">3253@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;actually its not a descendant but a sibling for the heading element.&lt;/p&gt;
&lt;p&gt;If heading value is 1 in the first div, i want to select all the even childs otherwise the odd childs (ofcourse except the first child).&lt;/p&gt;
&lt;p&gt;&amp;lt;div id=&quot;parent&quot;&amp;gt;&lt;br /&gt;
                 &amp;lt;div id=&quot;child1&quot; heading=&quot;1&quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;/p&gt;
&lt;p&gt;                 &amp;lt;div id=&quot;child2&quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
                 &amp;lt;div id=&quot;child3&quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
                    .&lt;br /&gt;
                    .&lt;br /&gt;
                 &amp;lt;div id=&quot;childn&quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;
&lt;/p&gt;</description>
</item>
<item>
<title>andrew on "selector support in htmllayout"</title>
<link>http://terrainformatica.com/forums/topic.php?id=628&#038;page#post-3252</link>
<pubDate>Tue, 05 Aug 2008 12:34:36 +0000</pubDate>
<dc:creator>andrew</dc:creator>
<guid isPermaLink="false">3252@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;For the first case:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;div:not([browser==&amp;quot;my_browser&amp;quot;]) {display:none}&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;I am not sure I understand second case. My best guess is that you need:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;div[heading=&amp;quot;0&amp;quot;] &amp;gt; div:nth-child(odd) {display:none}
div[heading=&amp;quot;1&amp;quot;] &amp;gt; div:nth-child(even) {display:none}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;List of supported selectors is here:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.terrainformatica.com/htmlayout/selectors.whtm&quot; rel=&quot;nofollow&quot;&gt;http://www.terrainformatica.com/htmlayout/selectors.whtm&lt;/a&gt;
&lt;/p&gt;</description>
</item>
<item>
<title>Arun on "selector support in htmllayout"</title>
<link>http://terrainformatica.com/forums/topic.php?id=628&#038;page#post-3251</link>
<pubDate>Tue, 05 Aug 2008 12:06:16 +0000</pubDate>
<dc:creator>Arun</dc:creator>
<guid isPermaLink="false">3251@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;Does htmllayout support the following type of element selection &lt;/p&gt;
&lt;p&gt;1)  inverted condition check in attribute selectors like &lt;/p&gt;
&lt;p&gt;div[browser!=&quot;my_browser&quot;] {display:none}&lt;/p&gt;
&lt;p&gt;2)   n-th sibling of an element&lt;/p&gt;
&lt;p&gt;&amp;lt;div&amp;gt;&lt;br /&gt;
    &amp;lt;div heading=&quot;1&quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;/p&gt;
&lt;p&gt;    &amp;lt;div id=&quot;evens&quot;&amp;gt;&amp;lt;/div&amp;gt;            &amp;lt;----- hide even childs if heading is 1&lt;br /&gt;
    &amp;lt;div id=&quot;odds&quot;&amp;gt;&amp;lt;/div&amp;gt;            &amp;lt;----- hide odd childs if heading is 0&lt;br /&gt;
&amp;lt;/div&amp;gt;
&lt;/p&gt;</description>
</item>
<item>
<title>Arun on "CSSS! - automatically identify scroll bar to an element"</title>
<link>http://terrainformatica.com/forums/topic.php?id=627&#038;page#post-3250</link>
<pubDate>Tue, 05 Aug 2008 12:00:26 +0000</pubDate>
<dc:creator>Arun</dc:creator>
<guid isPermaLink="false">3250@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;hey hey got it using the :: operator iam able to access the style attrbutes.
&lt;/p&gt;</description>
</item>
<item>
<title>Arun on "CSSS! - automatically identify scroll bar to an element"</title>
<link>http://terrainformatica.com/forums/topic.php?id=627&#038;page#post-3249</link>
<pubDate>Tue, 05 Aug 2008 11:54:14 +0000</pubDate>
<dc:creator>Arun</dc:creator>
<guid isPermaLink="false">3249@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;thnx a lot for your quick response this is really usefull (yet i didnt find any dynamic firing events), &lt;/p&gt;
&lt;p&gt;now i want to make some changes to the div element's child's style (in this case)&lt;br /&gt;
can you provide me some snippets on how to change styles using csss! ??
&lt;/p&gt;</description>
</item>
<item>
<title>andrew on "CSSS! - automatically identify scroll bar to an element"</title>
<link>http://terrainformatica.com/forums/topic.php?id=627&#038;page#post-3248</link>
<pubDate>Tue, 05 Aug 2008 10:50:22 +0000</pubDate>
<dc:creator>andrew</dc:creator>
<guid isPermaLink="false">3248@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;Yes, try this:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
  &amp;lt;style&amp;gt;
    div {
      width:50%;
      height:50%;
      border:1px solid;
      overflow:auto;
    }
    div
    {
      active-on! : span = $1(span),
                   span:value = self.box-client-width() &amp;lt; self.box-content-width()?
                   &amp;quot;h-scrollbar&amp;quot; #
                   &amp;quot;no-h-scrollbar&amp;quot;;
    }
  &amp;lt;/style&amp;gt;
&amp;lt;head&amp;gt;
&amp;lt;body&amp;gt;
  &amp;lt;span&amp;gt;result&amp;lt;/span&amp;gt;
  &amp;lt;div&amp;gt;longlonglonglonglonglonglonglonglonglonglonglonglonglonglong&amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/code&gt;&lt;/pre&gt;</description>
</item>
<item>
<title>Arun on "CSSS! - automatically identify scroll bar to an element"</title>
<link>http://terrainformatica.com/forums/topic.php?id=627&#038;page#post-3247</link>
<pubDate>Tue, 05 Aug 2008 10:04:08 +0000</pubDate>
<dc:creator>Arun</dc:creator>
<guid isPermaLink="false">3247@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;Is there a way for an element to check whether a scrollbar is drawn for it or not (due to overflow) using CSSS!&lt;br /&gt;
??
&lt;/p&gt;</description>
</item>
<item>
<title>andrew on "gui_task"</title>
<link>http://terrainformatica.com/forums/topic.php?id=626&#038;page#post-3246</link>
<pubDate>Tue, 05 Aug 2008 09:48:33 +0000</pubDate>
<dc:creator>andrew</dc:creator>
<guid isPermaLink="false">3246@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;You are passing &lt;code&gt;dom::element*&lt;/code&gt; ptr but inside xxxElementCallback you are treating it as HELEMENT*.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;BOOL CALLBACK xxxElementCallback( HELEMENT he, LPVOID param )
	{
		dom::element *pel = (dom::element *)param;
		*pel = he; // &amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;
		return true;
	}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I've marked line that will produce different code from yours.
&lt;/p&gt;</description>
</item>
<item>
<title>senyai on "gui_task"</title>
<link>http://terrainformatica.com/forums/topic.php?id=626&#038;page#post-3245</link>
<pubDate>Mon, 04 Aug 2008 07:18:23 +0000</pubDate>
<dc:creator>senyai</dc:creator>
<guid isPermaLink="false">3245@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;Hi there!&lt;br /&gt;
    From one thread I call 'gui_queue.push( new inject_in_id(rootElement,  element ) );' and then i see 'access violation'. The code work ok is there is no HTMLayoutVisitElements. Please, set me on the right path.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;struct inject_in_id: public htmlayout::gui_task
{
	htmlayout::dom::element el;
	htmlayout::dom::element root;

	static BOOL CALLBACK xxxElementCallback( HELEMENT he, LPVOID param )
	{
		HELEMENT *el = (HELEMENT*)param;
		(*el) = he;
		return true;
	}
	inject_in_id( const htmlayout::dom::element&amp;#38; _root, const htmlayout::dom::element&amp;#38; _el ): el(_el), root(_root) {}
	inline void exec() {
		htmlayout::dom::element where_ = NULL;
		//root.append(el);
		//root.update(true);

		HTMLayoutVisitElements(root, NULL, \&amp;quot;id\&amp;quot;, L\&amp;quot;debuglogs\&amp;quot;, xxxElementCallback, &amp;#38;where_, 0xff);
		where_.append(el);
		where_.update(true);
	}
};&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;So sorry for stupid question :)
&lt;/p&gt;</description>
</item>
<item>
<title>DmitryYakimov on "Linux port: Sciter or HTMLayout?"</title>
<link>http://terrainformatica.com/forums/topic.php?id=41&#038;page#post-3244</link>
<pubDate>Wed, 30 Jul 2008 02:54:24 +0000</pubDate>
<dc:creator>DmitryYakimov</dc:creator>
<guid isPermaLink="false">3244@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;I vote for MacOS, because it is more profitable for shareware/middle-size companies.
&lt;/p&gt;</description>
</item>
<item>
<title>x-zero on "Linux port: Sciter or HTMLayout?"</title>
<link>http://terrainformatica.com/forums/topic.php?id=41&#038;page#post-3243</link>
<pubDate>Tue, 29 Jul 2008 14:24:10 +0000</pubDate>
<dc:creator>x-zero</dc:creator>
<guid isPermaLink="false">3243@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;or just use wine
&lt;/p&gt;</description>
</item>
<item>
<title>andrew on "HTMLite"</title>
<link>http://terrainformatica.com/forums/topic.php?id=625&#038;page#post-3242</link>
<pubDate>Tue, 29 Jul 2008 00:15:12 +0000</pubDate>
<dc:creator>andrew</dc:creator>
<guid isPermaLink="false">3242@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;You can think about them as:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;HTMLiteMeasure = WM_SIZE
HTMLiteRender = WM_PAINT
HTMLiteRenderOnBitmap = WM_PRINT&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Not exactly but close enough.
&lt;/p&gt;</description>
</item>
<item>
<title>andrew on "Scintilla"</title>
<link>http://terrainformatica.com/forums/topic.php?id=623&#038;page#post-3241</link>
<pubDate>Tue, 29 Jul 2008 00:11:06 +0000</pubDate>
<dc:creator>andrew</dc:creator>
<guid isPermaLink="false">3241@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;It cannot.
&lt;/p&gt;</description>
</item>
<item>
<title>adontz on "HTMLite"</title>
<link>http://terrainformatica.com/forums/topic.php?id=625&#038;page#post-3240</link>
<pubDate>Mon, 28 Jul 2008 08:50:34 +0000</pubDate>
<dc:creator>adontz</dc:creator>
<guid isPermaLink="false">3240@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;May I have any comments on HTMLiteMeasure, HTMLiteRender, HTMLiteRenderOnBitmap parameters and call sequence?
&lt;/p&gt;</description>
</item>
<item>
<title>x-zero on "Scintilla"</title>
<link>http://terrainformatica.com/forums/topic.php?id=623&#038;page#post-3239</link>
<pubDate>Mon, 28 Jul 2008 02:59:10 +0000</pubDate>
<dc:creator>x-zero</dc:creator>
<guid isPermaLink="false">3239@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;it can work in htmlayout without change any code ?
&lt;/p&gt;</description>
</item>
<item>
<title>zverok on "Bug with dynamic frames creation"</title>
<link>http://terrainformatica.com/forums/topic.php?id=622&#038;page#post-3238</link>
<pubDate>Mon, 28 Jul 2008 02:40:35 +0000</pubDate>
<dc:creator>zverok</dc:creator>
<guid isPermaLink="false">3238@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;It is too old controvercy. In short: I'm not thinking about HTMLayout as about browser. Because I use it as UI library (to create and show application, not document).
&lt;/p&gt;</description>
</item>
<item>
<title>andrew on "about table row"</title>
<link>http://terrainformatica.com/forums/topic.php?id=621&#038;page#post-3237</link>
<pubDate>Sun, 27 Jul 2008 21:38:56 +0000</pubDate>
<dc:creator>andrew</dc:creator>
<guid isPermaLink="false">3237@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;I've fixed this in 3.3.0.9 but anyway I suggest to use last row as such a template.
&lt;/p&gt;</description>
</item>
<item>
<title>andrew on "About the calendar style"</title>
<link>http://terrainformatica.com/forums/topic.php?id=624&#038;page#post-3236</link>
<pubDate>Sun, 27 Jul 2008 21:36:05 +0000</pubDate>
<dc:creator>andrew</dc:creator>
<guid isPermaLink="false">3236@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;'cause &lt;code&gt;&amp;lt;input type=date/calendar&amp;gt;&lt;/code&gt; uses table inside. &lt;/p&gt;
&lt;p&gt;Define specifically what you want: &lt;/p&gt;
&lt;pre&gt;&lt;code&gt;table#table-manipulate
{
}
table#table-manipulate &amp;gt; tr:current
{
}
table#table-manipulate td
{
}
table#table-manipulate tr.header
{
}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;and everything will be all right.
&lt;/p&gt;</description>
</item>
<item>
<title>hlqyq on "About the calendar style"</title>
<link>http://terrainformatica.com/forums/topic.php?id=624&#038;page#post-3235</link>
<pubDate>Sun, 27 Jul 2008 18:50:27 +0000</pubDate>
<dc:creator>hlqyq</dc:creator>
<guid isPermaLink="false">3235@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;Why the style of calendar was affected by table style,even by my custom table style? example:&lt;/p&gt;
&lt;p&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
  &amp;lt;head&amp;gt;&lt;br /&gt;
    &amp;lt;meta http-equiv=Content-Type content=&quot;text/html;charset=gb2312&quot;&amp;gt;&lt;br /&gt;
    &amp;lt;style&amp;gt;&lt;br /&gt;
       table&lt;br /&gt;
      {&lt;br /&gt;
        behavior:grid;&lt;br /&gt;
        overflow:auto;&lt;br /&gt;
        width:80%%; height:50%%;&lt;br /&gt;
        border-spacing:0;&lt;br /&gt;
        background-color:white;&lt;br /&gt;
        border:1px solid silver;&lt;br /&gt;
      }&lt;br /&gt;
      table &amp;gt; tr:current&lt;br /&gt;
      {&lt;br /&gt;
        color:white;&lt;br /&gt;
        background-color:blue;&lt;/p&gt;
&lt;p&gt;      }&lt;br /&gt;
      table td&lt;br /&gt;
      {&lt;br /&gt;
        padding:2px 3px;&lt;br /&gt;
        border:1px solid;&lt;br /&gt;
        border-color: transparent silver silver transparent;&lt;br /&gt;
        width:*;&lt;br /&gt;
      }&lt;br /&gt;
      table tr.header&lt;br /&gt;
      {&lt;br /&gt;
        background-color:silver silver black black;&lt;br /&gt;
        color:white;&lt;br /&gt;
      }&lt;br /&gt;
     &amp;lt;/style&amp;gt;&lt;br /&gt;
  &amp;lt;/head&amp;gt;&lt;br /&gt;
  &amp;lt;body&amp;gt;&lt;br /&gt;
    &amp;lt;table fixedrows=1 fixedlayout id=&quot;table-manipulate&quot;&amp;gt;&lt;br /&gt;
      &amp;lt;tr .header &amp;gt;&amp;lt;td&amp;gt;姓名&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;年龄&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;体重&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
      &amp;lt;tr .prototype style=&quot;display:block&quot;&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;张三&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;18&amp;lt;/td&amp;gt;&lt;br /&gt;
        &amp;lt;td&amp;gt;&amp;lt;input type=&quot;date&quot; /&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
      &amp;lt;/tr&amp;gt;&lt;br /&gt;
    &amp;lt;/table&amp;gt;&lt;br /&gt;
  &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;
&lt;/p&gt;</description>
</item>
<item>
<title>hlqyq on "about table row"</title>
<link>http://terrainformatica.com/forums/topic.php?id=621&#038;page#post-3234</link>
<pubDate>Sun, 27 Jul 2008 18:25:21 +0000</pubDate>
<dc:creator>hlqyq</dc:creator>
<guid isPermaLink="false">3234@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;Thanks,I use the hidden row as a prototype row to write a common table manipulate,such as InsertRow、AppendRow、RemoveRow、ClearRows、MoveUpRow,MoveDownRow...
&lt;/p&gt;</description>
</item>
<item>
<title>andrew on "Bug with dynamic frames creation"</title>
<link>http://terrainformatica.com/forums/topic.php?id=622&#038;page#post-3233</link>
<pubDate>Sun, 27 Jul 2008 17:41:41 +0000</pubDate>
<dc:creator>andrew</dc:creator>
<guid isPermaLink="false">3233@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;DOM API in htmlayout is pretty low level thing. And I would like to keep it this way.&lt;br /&gt;
Means that not everything works as you would expect in browser.&lt;br /&gt;
And I have doubts that it is even possible to create frames dynamically in conventional browsers.
&lt;/p&gt;</description>
</item>
<item>
<title>andrew on "Scintilla"</title>
<link>http://terrainformatica.com/forums/topic.php?id=623&#038;page#post-3232</link>
<pubDate>Sun, 27 Jul 2008 17:34:20 +0000</pubDate>
<dc:creator>andrew</dc:creator>
<guid isPermaLink="false">3232@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;For Sciter - yes. That is sciter-scintilla.dll&lt;br /&gt;
It is in Sciter SDK and is a part of ScIDE:&lt;br /&gt;
&lt;a href=&quot;http://www.terrainformatica.com/sciter/scide.zip&quot; rel=&quot;nofollow&quot;&gt;http://www.terrainformatica.com/sciter/scide.zip&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Screenshot:&lt;br /&gt;
&lt;a href=&quot;http://www.terrainformatica.com/screenshots/scide.png&quot; rel=&quot;nofollow&quot;&gt;http://www.terrainformatica.com/screenshots/scide.png&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Sources of sciter-scintilla.dll are here:&lt;br /&gt;
&lt;a href=&quot;http://www.terrainformatica.com/sciter/sciter-scintilla.zip&quot; rel=&quot;nofollow&quot;&gt;http://www.terrainformatica.com/sciter/sciter-scintilla.zip&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;That is slightly modified version of original Scintilla distribution + behavior code (folder /sciter/). It could be ported to htmlayout if needed.
&lt;/p&gt;</description>
</item>
<item>
<title>x-zero on "Scintilla"</title>
<link>http://terrainformatica.com/forums/topic.php?id=623&#038;page#post-3231</link>
<pubDate>Sun, 27 Jul 2008 16:12:07 +0000</pubDate>
<dc:creator>x-zero</dc:creator>
<guid isPermaLink="false">3231@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;is there behavior who have Scintilla support ?
&lt;/p&gt;</description>
</item>
<item>
<title>andrew on "About frame"</title>
<link>http://terrainformatica.com/forums/topic.php?id=15&#038;page#post-3230</link>
<pubDate>Sun, 27 Jul 2008 11:45:37 +0000</pubDate>
<dc:creator>andrew</dc:creator>
<guid isPermaLink="false">3230@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;cellspacing=X is:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;table { border-spacing:Xpx; }&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;cellpadding=X is:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;table td { padding:Xpx; }&lt;/code&gt;
&lt;/p&gt;</description>
</item>
<item>
<title>andrew on "What exectly the support is?"</title>
<link>http://terrainformatica.com/forums/topic.php?id=617&#038;page#post-3229</link>
<pubDate>Sun, 27 Jul 2008 11:38:41 +0000</pubDate>
<dc:creator>andrew</dc:creator>
<guid isPermaLink="false">3229@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;I've sent an answer.
&lt;/p&gt;</description>
</item>
<item>
<title>x-zero on "About frame"</title>
<link>http://terrainformatica.com/forums/topic.php?id=15&#038;page#post-3228</link>
<pubDate>Sun, 27 Jul 2008 07:15:21 +0000</pubDate>
<dc:creator>x-zero</dc:creator>
<guid isPermaLink="false">3228@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;cellspacing=&quot;-2&quot;  fixed my problem.
&lt;/p&gt;</description>
</item>
<item>
<title>zverok on "Bug with dynamic frames creation"</title>
<link>http://terrainformatica.com/forums/topic.php?id=622&#038;page#post-3227</link>
<pubDate>Sun, 27 Jul 2008 01:08:36 +0000</pubDate>
<dc:creator>zverok</dc:creator>
<guid isPermaLink="false">3227@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;aha, old good &quot;third-class-ness&quot; of dynamically created DOM!
&lt;/p&gt;</description>
</item>
<item>
<title>andrew on "Bug with dynamic frames creation"</title>
<link>http://terrainformatica.com/forums/topic.php?id=622&#038;page#post-3226</link>
<pubDate>Sat, 26 Jul 2008 16:15:47 +0000</pubDate>
<dc:creator>andrew</dc:creator>
<guid isPermaLink="false">3226@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;That is not a bug strictly speaking. Attributes are used for initialization of runtime values. When your frameset appears in the DOM it has no children so processing of cols discarded.&lt;/p&gt;
&lt;p&gt;Either use following styling:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;frameset { flow:horizontal; border-spacing:3px; }
frameset &amp;gt; :nth-child(1) { width:2*; height:*; }
frameset &amp;gt; :nth-child(2) { width:8*; height:*; }&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;or create frameset content first and then add it to the DOM.
&lt;/p&gt;</description>
</item>
<item>
<title>andrew on "about table row"</title>
<link>http://terrainformatica.com/forums/topic.php?id=621&#038;page#post-3225</link>
<pubDate>Sat, 26 Jul 2008 15:37:11 +0000</pubDate>
<dc:creator>andrew</dc:creator>
<guid isPermaLink="false">3225@http://terrainformatica.com/forums/</guid>
<description>&lt;p&gt;&amp;lt;table fixedlayout&amp;gt; uses height of first non-header row as a value of height of all other rows. In your case row has zero height (display:none) that is why all other rows are not visible. &lt;/p&gt;
&lt;p&gt;Algorithm shall use visible rows for calculations in fact. I'll fix that.
&lt;/p&gt;</description>
</item>

</channel>
</rss>
