<?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 - Forum</title>
		<link>https://forums.smartclient.com/</link>
		<description />
		<language>en</language>
		<lastBuildDate>Thu, 18 Jun 2026 18:09:12 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>images/misc/rss.png</url>
			<title>SmartClient Forums - Forum</title>
			<link>https://forums.smartclient.com/</link>
		</image>
		<item>
			<title><![CDATA[TimeItem (useTextField=&amp;quot;false&amp;quot;) does not account for SelectItem CSS padding when calculating width]]></title>
			<link>https://forums.smartclient.com/forum/technical-q-a/277636-timeitem-usetextfield-false-does-not-account-for-selectitem-css-padding-when-calculating-width</link>
			<pubDate>Thu, 18 Jun 2026 10:24:09 GMT</pubDate>
			<description>I have overridden the default styles for input controls and, so far, have not encountered any rendering issues except with TimeItem when...</description>
			<content:encoded><![CDATA[I have overridden the default styles for input controls and, so far, have not encountered any rendering issues except with TimeItem when useTextField=&quot;false&quot; is used.<br />
With my custom styles applied, the component is rendered incorrectly (see screenshot below).<br />
<br />
<img alt="Click image for larger version  Name:	Screenshot 2026-06-18 121456.jpeg Views:	0 Size:	6.3 KB ID:	277637" data-attachmentid="277637" data-align="none" data-size="full" border="0" src="filedata/fetch?id=277637&amp;d=1781777718" data-fullsize-url="filedata/fetch?id=277637&amp;d=1781777718" data-thumb-url="filedata/fetch?id=277637&amp;d=1781777718&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" /><br />
<br />
After reviewing the source code, I found that the width of the internal SelectItem controls is calculated in the code section shown below. The calculation does not appear to take into account the additional space introduced by the custom CSS styles.<br />
<br />
<b>Custom CSS</b><br />

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(1000 *  + 12px + 20px);">.selectItemControl,
.selectItemControlOver,
.selectItemControlDisabled,
.selectItemControlError,
.selectItemControlErrorOver,
.selectItemControlFocused,
.selectItemControlFocusedOver
{
  border: var(--border);
  border-radius: 4px;
  padding-left: 8px;
  padding-right: 2px;
}
.selectItemText,
.selectItemTextOver,
.selectItemTextDown,
.selectItemTextError,
.selectItemTextErrorOver,
.selectItemTextFocused,
.selectItemTextFocusedOver,
.selectItemTextDisabled,
.selectItemTextHint,
.selectItemTextDisabledHint,
.comboBoxItemPendingText {
  border: 0;
  padding: 0px;
}</pre>
</div><b>Current implementation in </b><b>isc.TimeItem.setItems()</b><br />

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(1000 *  + 12px + 20px);">var baseStyleName = isc.SelectItem.getInstanceProperty(&quot;textBoxStyle&quot;),
                // get the extra width to add to the render-width of the widest valueMap entry
                extraWidth = isc.SelectItem.getInstanceProperty(&quot;pickerIconWidth&quot;) +
                    isc.Element._getLeftMargin(baseStyleName) +
                    isc.Element._getRightMargin(baseStyleName) +
                    isc.Element._getHBorderPad(baseStyleName) +
                    4 // this last is necessary because there is no right-padding
            ;</pre>
</div><b>Question</b><br />
Would it be possible to replace this code with a version that takes the padding defined in controlStyle into account?<br />
I tested the following modification locally and it appears to work correctly:<br />

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(1000 *  + 12px + 20px);">            var baseStyleName = isc.SelectItem.getInstanceProperty(&quot;controlStyle&quot;),
                textBaseStyleName = isc.SelectItem.getInstanceProperty(&quot;textBoxStyle&quot;),
                rightPadding = isc.Element._getRightPadding(baseStyleName) ? 0 : 4;
                // get the extra width to add to the render-width of the widest valueMap entry
                extraWidth = isc.SelectItem.getInstanceProperty(&quot;pickerIconWidth&quot;) +
                    isc.Element._getHBorderPad(baseStyleName) +
                    isc.Element._getLeftMargin(textBaseStyleName) +
                    isc.Element._getRightMargin(textBaseStyleName) +
                    isc.Element._getHBorderPad(textBaseStyleName) +
                    rightPadding // this last is necessary because there is no right-padding
            ;</pre>
</div><br />
I also noticed a related issue with the PickList width.<br />
When clicking any of the three SelectItems within the TimeItem for the first time, the PickList is displayed with an incorrect width.<br />
After closing and opening the same PickList again, its width is calculated correctly and the PickList is displayed as expected.<br />
This behavior suggests that the initial width calculation may not be taking all style-related dimensions into account, while subsequent openings use an updated or recalculated width.<br />
<img alt="Click image for larger version  Name:	Screenshot 2026-06-18 122214.jpeg Views:	0 Size:	5.5 KB ID:	277638" data-attachmentid="277638" data-align="none" data-size="full" border="0" src="filedata/fetch?id=277638&amp;d=1781778149" data-fullsize-url="filedata/fetch?id=277638&amp;d=1781778149" data-thumb-url="filedata/fetch?id=277638&amp;d=1781778149&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" /><br />
<br />
<img alt="Click image for larger version  Name:	Screenshot 2026-06-18 122304.jpeg Views:	0 Size:	4.6 KB ID:	277639" data-attachmentid="277639" data-align="none" data-size="full" border="0" src="filedata/fetch?id=277639&amp;d=1781778203" data-fullsize-url="filedata/fetch?id=277639&amp;d=1781778203" data-thumb-url="filedata/fetch?id=277639&amp;d=1781778203&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" />]]></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/277636-timeitem-usetextfield-false-does-not-account-for-selectitem-css-padding-when-calculating-width</guid>
		</item>
		<item>
			<title>ButtonItem displays its name property behind the icon</title>
			<link>https://forums.smartclient.com/forum/technical-q-a/277627-buttonitem-displays-its-name-property-behind-the-icon</link>
			<pubDate>Thu, 18 Jun 2026 05:07:05 GMT</pubDate>
			<description><![CDATA[When a ButtonItem is configured to display only an icon (showTitle=&quot;false&quot;), the value of the name property is still rendered as text behind the...]]></description>
			<content:encoded><![CDATA[When a ButtonItem is configured to display only an icon (showTitle=&quot;false&quot;), the value of the name property is still rendered as text behind the icon.<br />
<br />
<b>Code used to create the ButtonItem:</b><br />
<br />

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(1000 *  + 12px + 20px);">                    &lt;ButtonItem ID=&quot;reloadProjects&quot; name=&quot;reloadProjects&quot; width=&quot;200&quot; adaptWidth={false}
                      icon={`${CONSTANT.BUTTONS_ICONS}refresh.png`} prompt={Strings.get(&quot;loadProject&quot;)}
                      baseStyle=&quot;imgButton&quot; showTitle=&quot;false&quot; startRow=&quot;false&quot;
                      click={this.reloadProjects.bind(this)}
                    /&gt;</pre>
</div>The text reloadProjects (the value of the name property) is visible behind the button icon.<br />
<img data-attachmentid="277628" data-align="none" data-size="full" border="0" src="filedata/fetch?id=277628&amp;d=1781759167" alt="Click image for larger version

Name:	Screenshot 2026-06-18 070554.jpeg
Views:	6
Size:	2.9 KB
ID:	277628" data-fullsize-url="filedata/fetch?id=277628&amp;d=1781759167" data-thumb-url="filedata/fetch?id=277628&amp;d=1781759167&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" />]]></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/277627-buttonitem-displays-its-name-property-behind-the-icon</guid>
		</item>
		<item>
			<title>Calendar is not showing the Month-Year, when its loaded</title>
			<link>https://forums.smartclient.com/forum/smart-gwt-technical-q-a/277625-calendar-is-not-showing-the-month-year-when-its-loaded</link>
			<pubDate>Wed, 17 Jun 2026 20:34:55 GMT</pubDate>
			<description>Hi Isomorphic, 
 
The compact calendar is not showing the month - year, when its first loaded. We recently upgraded to v14.1 pro 06/08 version and...</description>
			<content:encoded><![CDATA[Hi Isomorphic,<br />
<br />
The compact calendar is not showing the month - year, when its first loaded. We recently upgraded to v14.1 pro 06/08 version and noticed this issue.<br />
The show case also having the same issue.<br />
<a href="https://smartclient.com/smartgwt/showcase/#compact_calendar_category" target="_blank">https://smartclient.com/smartgwt/sho...endar_category</a><br />
<br />
<a href="filedata/fetch?id=277626&amp;d=1781728446" class="bbcode-attachment"  ><img title="calendar-1.png" data-attachmentid="277626" width="329" height="145" data-align="none" border="0" src="filedata/fetch?id=277626&amp;d=1781728446&amp;type=medium" alt="Click image for larger version

Name:	calendar-1.png
Views:	12
Size:	14.6 KB
ID:	277626" data-fullsize-url="filedata/fetch?id=277626&amp;d=1781728446" data-thumb-url="filedata/fetch?id=277626&amp;d=1781728446&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="calendar-1.png" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" /></a><br />
Can you please fix this issue.<br />
<br />
Thanks<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>stonebranch4</dc:creator>
			<guid isPermaLink="true">https://forums.smartclient.com/forum/smart-gwt-technical-q-a/277625-calendar-is-not-showing-the-month-year-when-its-loaded</guid>
		</item>
		<item>
			<title>Question about Calendar allowLongEvents</title>
			<link>https://forums.smartclient.com/forum/technical-q-a/277623-question-about-calendar-allowlongevents</link>
			<pubDate>Wed, 17 Jun 2026 12:46:55 GMT</pubDate>
			<description><![CDATA[A click on a &quot;longEvent&quot; does not fire eventClick. A click on a &quot;not longEvent&quot; in the same Calendar does. How can I open a custom event dialog after...]]></description>
			<content:encoded><![CDATA[A click on a &quot;longEvent&quot; does not fire eventClick. A click on a &quot;not longEvent&quot; in the same Calendar does. How can I open a custom event dialog after the user clicks on an long-event?<br />
Kind regards Paul<br />
demo: <a href="https://smartclient.com/smartclient/showcase/?id=dragGhostCustomization" target="_blank">SmartClient&#8482; Showcase 14.1p Enterprise [2026-06-12]</a><br />
<br />
]]></content:encoded>
			<category domain="https://forums.smartclient.com/forum/technical-q-a"><![CDATA[Technical Q&amp;A]]></category>
			<dc:creator>paulwilhelm</dc:creator>
			<guid isPermaLink="true">https://forums.smartclient.com/forum/technical-q-a/277623-question-about-calendar-allowlongevents</guid>
		</item>
		<item>
			<title>Header button bottom border disappears on rollover</title>
			<link>https://forums.smartclient.com/forum/technical-q-a/277610-header-button-bottom-border-disappears-on-rollover</link>
			<pubDate>Tue, 16 Jun 2026 14:22:57 GMT</pubDate>
			<description>Skin: Stratus 
 
Description: 
When a border is defined for a header button style, the bottom border disappears on mouse rollover. 
 
Steps to...</description>
			<content:encoded><![CDATA[<b>Skin:</b> Stratus<br />
<br />
<b>Description:</b><br />
When a border is defined for a header button style, the bottom border disappears on mouse rollover.<br />
<br />
<b>Steps to reproduce:</b><ol class="decimal"><li>Open the Column Order example: <a href="https://smartclient.com/smartclient-latest/showcase/?id=columnOrder&amp;skin=Stratus&amp;fontIncrease=3&amp;sizeIncrease=10" target="_blank">https://smartclient.com/smartclient-...izeIncrease=10</a></li>
<li>Modify the header button style in the source code to use the standard button style (with a visible border).</li>
<li>Start the example.</li>
<li>Move the mouse cursor over a column header.</li>
</ol><b>Actual result:</b><br />
The bottom border of the header button disappears while the mouse is over the header.<br />
<br />
<b>Notes:</b><br />
The issue can be reproduced with the Stratus skin after assigning a bordered button style to the header button. It appears that the rollover styling or header rendering logic removes or overrides the bottom border.<br />
<br />

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(1000 *  + 12px + 20px);">isc.ListGrid.create({
    ID: &quot;countryList&quot;,
    width:500, height:224,
    data: countryData,
    headerBaseStyle: &quot;button&quot;,
    fields:&#91;
        {name:&quot;countryCode&quot;, title:&quot;Flag&quot;, width:65, type:&quot;image&quot;, imageURLPrefix:&quot;flags/24/&quot;, imageURLSuffix:&quot;.png&quot;},
        {name:&quot;countryName&quot;, title:&quot;Country&quot;},
        {name:&quot;capital&quot;, title:&quot;Capital&quot;, showIf:&quot;false&quot;},
        {name:&quot;continent&quot;, title:&quot;Continent&quot;}
    &#93;,
    canReorderFields: true
})


isc.IButton.create({
    left:0, top:240,
    title:&quot;Show Capitals&quot;,
    click:&quot;countryList.showField('capital')&quot;
})

isc.IButton.create({
    left:130, top:240,
    title:&quot;Hide Capitals&quot;,
    click:&quot;countryList.hideField('capital')&quot;
})</pre>
</div>The screenshot below shows the initial state before the mouse is moved over the header button.<br />
<img data-attachmentid="277611" data-align="none" data-size="full" border="0" src="filedata/fetch?id=277611&amp;d=1781619538" alt="Click image for larger version

Name:	Screenshot 2026-06-16 161649.jpeg
Views:	15
Size:	40.5 KB
ID:	277611" data-fullsize-url="filedata/fetch?id=277611&amp;d=1781619538" data-thumb-url="filedata/fetch?id=277611&amp;d=1781619538&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" /><br />
<br />
<br />
The screenshot below shows the Country column header button after mouse rollover.<br />
<br />
<img data-attachmentid="277612" data-align="none" data-size="full" border="0" src="filedata/fetch?id=277612&amp;d=1781619709" alt="Click image for larger version

Name:	Screenshot 2026-06-16 162116.jpeg
Views:	14
Size:	23.4 KB
ID:	277612" data-fullsize-url="filedata/fetch?id=277612&amp;d=1781619709" data-thumb-url="filedata/fetch?id=277612&amp;d=1781619709&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" />]]></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/277610-header-button-bottom-border-disappears-on-rollover</guid>
		</item>
		<item>
			<title>BUG</title>
			<link>https://forums.smartclient.com/forum/technical-q-a/277609-bug</link>
			<pubDate>Tue, 16 Jun 2026 13:19:18 GMT</pubDate>
			<description>made a misttake when testin. Please delete this issue. Thanks Paul</description>
			<content:encoded>made a misttake when testin. Please delete this issue. Thanks Paul</content:encoded>
			<category domain="https://forums.smartclient.com/forum/technical-q-a"><![CDATA[Technical Q&amp;A]]></category>
			<dc:creator>paulwilhelm</dc:creator>
			<guid isPermaLink="true">https://forums.smartclient.com/forum/technical-q-a/277609-bug</guid>
		</item>
		<item>
			<title>ToolStrip width with autoFitColumns</title>
			<link>https://forums.smartclient.com/forum/technical-q-a/277597-toolstrip-width-with-autofitcolumns</link>
			<pubDate>Fri, 12 Jun 2026 16:21:55 GMT</pubDate>
			<description>SmartClient Version: v13.1p_2026-06-08/AllModules Development Only (built 2026-06-08) 
SmartClient Version: v14.1p_2026-06-11/AllModules Development...</description>
			<content:encoded><![CDATA[SmartClient Version: v13.1p_2026-06-08/AllModules Development Only (built 2026-06-08)<br />
SmartClient Version: v14.1p_2026-06-11/AllModules Development Only (built 2026-06-11)<br />
<br />
Hi, In a grid I'm using autoFit as shown in the autofitColumns example, but I've also added a ToolStrip to the gridComponents:<br />
<br />

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(1000 *  + 12px + 20px);">isc.ListGrid.create({
    ID: &quot;countryList&quot;,
    height:224, width:100,
    data: countryData,
    gridComponents: &#91;
        isc.ToolStrip.create({
            ID: &quot;strip&quot;,
            width: &quot;*&quot;,
            members: &#91;
                isc.ToolStripButton.create({title: &quot;one&quot;}),
                &quot;starSpacer&quot;,
                isc.ToolStripButton.create({title: &quot;two&quot;})
            &#93;
        }),
        &quot;header&quot;, &quot;body&quot;
    &#93;,
    fields:&#91;
        {name:&quot;countryCode&quot;, title:&quot;Flag&quot;, width:65, type:&quot;image&quot;, imageURLPrefix:&quot;flags/24/&quot;, imageURLSuffix:&quot;.png&quot;},
        {name:&quot;countryName&quot;, title:&quot;Country&quot;, width:100},
        {name:&quot;capital&quot;, title:&quot;Capital&quot;, width:100},
        {name:&quot;continent&quot;, title:&quot;Continent&quot;, width:100}
    &#93;,
    autoFitData: &quot;horizontal&quot;,
    autoFitMaxWidth: &quot;100%&quot;
})</pre>
</div>However, I can't get the ToolStrip to take up all the available width:<br />
<br />
<img data-attachmentid="277598" data-align="none" data-size="full" border="0" src="filedata/fetch?id=277598&amp;d=1781281111" alt="Click image for larger version

Name:	2026-06-12 18.18.16.jpg
Views:	29
Size:	10.9 KB
ID:	277598" data-fullsize-url="filedata/fetch?id=277598&amp;d=1781281111" data-thumb-url="filedata/fetch?id=277598&amp;d=1781281111&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" /><br />
<br />
Is there a way to achieve this?<br />
<br />
Also, while looking for a possible workaround (for example by observing resized() on the grid), I noticed that if I do: <br />
<br />

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(1000 *  + 12px + 20px);">strip.setWidth(countryList.getViewportWidth());</pre>
</div>the grid becomes wider than the grid body itself:<br />
<br />
<img data-attachmentid="277599" data-align="none" data-size="full" border="0" src="filedata/fetch?id=277599&amp;d=1781281111" alt="Click image for larger version

Name:	2026-06-12 18.18.19.jpg
Views:	27
Size:	11.8 KB
ID:	277599" data-fullsize-url="filedata/fetch?id=277599&amp;d=1781281111" data-thumb-url="filedata/fetch?id=277599&amp;d=1781281111&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" /><br />
]]></content:encoded>
			<category domain="https://forums.smartclient.com/forum/technical-q-a"><![CDATA[Technical Q&amp;A]]></category>
			<dc:creator>claudiobosticco</dc:creator>
			<guid isPermaLink="true">https://forums.smartclient.com/forum/technical-q-a/277597-toolstrip-width-with-autofitcolumns</guid>
		</item>
		<item>
			<title>useMask ignored when browserInputType is set to digits on date/time FormItems</title>
			<link>https://forums.smartclient.com/forum/technical-q-a/277588-usemask-ignored-when-browserinputtype-is-set-to-digits-on-date-time-formitems</link>
			<pubDate>Fri, 12 Jun 2026 11:06:30 GMT</pubDate>
			<description>SmartClient Version: v13.1p_2026-06-08/AllModules Development Only (built 2026-06-08) 
SmartClient Version: v14.1p_2026-06-11/AllModules Development...</description>
			<content:encoded><![CDATA[SmartClient Version: v13.1p_2026-06-08/AllModules Development Only (built 2026-06-08)<br />
SmartClient Version: v14.1p_2026-06-11/AllModules Development Only (built 2026-06-11)<br />
<br />
Hi, I've noticed that when using browserInputType: &quot;digits&quot; on FormItems of type date/time with useMask: true, the mask is not displayed.<br />
<br />
However, the mask is correctly applied when using browserInputType: &quot;tel&quot;.<br />
<br />
Is this expected behavior (i.e., a limitation or unsupported combination), or could this be a bug?<br />
<br />
Test case:<br />
<br />

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(1000 *  + 12px + 20px);">isc.DynamicForm.create({
    items:&#91;
        {name:&quot;aDateTimeItem&quot;, type:&quot;datetime&quot;, textFieldProperties:{browserInputType:&quot;digits&quot;}, useMask:true},
        {name:&quot;aTimeItem&quot;, type:&quot;time&quot;, textFieldProperties:{browserInputType:&quot;tel&quot;}, useMask: true}
    &#93;
})</pre>
</div>with browserInputType:&quot;digits&quot;:<br />
<br />
<img data-attachmentid="277590" data-align="none" data-size="full" border="0" src="filedata/fetch?id=277590&amp;d=1781262310" alt="Click image for larger version

Name:	IMG_7124.PNG
Views:	13
Size:	179.4 KB
ID:	277590" data-fullsize-url="filedata/fetch?id=277590&amp;d=1781262310" data-thumb-url="filedata/fetch?id=277590&amp;d=1781262310&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" /><br />
<br />
with browserInputType:&quot;tel&quot;:<br />
<br />
<img data-attachmentid="277589" data-align="none" data-size="full" border="0" src="filedata/fetch?id=277589&amp;d=1781262309" alt="Click image for larger version

Name:	IMG_7125.PNG
Views:	14
Size:	174.7 KB
ID:	277589" data-fullsize-url="filedata/fetch?id=277589&amp;d=1781262309" data-thumb-url="filedata/fetch?id=277589&amp;d=1781262309&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" />]]></content:encoded>
			<category domain="https://forums.smartclient.com/forum/technical-q-a"><![CDATA[Technical Q&amp;A]]></category>
			<dc:creator>claudiobosticco</dc:creator>
			<guid isPermaLink="true">https://forums.smartclient.com/forum/technical-q-a/277588-usemask-ignored-when-browserinputtype-is-set-to-digits-on-date-time-formitems</guid>
		</item>
		<item>
			<title>TileGrid tiles resize on first hover</title>
			<link>https://forums.smartclient.com/forum/technical-q-a/277585-tilegrid-tiles-resize-on-first-hover</link>
			<pubDate>Fri, 12 Jun 2026 09:02:29 GMT</pubDate>
			<description>SmartClient Version: v13.1p_2026-06-08/AllModules Development Only (built 2026-06-08) 
SmartClient Version: v14.1p_2026-06-11/AllModules Development...</description>
			<content:encoded><![CDATA[SmartClient Version: v13.1p_2026-06-08/AllModules Development Only (built 2026-06-08)<br />
SmartClient Version: <b>v14.1p_2026-06-11/AllModules Development Only</b> (built 2026-06-11)<br />
<br />
Chrome on MacOS<br />
<br />
Hi, I've noticed that if I add a border to the tileProperties of a TileGrid and use a fractional border width, such as 1.5px, the tiles are resized the first time the mouse hovers over them.<br />
<br />
I'd like to know whether fractional border widths are actually unsupported in this context, or if this could be a bug.<br />
<br />
Sample code:<br />
<br />

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(1000 *  + 12px + 20px);">isc.TileGrid.create({
    tileWidth:150,
    tileHeight:190,
    height:&quot;100%&quot;,
    width:&quot;100%&quot;,
    showAllRecords:true,
    tileProperties:{
        border:&quot;1.5px solid red&quot;
    },
    data:animalData,
    fields: &#91;
        {name:&quot;picture&quot;, type:&quot;image&quot;, imageURLPrefix:&quot;../inlineExamples/tiles/images/&quot;},
        {name:&quot;commonName&quot;},
        {name:&quot;status&quot;}
    &#93;
});</pre>
</div>]]></content:encoded>
			<category domain="https://forums.smartclient.com/forum/technical-q-a"><![CDATA[Technical Q&amp;A]]></category>
			<dc:creator>claudiobosticco</dc:creator>
			<guid isPermaLink="true">https://forums.smartclient.com/forum/technical-q-a/277585-tilegrid-tiles-resize-on-first-hover</guid>
		</item>
		<item>
			<title>DynamicForm ComboBoxItem static appearance</title>
			<link>https://forums.smartclient.com/forum/smart-gwt-technical-q-a/277579-dynamicform-comboboxitem-static-appearance</link>
			<pubDate>Wed, 10 Jun 2026 14:57:26 GMT</pubDate>
			<description>Hi, 
 
Fields with a ComboBoxItem editor type in a DynamicForm no longer display correctly when read-only and their ReadOnlyDisplayAppearance is...</description>
			<content:encoded><![CDATA[Hi,<br />
<br />
Fields with a ComboBoxItem editor type in a DynamicForm no longer display correctly when read-only and their ReadOnlyDisplayAppearance is STATIC.<br />
Other item types like TextItem and DateItem don't have this issue.<br />
<br />
Using latest Chrome browser and SmartGWT version v14.1p_2026-06-10/Pro Deployment.<br />
I also tested it using SmartGWT version v14.1p_2026-04-01/Pro Deployment, using that older build everything displays statically as expected.<br />
<br />
<img title="SGWT_issue_static_readonly_01.png" data-attachmentid="277580" data-align="none" data-size="full" border="0" src="filedata/fetch?id=277580&amp;d=1781103026" alt="Click image for larger version

Name:	SGWT_issue_static_readonly_01.png
Views:	15
Size:	3.1 KB
ID:	277580" data-fullsize-url="filedata/fetch?id=277580&amp;d=1781103026" data-thumb-url="filedata/fetch?id=277580&amp;d=1781103026&amp;type=thumb" data-title="Click on the image to see the original version" data-caption="SGWT_issue_static_readonly_01.png" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" /><br />
In this example:<br />
A -&gt; is read-only and contains text but does not display statically<br />
B -&gt; is editable and displays as expected<br />
C -&gt; is read-only and contains no value, does not display statically<br />
D -&gt; is a TextItem instead of a ComboBoxItem, displays as expected<br />
<br />
Associated test case code:<br />

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(1000 *  + 12px + 20px);">@Override
    public void onModuleLoad()
    {
        ComboBoxItem aItem = new ComboBoxItem(&quot;a&quot;, &quot;A&quot;);
        aItem.setCanEdit(false);
        ComboBoxItem bItem = new ComboBoxItem(&quot;b&quot;, &quot;B&quot;);
        bItem.setCanEdit(true);
        ComboBoxItem cItem = new ComboBoxItem(&quot;c&quot;, &quot;C&quot;);
        cItem.setCanEdit(false);
        TextItem dItem = new TextItem(&quot;d&quot;, &quot;D&quot;);
        dItem.setCanEdit(false);
        DynamicForm form = new DynamicForm();
        form.setItems(aItem, bItem, cItem, dItem);
        form.setCanEdit(true);
        form.setReadOnlyDisplay(ReadOnlyDisplayAppearance.STATIC);

        com.smartgwt.client.data.Record record = new com.smartgwt.client.data.Record();
        record.setAttribute(&quot;a&quot;, &quot;A value&quot;);
        record.setAttribute(&quot;b&quot;, &quot;B value&quot;);
        record.setAttribute(&quot;c&quot;, (String) null);
        record.setAttribute(&quot;d&quot;, &quot;D value&quot;);
        form.editRecord(record);

        form.draw();
    }</pre>
</div>]]></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/277579-dynamicform-comboboxitem-static-appearance</guid>
		</item>
		<item>
			<title>Skin editor export not working</title>
			<link>https://forums.smartclient.com/forum/smart-gwt-technical-q-a/277571-skin-editor-export-not-working</link>
			<pubDate>Tue, 09 Jun 2026 14:43:49 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I'm trying to export a theme from the smartclient.com skin editor but nothing happens after pressing the &quot;Export&quot; button]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I'm trying to export a theme from the smartclient.com skin editor but nothing happens after pressing the &quot;Export&quot; button]]></content:encoded>
			<category domain="https://forums.smartclient.com/forum/smart-gwt-technical-q-a"><![CDATA[Smart GWT Technical Q&amp;A]]></category>
			<dc:creator>FlorinDavid</dc:creator>
			<guid isPermaLink="true">https://forums.smartclient.com/forum/smart-gwt-technical-q-a/277571-skin-editor-export-not-working</guid>
		</item>
		<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>
	</channel>
</rss>
