Re: hscroll bar for adg hides the content

2020-06-08 Thread Alex Harui
Sorry, pushed it to the wrong branch. Hopefully I got it right this time. From: serkan Date: Monday, June 8, 2020 at 11:52 PM To: "users@royale.apache.org" , Alex Harui Subject: Re: hscroll bar for adg hides the content i updated repo but no changes related with the issue. your latest commit

Re: hscroll bar for adg hides the content

2020-06-08 Thread serkan
i updated repo but no changes related with the issue. your latest commit is aboud DateChooser. 9.06.2020 06:14 tarihinde Alex Harui yazdı: It depends on which containers are showing scrollbars.  I just pushed a changes so that if it is MXAdvancedDataGridItemRenderer that is the problem, you

Re: hscroll bar for adg hides the content

2020-06-08 Thread Alex Harui
It depends on which containers are showing scrollbars. I just pushed a changes so that if it is MXAdvancedDataGridItemRenderer that is the problem, you can add CSS like .MXAdvancedDataGridItemRenderer { overflow:none; } If it is one of your other custom components, you may want to set the cl

Re: hscroll bar for adg hides the content

2020-06-08 Thread serkan
It looks like it is better to disable scrollbar for quick fix. How can i disable ? 9.06.2020 04:52 tarihinde Alex Harui yazdı: In the Flex version, would the 5 images overflow the width of the column or is the column size fixed width? It might be that the default scrollpolicy for one of the

Re: hscroll bar for adg hides the content

2020-06-08 Thread Alex Harui
In the Flex version, would the 5 images overflow the width of the column or is the column size fixed width? It might be that the default scrollpolicy for one of the containers is not the same as in Flex, or that there is a slight difference in size such that images overflow the height causing s

Re: hscroll bar for adg hides the content

2020-06-08 Thread serkan
The column shows images according to the state of the job and it is not fixed. It may show 1 or more images up to 5 or something horizontally lined. 8.06.2020 23:27 tarihinde Alex Harui yazdı: It depends on who is showing scrollbars. Looks like there are several layers.   I would check the H

Re: image component visibility evaluation

2020-06-08 Thread serkan
May be looking at the wrong method. I should check again. Thanks 8.06.2020 23:42 tarihinde Alex Harui yazdı: You might see null for data during initialization but eventually you should see non-null. *From: *serkan *Date: *Monday, June 8, 2020 at 1:28 PM *To: *"users@royale.apache.org" , A

Re: image component visibility evaluation

2020-06-08 Thread Alex Harui
You might see null for data during initialization but eventually you should see non-null. From: serkan Date: Monday, June 8, 2020 at 1:28 PM To: "users@royale.apache.org" , Alex Harui Subject: Re: image component visibility evaluation I tried set methods of the components but surprisingly dat

Re: image component visibility evaluation

2020-06-08 Thread serkan
I tried set methods of the components but surprisingly data is always is null but still the logic works. 8.06.2020 19:09 tarihinde Alex Harui yazdı: They are evaluated by PropertyWatchers, but it is tricky to setup breakpoints for them and probably not necessary.  The first step is to get ri

Re: hscroll bar for adg hides the content

2020-06-08 Thread Alex Harui
It depends on who is showing scrollbars. Looks like there are several layers. I would check the HTML DOM and see what elements are too big and why. HTH, -Alex From: serkan Date: Monday, June 8, 2020 at 1:19 PM To: "users@royale.apache.org" , Alex Harui Subject: Re: hscroll bar for adg hide

Re: Compiler warnings !

2020-06-08 Thread serkan
Actually they are xml objects.                         SENSORDATA_HOURLY                             0                             false                 false                 false                 false                 false                 false                 false                 false

Re: hscroll bar for adg hides the content

2020-06-08 Thread serkan
It was solved with /"width="150" maxWidth="250"/ in flex. "Manage"  is nested component in adg: headerText="{resourceManager.getString('messages', 'manageGrid')}" width="150" id="mngColumn">                                                                                                

Re: image component visibility evaluation

2020-06-08 Thread Alex Harui
They are evaluated by PropertyWatchers, but it is tricky to setup breakpoints for them and probably not necessary. The first step is to get rid of the warnings as you asked on another thread. Once the warnings are gone, the PropertyWatchers will likely be doing the right thing. Then make sure

Re: hscroll bar for adg hides the content

2020-06-08 Thread Alex Harui
What is the renderer for the Manage column? If you don’t need scrollbars you should be able to turn them off either via ScrollPolicy or via custom CSS. From: serkan Reply-To: "users@royale.apache.org" Date: Monday, June 8, 2020 at 8:13 AM To: "users@royale.apache.org" Subject: hscroll bar for

Re: Compiler warnings !

2020-06-08 Thread Alex Harui
There are two ways, depending on the scenario: 1. Make sure none of the properties in the binding expression are of type Object and that the instances support change events 2. Annotate the appropriate properties with [Bindable(“__NoChangeEvent__”)] This expression looks like itemRenderer

hscroll bar for adg hides the content

2020-06-08 Thread serkan
Hi, for the "Manage" column the scroll bar hides the content. should have been something like that : if it is not a simple case i may create an issue. Thanks, Serkan

image component visibility evaluation

2020-06-08 Thread serkan
Hi, I have an image component as below: toolTip="{resourceManager.getString('messages', 'startJobTooltip')}" width="23" height="23"  includeInLayout="{data.visualParams.commandabilityParams.isStartable == true}" buttonMode="true"  visible="{data.visualParams.commandabilityParams.isStartable =

Re: Compiler warnings !

2020-06-08 Thread serkan
Thanks Carlos, Serkan 8.06.2020 17:49 tarihinde Carlos Rovira yazdı: Hi, it would be good to have some @ comment to disable per case, but currently you can only turn all on/off: https://apache.github.io/royale-docs/compiler/compiler-options.html#show-binding-warnings El lun., 8 jun. 202

Re: Compiler warnings !

2020-06-08 Thread Carlos Rovira
Hi, it would be good to have some @ comment to disable per case, but currently you can only turn all on/off: https://apache.github.io/royale-docs/compiler/compiler-options.html#show-binding-warnings El lun., 8 jun. 2020 a las 16:44, serkan () escribió: > Hi, > > Is it possble to get rid of t

Compiler warnings !

2020-06-08 Thread serkan
Hi, Is it possble to get rid of these warnings ? Warning: Data binding will not be able to detect assignments to 'isResumable'. visible="{data.visualParams.commandabilityParams.isResumable == true}" Thanks, Serkan

Re: issue #819

2020-06-08 Thread serkan
Closed. Thanks. Serkan 8.06.2020 02:52 tarihinde Alex Harui yazdı: What problem are you having? The correct icon is shown for me. -Alex On 6/7/20, 12:54 AM, "serkan" wrote: Reminder for https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fapache%2Froyale-as