<?xml version="1.0" encoding="windows-1252"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>SmartClient Forums - Forums</title>
		<link>https://forums.smartclient.com/</link>
		<description>vBulletin Forums</description>
		<language>en</language>
		<lastBuildDate>Sat, 06 Jun 2026 22:30:02 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>images/misc/rss.png</url>
			<title>SmartClient Forums - Forums</title>
			<link>https://forums.smartclient.com/</link>
		</image>
		<item>
			<title>TreeGrid.setIndentSize() is not working</title>
			<link>https://forums.smartclient.com/forum/smart-gwt-technical-q-a/277568-treegrid-setindentsize-is-not-working</link>
			<pubDate>Sat, 06 Jun 2026 20:00:03 GMT</pubDate>
			<description>Hello, 
 
TreeGrid method setIndentSize() has no effect for quite some time. Last SmartGWT version that I have archived that it was working is 14.1p...</description>
			<content:encoded><![CDATA[Hello,<br />
<br />
TreeGrid method setIndentSize() has no effect for quite some time. Last SmartGWT version that I have archived that it was working is 14.1p 2025-06-27.<br />
I've checked versions from 2026-12 and from 2026-01 and it wasn't.<br />
<br />
Simple test case from showcase:<br />

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(1000 *  + 12px + 20px);">        TreeNode&#91;&#93; employeeData = new TreeNode&#91;&#93; {
                new EmployeeTreeNode(&quot;4&quot;, &quot;1&quot;, &quot;Charles Madigen&quot;),
                new EmployeeTreeNode(&quot;189&quot;, &quot;4&quot;, &quot;Gene Porter&quot;),
                new EmployeeTreeNode(&quot;265&quot;, &quot;189&quot;, &quot;Olivier Doucet&quot;),
                new EmployeeTreeNode(&quot;264&quot;, &quot;189&quot;, &quot;Cheryl Pearson&quot;),
                new EmployeeTreeNode(&quot;188&quot;, &quot;4&quot;, &quot;Rogine Leger&quot;)
        };

        Tree employeeTree = new Tree();
        employeeTree.setModelType(TreeModelType.PARENT);
        employeeTree.setIdField(&quot;EmployeeId&quot;);
        employeeTree.setParentIdField(&quot;ReportsTo&quot;);
        employeeTree.setNameProperty(&quot;Name&quot;);
        employeeTree.setRootValue(1);
        employeeTree.setData(employeeData);

        TreeGrid employeeTreeGrid = new TreeGrid();
        employeeTreeGrid.setWidth(500);
        employeeTreeGrid.setHeight(400);
        employeeTreeGrid.setFields(new TreeGridField(&quot;Name&quot;));
        employeeTreeGrid.setData(employeeTree);
        employeeTreeGrid.setIndentSize(0);
        employeeTreeGrid.setShowConnectors(false);

        this.addChild(employeeTreeGrid);</pre>
</div>Write now if I set setIndentSize(0) or set setIndentSize(100) it's just doesn't matter. It's rendered like with default 20 value.<br />
If I check value in developers console 
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(1000 *  + 12px + 20px);">isc_TreeGrid_0.indentSize</pre>
</div> it's set correctly but it appears it's not used anymore.<br />
When I reverted to SmartGWT 14.1p 2025-06-27 above example works fine.<br />
<br />
Best regards<br />
<br />
]]></content:encoded>
			<category domain="https://forums.smartclient.com/forum/smart-gwt-technical-q-a"><![CDATA[Smart GWT Technical Q&amp;A]]></category>
			<dc:creator>pH4Lk0n</dc:creator>
			<guid isPermaLink="true">https://forums.smartclient.com/forum/smart-gwt-technical-q-a/277568-treegrid-setindentsize-is-not-working</guid>
		</item>
		<item>
			<title><![CDATA[React 19 compatibility issue &#8211; element.ref access error in SmartClient ReactComponent]]></title>
			<link>https://forums.smartclient.com/forum/technical-q-a/277567-react-19-compatibility-issue-%E2%80%93-element-ref-access-error-in-smartclient-reactcomponent</link>
			<pubDate>Thu, 04 Jun 2026 19:11:10 GMT</pubDate>
			<description>After upgrading to React 19, we are encountering a runtime issue inside SmartClient React integration. 
 
The error appears when calling: 
 
 
const...</description>
			<content:encoded><![CDATA[After upgrading to React 19, we are encountering a runtime issue inside SmartClient React integration.<br />
<br />
The error appears when calling:<br />

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(1000 *  + 12px + 20px);">const button = this.loadButtonRef.current?.getSCComponent();</pre>
</div>Error message<br />
<div class="bbcode_container">
	<div class="bbcode_quote">
		<div class="quote_container">
			<div class="bbcode_quote_container b-icon b-icon__ldquo-l--gray"></div>
			
				Accessing element.ref was removed in React 19. ref is now a regular prop.<br />
It will be removed from the JSX Element type in a future release.
			
		</div>
	</div>
</div>Stack trace<br />
<div class="bbcode_container">
	<div class="bbcode_quote">
		<div class="quote_container">
			<div class="bbcode_quote_container b-icon b-icon__ldquo-l--gray"></div>
			
				ReactComponent.js:261<br />
ReactComponent.js:326<br />
ReactComponent.js:328<br />
ReactComponent.js:218<br />
ReactComponent.js:66<br />
&lt;ToolStrip&gt;<br />
render OnlineUsers.js:115
			
		</div>
	</div>
</div> Version v13.1p_2026-03-13/Pro Deployment (2026-03-13)<br />
]]></content:encoded>
			<category domain="https://forums.smartclient.com/forum/technical-q-a"><![CDATA[Technical Q&amp;A]]></category>
			<dc:creator>Hirn</dc:creator>
			<guid isPermaLink="true">https://forums.smartclient.com/forum/technical-q-a/277567-react-19-compatibility-issue-%E2%80%93-element-ref-access-error-in-smartclient-reactcomponent</guid>
		</item>
		<item>
			<title>Jakarta EE 11 version clarity</title>
			<link>https://forums.smartclient.com/forum/technical-q-a/277566-jakarta-ee-11-version-clarity</link>
			<pubDate>Thu, 04 Jun 2026 13:59:47 GMT</pubDate>
			<description><![CDATA[We know 
 
 13.1 is on JavaX. 
 14.0 is JavaX 
 14.1 is Jakarta EE 9/10 compliant 
 15.0 is  ? 
 I'm already using 14.1p with my Jakarta EE 10 app...]]></description>
			<content:encoded><![CDATA[We know<ul><li>13.1 is on JavaX.</li>
<li>14.0 is JavaX</li>
<li>14.1 is Jakarta EE 9/10 compliant</li>
<li>15.0 is  ?</li>
</ul>I'm already using 14.1p with my Jakarta EE 10 app<br />
I'm planning to upgrade my app to Jakarta EE 11 standards,<br />
<br />
Question is can I continue using 14.1 ? or will I need to upgrade to 15.0/15.1 ? ]]></content:encoded>
			<category domain="https://forums.smartclient.com/forum/technical-q-a"><![CDATA[Technical Q&amp;A]]></category>
			<dc:creator>tjaggi</dc:creator>
			<guid isPermaLink="true">https://forums.smartclient.com/forum/technical-q-a/277566-jakarta-ee-11-version-clarity</guid>
		</item>
		<item>
			<title>SmartGWTPro 14.0 - Stratus theme- menuTitleFieldSelected CSS not applied consistently</title>
			<link>https://forums.smartclient.com/forum/smart-gwt-technical-q-a/277560-smartgwtpro-14-0-stratus-theme-menutitlefieldselected-css-not-applied-consistently</link>
			<pubDate>Mon, 01 Jun 2026 07:46:46 GMT</pubDate>
			<description>Hi Support Team, 
 
I am using SmartGWTPro 14.0 (licensed version). 
 
I modified the Stratus theme CSS to customize the menu appearance. While...</description>
			<content:encoded><![CDATA[Hi Support Team,<br />
<br />
I am using SmartGWTPro 14.0 (licensed version).<br />
<br />
I modified the Stratus theme CSS to customize the menu appearance. While testing the changes, I noticed that the hover/selected state styling does not behave consistently.<br />
<br />
The CSS class menuTitleFieldSelected is applied correctly when I initially select a menu item and move to its submenu. However, after selecting a different menu and then returning to the original menu, the selected item no longer uses menuTitleFieldSelected. Instead, it switches to menuTitleFieldOver, even though the menu item is still selected.<br />
<br />
As a result, the selected-state styling is lost and the hover-state styling is displayed instead.<br />
<br />
Please refer to the attached screenshots for the behavior I am seeing.<br />
<br />
Below is the modified CSS snippet I am using:<br />
<br />
--<br />
.menuTitleField,<br />
.menuTitleFieldDark,<br />
.menuTitleFieldSelected,<br />
.menuTitleFieldSelectedDark,<br />
.menuTitleFieldOver,<br />
.menuTitleFieldOverDark,<br />
.menuTitleFieldSelectedOver,<br />
.menuTitleFieldSelectedOverDark,<br />
.menuTitleFieldDisabled,<br />
.menuTitleFieldDisabledDark {<br />
  background-color: transparent;<br />
<br />
    color: #3d3935;<br />
<br />
    border-top: none;<br />
<br />
    border-bottom: none;<br />
<br />
    border-left: 2px solid transparent;<br />
<br />
    vertical-align: middle;<br />
<br />
    font-family:<br />
        &quot;Open Sans&quot;,<br />
        system-ui,<br />
        -apple-system,<br />
        &quot;Segoe UI&quot;,<br />
        sans-serif;<br />
<br />
    font-size: 13.5px;<br />
<br />
    line-height: 1.2;<br />
<br />
    white-space: nowrap;<br />
<br />
    padding: 9px 14px 9px 16px;<br />
}<br />
<br />
.menuTitleFieldOver,<br />
.menuTitleFieldSelected,<br />
.menuTitleFieldOverDark,<br />
.menuTitleFieldSelectedOver,<br />
.menuTitleFieldSelectedOverDark {<br />
  background-color: #f4f4f4;<br />
    color: #3d3935;<br />
}<br />
<br />
.menuTitleFieldSelected {<br />
   background-color: #e3ecf5;<br />
    color: #326295;<br />
<br />
    font-weight: 600;<br />
<br />
    border-left-color: #326295;<br />
}<br />
<br />
/* =========================================================<br />
   Disabled<br />
   ========================================================= */<br />
<br />
.menuTitleFieldDisabled,<br />
.menuTitleFieldDisabledDark {<br />
    color: #999999;<br />
}<br />
----------------<br />
<br />
Could you please confirm whether this is the expected behavior in SmartGWT 14.0 or if there is any additional CSS or configuration required to ensure that menuTitleFieldSelected is consistently applied to selected menu items?<br />
<br />
Thanks,<br />
Revan<br />
]]></content:encoded>
			<category domain="https://forums.smartclient.com/forum/smart-gwt-technical-q-a"><![CDATA[Smart GWT Technical Q&amp;A]]></category>
			<dc:creator>revanbhapri</dc:creator>
			<guid isPermaLink="true">https://forums.smartclient.com/forum/smart-gwt-technical-q-a/277560-smartgwtpro-14-0-stratus-theme-menutitlefieldselected-css-not-applied-consistently</guid>
		</item>
		<item>
			<title>Datasources cause a problem when loading same screen twice. Unclear when to use loadID</title>
			<link>https://forums.smartclient.com/forum/smart-gwt-technical-q-a/277553-datasources-cause-a-problem-when-loading-same-screen-twice-unclear-when-to-use-loadid</link>
			<pubDate>Thu, 21 May 2026 13:33:12 GMT</pubDate>
			<description>Hello, 
 
we are currently working to update to V14.1-p20260213/Power. 
We are using ui.xmls and ds.xmls to create the uis of our app.  In most cases...</description>
			<content:encoded><![CDATA[Hello,<br />
<br />
we are currently working to update to V14.1-p20260213/Power.<br />
We are using ui.xmls and ds.xmls to create the uis of our app.  In most cases this works even after the update.<br />
To load the screens we use the RPCManager.loadScreen method with the allGlobals flag.<br />
<br />
In the following description I have replaced all internal data but the important parts should all be available.<br />
<br />
Now for my problem. We have a button which should create a window in which a few datasources are needed. <br />
For that window an ui.xml exists.<br />
For the first call this works. But after closing the window and pressing the button again which should create a new window I can't create it because of the datasources.<br />
In the developer console this error appears:<br />
<br />
<img title="StacktraceForUnexpectedToken.png" data-attachmentid="277554" data-align="none" data-size="full" border="0" src="filedata/fetch?id=277554&amp;d=1779363497" alt="Click image for larger version

Name:	StacktraceForUnexpectedToken.png
Views:	41
Size:	28.4 KB
ID:	277554" data-fullsize-url="filedata/fetch?id=277554&amp;d=1779363497" data-thumb-url="filedata/fetch?id=277554&amp;d=1779363497&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="StacktraceForUnexpectedToken.png" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" /><br />
<br />
This Syntax error comes from the answer of the screenLoader which returns:<br />
<br />
<br />
<br />
  [<br />
]<br />
  [<br />
]<br />
  [<br />
]<br />
  [<br />
]<br />
  [<br />
]<br />
<br />
  isc.ListGrid.create({<br />
    ID:&quot;DIALOG_ListGrid&quot;,<br />
    autoDraw:false,<br />
    autoFetchData:false,<br />
    dataSource:&quot;datasource1&quot;,<br />
    height:&quot;100%&quot;,<br />
    fields:[<br />
        {<br />
            align:&quot;left&quot;,<br />
            name:&quot;NAME&quot;,<br />
            title:&quot;title&quot;,<br />
            width:80,<br />
            showIf:&quot;true&quot;,<br />
            optionDataSource:&quot;datasource2&quot;,<br />
            valueField:&quot;PLC&quot;,<br />
            displayField:&quot;PLC&quot;,<br />
            canEdit:true,<br />
            autoFetchDisplayMap:true,<br />
            multiple:true<br />
        }<br />
    ],<br />
    autoSaveEdits:false,<br />
    showFilterEditor:true,<br />
    filterOnKeypress:true,<br />
    canEdit:false,<br />
    groupByMaxRecords:1000,<br />
    fetchDelay:1000,<br />
    allowFilterExpressions:true,<br />
    canMultiSort:&quot;true&quot;,<br />
    sortField:&quot;PLC&quot;,<br />
    canMultiGroup:&quot;true&quot;,<br />
    groupStartOpen:&quot;none&quot;,<br />
    selectionType:&quot;simple&quot;,<br />
    selectionAppearance:&quot;checkbox&quot;<br />
})<br />
<br />
<br />
  isc.DynamicForm.create({<br />
    ID:&quot;DIALOG_DynamicFormLeft&quot;,<br />
    autoDraw:false,<br />
    width:&quot;30%&quot;,<br />
    fields:[<br />
        {<br />
            name:&quot;Display&quot;,<br />
            value:&quot;Display&quot;,<br />
            _constructor:&quot;HeaderItem&quot;<br />
        },<br />
        {<br />
            name:&quot;NAME&quot;,<br />
            rowSpan:0,<br />
            title:&quot;Title&quot;,<br />
            width:&quot;100%&quot;,<br />
            _constructor:&quot;CheckboxItem&quot;<br />
        }<br />
    ],<br />
    layoutAlign:&quot;center&quot;,<br />
    titleWidth:12<br />
})<br />
<br />
<br />
  isc.DynamicForm.create({<br />
    ID:&quot;DIALOG_DynamicFormRight&quot;,<br />
    autoDraw:false,<br />
    width:&quot;70%&quot;,<br />
    fields:[<br />
        {<br />
            name:&quot;Name&quot;,<br />
            value:&quot;value&quot;,<br />
            _constructor:&quot;HeaderItem&quot;<br />
        },<br />
        {<br />
            name:&quot;MessageTypeSelectItem&quot;,<br />
            showTitle:false,<br />
            multiple:true,<br />
            optionDataSource:&quot;datasource5&quot;,<br />
            valueField:&quot;MESSAGETYPE&quot;,<br />
            displayField:&quot;MESSAGETYPE&quot;,<br />
            autoFetchDisplayMap:&quot;true&quot;,<br />
            _constructor:&quot;SelectItem&quot;<br />
        }<br />
    ],<br />
    layoutAlign:&quot;center&quot;,<br />
    titleWidth:12<br />
})<br />
<br />
<br />
  isc.VLayout.create({<br />
    ID:&quot;DIALOG_DynamicForm_VLayoutDynamicFormRight&quot;,<br />
    autoDraw:false,<br />
    height:&quot;100%&quot;,<br />
    members:[<br />
        DIALOG_DynamicFormRight<br />
    ]<br />
})<br />
<br />
<br />
  isc.HLayout.create({<br />
    ID:&quot;DIALOG_DynamicForm_Layout&quot;,<br />
    autoDraw:false,<br />
    members:[<br />
        DIALOG_DynamicFormLeft,<br />
        DIALOG_DynamicForm_VLayoutDynamicFormRight<br />
    ]<br />
})<br />
<br />
<br />
  isc.IButton.create({<br />
    ID:&quot;DIALOG_Select_All&quot;,<br />
    autoDraw:false,<br />
    height:36,<br />
    width:36,<br />
    icon:&quot;/icon/ic_set_unset_check_2.svg&quot;,<br />
    iconSize:27,<br />
    prompt:&quot;Select all (Can be used for 75 rows or less)&quot;<br />
})<br />
<br />
<br />
<br />
  isc.IButton.create({<br />
    ID:&quot;DIALOG_ResetFilter&quot;,<br />
    autoDraw:false,<br />
    height:36,<br />
    width:36,<br />
    icon:&quot;/icon/ic_reset.svg&quot;,<br />
    iconSize:27,<br />
    prompt:&quot;Reset filter&quot;<br />
})<br />
<br />
<br />
  isc.HLayout.create({<br />
    ID:&quot;DIALOG_ToolBar&quot;,<br />
    autoDraw:false,<br />
    height:56,<br />
    members:[<br />
        DIALOG_Select_All,<br />
        DIALOG_ResetFilter<br />
    ],<br />
    layoutMargin:12,<br />
    membersMargin:12,<br />
    backgroundColor:&quot;#F2F2F2&quot;<br />
})<br />
<br />
<br />
  isc.Label.create({<br />
    ID:&quot;DIALOG_ListGridTitle&quot;,<br />
    autoDraw:false,<br />
    height:20,<br />
    contents:&quot;Device Selection&quot;,<br />
    styleName:&quot;titleText&quot;<br />
})<br />
<br />
<br />
  isc.VLayout.create({<br />
    ID:&quot;DIALOG_MAIN_Layout&quot;,<br />
    autoDraw:false,<br />
    members:[<br />
        DIALOG_DynamicForm_Layout,<br />
        DIALOG_ListGridTitle,<br />
        {<br />
            autoDraw:false,<br />
            height:3,<br />
            _constructor:&quot;LayoutSpacer&quot;<br />
        },<br />
        DIALOG_ListGrid,<br />
        DIALOG_ToolBar<br />
    ],<br />
    layoutMargin:20<br />
})<br />
<br />
<br />
  isc.IButton.create({<br />
    ID:&quot;DIALOG_Ok&quot;,<br />
    autoDraw:false,<br />
    height:36,<br />
    icon:&quot;/icon/ic_confirm.svg&quot;,<br />
    iconSize:27,<br />
    prompt:&quot;Ok&quot;,<br />
    visibility:&quot;inherit&quot;<br />
})<br />
<br />
<br />
  isc.IButton.create({<br />
    ID:&quot;DIALOG_Cancel&quot;,<br />
    autoDraw:false,<br />
    height:36,<br />
    icon:&quot;/icon/ic_cancel.svg&quot;,<br />
    iconSize:27,<br />
    prompt:&quot;Cancel&quot;,<br />
    visibility:&quot;inherit&quot;<br />
})<br />
<br />
<br />
  isc.HLayout.create({<br />
    ID:&quot;DIALOG_ButtonLayout&quot;,<br />
    autoDraw:false,<br />
    height:48,<br />
    width:&quot;100%&quot;,<br />
    align:&quot;center&quot;,<br />
    members:[<br />
        DIALOG_Ok,<br />
        DIALOG_Cancel<br />
    ],<br />
    layoutMargin:12,<br />
    membersMargin:12<br />
})<br />
<br />
<br />
  isc.Window.create({<br />
    ID:&quot;DIALOG&quot;,<br />
    autoDraw:false,<br />
    height:&quot;90%&quot;,<br />
    overflow:&quot;auto&quot;,<br />
    width:850,<br />
    autoCenter:true,<br />
    isModal:true,<br />
    autoSize:false,<br />
    title:&quot;title&quot;,<br />
    showMinimizeButton:false,<br />
    showMaximizeButton:true,<br />
    showFooter:false,<br />
    items:[<br />
        DIALOG_MAIN_Layout,<br />
        DIALOG_ButtonLayout<br />
    ],<br />
    showModalMask:true<br />
})<br />
<br />
-------------------------------------------------------------------------------------------------------------------------------------------------<br />
In our ui.xml we have multiple datasources defined like this:<br />
<br />
<br />
&lt;DataSource ID=&quot;datasource2&quot;/&gt;<br />
&lt;DataSource ID=&quot;datasource3&quot;/&gt;<br />
&lt;DataSource ID=&quot;datasource4&quot;/&gt;<br />
&lt;DataSource ID=&quot;datasource5&quot;/&gt;<br />
&lt;DataSource&gt;<br />
&lt;loadID&gt;datasource1&lt;/loadID&gt;<br />
&lt;/DataSource&gt;<br />
<br />
and any other configuration doesn't work. If I use loadID for the other datasources or the ID for datasource1 it throws the errors above when I open the window a second time.<br />
The datasources are not special in any way. This is our reduced datasource1 so no internal data is shown:<br />
<br />
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;<br />
&lt;DataSource<br />
  ID=&quot;datasource1&quot;<br />
  autoDeriveSchema=&quot;false&quot;<br />
  serverType=&quot;sql&quot;<br />
  tableName=&quot;TABLE&quot;<br />
  requiresRole=&quot;ROLE&quot;&gt;<br />
  &lt;fields&gt;<br />
    &lt;field name=&quot;NAME&quot; tableName=&quot;TABLE&quot; type=&quot;text&quot;/&gt;<br />
  &lt;/fields&gt;<br />
  &lt;operationBindings&gt;<br />
    &lt;operationBinding operationType=&quot;fetch&quot;&gt;<br />
      &lt;selectClause&gt;DISTINCT $defaultSelectClause&lt;/selectClause&gt;<br />
      &lt;tableClause&gt;TABLE LEFT JOIN OTHER_TABLE ON TABLE.field = OTHER_TABLE.field<br />
      &lt;/tableClause&gt;<br />
      &lt;whereClause&gt;($defaultWhereClause)&lt;/whereClause&gt;<br />
    &lt;/operationBinding&gt;<br />
  &lt;/operationBindings&gt;<br />
&lt;/DataSource&gt;<br />
<br />
<br />
<br />
To compare, this is our reduced datasource2:<br />
<br />
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;<br />
&lt;DataSource<br />
  ID=&quot;datasource2&quot;<br />
  autoDeriveSchema=&quot;false&quot;<br />
  serverType=&quot;sql&quot;<br />
  tableName=&quot;TABLE3&quot;<br />
  requiresRole=&quot;ROLE&quot;&gt;<br />
  &gt;<br />
  &lt;fields&gt;<br />
    &lt;field name=&quot;FIELD&quot; type=&quot;text&quot;/&gt;<br />
  &lt;/fields&gt;<br />
  &lt;operationBindings&gt;<br />
    &lt;operationBinding operationType=&quot;fetch&quot;&gt;<br />
      &lt;selectClause&gt;DISTINCT TABLE.FIELD&lt;/selectClause&gt;<br />
      &lt;orderClause&gt;FIELD ASC&lt;/orderClause&gt;<br />
    &lt;/operationBinding&gt;<br />
  &lt;/operationBindings&gt;<br />
&lt;/DataSource&gt;<br />
<br />
<br />
<br />
Now I want to know when I have to use loadID and when the ID or if there is a setting so we don't have to change all of our ui.xmls as we have used the pattern with loadID everywhere in our project. Unfortunately I found nearly nothing to loadID in the docu or in the forum. I only found a bugfix in the release notes for GWT3.1 and this forum post from 2017 which says loadID is correct <a href="https://forums.smartclient.com/forum/technical-q-a/248603-loading-a-datasource-for-component-xml#post249706" target="_blank">https://forums.smartclient.com/forum...xml#post249706</a>]]></content:encoded>
			<category domain="https://forums.smartclient.com/forum/smart-gwt-technical-q-a"><![CDATA[Smart GWT Technical Q&amp;A]]></category>
			<dc:creator>lroesel</dc:creator>
			<guid isPermaLink="true">https://forums.smartclient.com/forum/smart-gwt-technical-q-a/277553-datasources-cause-a-problem-when-loading-same-screen-twice-unclear-when-to-use-loadid</guid>
		</item>
		<item>
			<title>Twilight skin cascade icon</title>
			<link>https://forums.smartclient.com/forum/smart-gwt-technical-q-a/277547-twilight-skin-cascade-icon</link>
			<pubDate>Mon, 18 May 2026 08:22:42 GMT</pubDate>
			<description><![CDATA[Hi, 
 
In the Twilight skin the cascade icon looks like it doesn't use the available height correctly. 
This can for example be seen in the following...]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
In the Twilight skin the cascade icon looks like it doesn't use the available height correctly.<br />
This can for example be seen in the following showcase after pressing any minimize button: <a href="https://smartclient.com/smartgwt/showcase/#window_contents_portal_layout" target="_blank">https://smartclient.com/smartgwt/sho..._portal_layout</a><br />
<img title="twilight_icon_issue.png" data-attachmentid="277548" width="699" height="191" data-align="none" border="0" src="filedata/fetch?id=277548&amp;d=1779092163" alt="Click image for larger version

Name:	twilight_icon_issue.png
Views:	33
Size:	26.1 KB
ID:	277548" data-fullsize-url="filedata/fetch?id=277548&amp;d=1779092163" data-thumb-url="filedata/fetch?id=277548&amp;d=1779092163&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="twilight_icon_issue.png" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" /><br />
In all other skins the icon looks correct:<br />
<img title="twilight_icon_issue_tahoe.png" data-attachmentid="277549" width="700" height="185" data-align="none" border="0" src="filedata/fetch?id=277549&amp;d=1779092390" alt="Click image for larger version

Name:	twilight_icon_issue_tahoe.png
Views:	27
Size:	20.9 KB
ID:	277549" data-fullsize-url="filedata/fetch?id=277549&amp;d=1779092390" data-thumb-url="filedata/fetch?id=277549&amp;d=1779092390&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="twilight_icon_issue_tahoe.png" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" /><br />
Tested using the latest version of the Chrome browser.]]></content:encoded>
			<category domain="https://forums.smartclient.com/forum/smart-gwt-technical-q-a"><![CDATA[Smart GWT Technical Q&amp;A]]></category>
			<dc:creator>michaelaveva</dc:creator>
			<guid isPermaLink="true">https://forums.smartclient.com/forum/smart-gwt-technical-q-a/277547-twilight-skin-cascade-icon</guid>
		</item>
	</channel>
</rss>
