You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@royale.apache.org by GitBox <gi...@apache.org> on 2020/02/24 13:08:13 UTC

[GitHub] [royale-asjs] pashminakazi opened a new issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

pashminakazi opened a new issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731
 
 
   Project Details are :
   https://paste.apache.org/cpo8y
   Test case is available on VDI.
   Go to Accounts Payable from Select in Menu
   Go to ATM Rental Income from Setups in Menu
   File : com/dbz/modules/AR/dbzATMRentalReceipt.mxml
   
   Open this Setup Click on New button then on plus button (+)
   Detail grid will be open then click plus button (+)  of detail grid,row will be added when you click on + button,that row should be editable like flex.
   Royale : Nothing is editable,and on Clicking it is not opening Picklist
   ![image](https://user-images.githubusercontent.com/42200979/75154761-4ec80700-5730-11ea-8c6b-3a7bf16188e3.png)
   
   
   Flex: When click on **Monthly Amount** Column,it is opening numericStepper
   ![image](https://user-images.githubusercontent.com/42200979/75154603-e416cb80-572f-11ea-84fa-4b9140e9fb9a.png)
   
   When Click on 5th Column **Rental Income** it is opening Picklist in Flex
   ![image](https://user-images.githubusercontent.com/42200979/75154668-0f99b600-5730-11ea-898c-e1c1a256e9e3.png)
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-593282230
 
 
   After this commit Exception On Opening ATM Rental Income Setup : 
   ![image](https://user-images.githubusercontent.com/42200979/75658454-2ee19780-5c8a-11ea-806e-87c092039394.png)
   No other Exception,but now Detail ADG is blank
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] pashminakazi edited a comment on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
pashminakazi edited a comment on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-596922049
 
 
   In dbzATMRentalReceiptDetail.mxml
   				`<mx:AdvancedDataGridColumn headerText="Rental Income a/c" dataField="rrd_Acc_Code" id="rrd_Acc_Code" width="120" editable="false" labelFunction="fn_FormatCOAGrid"/>`
   
   ```
   	var arrPLTitle:Array = new Array( "Rental Income a/c", "Cost Center (Retail Outlet)");
   					
   					var arrPLCode:Array = new Array(arrDtlTransDP[j].rrd_Acc_Code, arrDtlTransDP[j].rrd_Costcntr_Code);
   					
   					var arrPLDesc:Array = new Array(arrDtlTransDP[j].rrd_Acc_Desc, arrDtlTransDP[j].rrd_Costcntr_Desc);
   ```
   This code is setting value on Rental Income
   and itemDoubleClick="fn_EditFieldDetail(event);" is applied on AdvancedDataGrid whenever any Record of ADG will be doubleClicked this function Called and **else if(colName == "rrd_Acc_Code")**  should be executed because **Rental Income a/c Column Id="rrd_Acc_Code"** and then it is opening Picklist in Code 
   ```parentMxmlDocument.parentMxmlDocument.parentMxmlDocument.f_HandlePickLists_Doc(dbzDataStructure.PL_COST_CENTER,
   						dbzDataStructure.PL_MODE_SIMPLE, Costcntr_Code, Costcntr_Desc, null);
   ```	
   
   ```
   public function fn_EditFieldDetail(event:ListEvent):void 
   			{
   				gi_row = event.rowIndex;
   				gi_col = event.columnIndex
   				var colName:String = dgTrans.columns[event.columnIndex].dataField;
   				
   				if(colName == "rrd_Costcntr_Code")
   				{		
   					Costcntr_Code.text = arrDtlTransDP[gi_row].rrd_Costcntr_Code;
   					Costcntr_Desc.text = arrDtlTransDP[gi_row].rrd_Costcntr_Desc; 
   					parentMxmlDocument.parentMxmlDocument.parentMxmlDocument.f_HandlePickLists_Doc(dbzDataStructure.PL_COST_CENTER,
   						dbzDataStructure.PL_MODE_SIMPLE, Costcntr_Code, Costcntr_Desc, null);	//strDocTypeRef									
   				}
   				else if(colName == "rrd_Acc_Code")
   				{			
   					Acc_Code.text = arrDtlTransDP[gi_row].rrd_Acc_Code;
   					Acc_Desc.text = arrDtlTransDP[gi_row].rrd_Acc_Desc; 
   					parentMxmlDocument.parentMxmlDocument.parentMxmlDocument.f_HandlePickLists_Doc(dbzDataStructure.PL_ACCOUNT,
   						dbzDataStructure.PL_MODE_SIMPLE, Acc_Code, Acc_Desc, null);	//strDocTypeRef									
   				}				
   			}
   ```
   
   Please solve this issue

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-593273767
 
 
   On Clicking `Rental Income a/c `it is opening Picklist in Flex and In Royale it is not opening PickList
   ![image](https://user-images.githubusercontent.com/42200979/75656999-102dd180-5c87-11ea-87e2-055d43c1d42e.png)
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-594132318
 
 
   I took a look at the app as you left it on the VDI.  The detail ADG does not have any items in the DataProvider so it is correctly blank.  Lots of exceptions are being thrown by the "sample" DG because it has been shrunk down.  Since it has visible=false, you could give it a larger size and see if that makes the exception go away.  There is a chance that the exceptions are affecting initialization of the detail ADG

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-592672979
 
 
   Try with latest changes and see if it works better

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-597454778
 
 
   I've made some changes that might fix the issues.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-593290609
 
 
   It really isn't my responsibility to find out why your Flex code used an HBox.  You are supposed to be more knowledgable about your code than me.  Ask your manager or the people who wrote the code or figure it out yourself by taking away the HBox.
   
   In my test case, MXAdvancedDGIR as the top tag in the renderer worked.  I did not try HBox as the code did not make sense.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-595643336
 
 
   I do not see an editor specified for Rental Income column.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-597465710
 
 
   @aharui Thank u so much it is working fine now,but one more thing
   In detail Grid Monthly Amount is numericStepper,so the value of numericStepper should be changed by clicking up or down arrow of NumericStepper,but the value isn't change
   ![image](https://user-images.githubusercontent.com/42200979/76388576-422beb80-638b-11ea-9e31-1c3ca29b29b7.png)
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-594141164
 
 
   After your latest commits the dataprovider is setting no values,but if I
   revert the change the dataprovider sets the value in Detail grid
   
   On Wed, Mar 4, 2020, 12:42 AM aharui <no...@github.com> wrote:
   
   > I took a look at the app as you left it on the VDI. The detail ADG does
   > not have any items in the DataProvider so it is correctly blank. Lots of
   > exceptions are being thrown by the "sample" DG because it has been shrunk
   > down. Since it has visible=false, you could give it a larger size and see
   > if that makes the exception go away. There is a chance that the exceptions
   > are affecting initialization of the detail ADG
   >
   > —
   > You are receiving this because you authored the thread.
   > Reply to this email directly, view it on GitHub
   > <https://github.com/apache/royale-asjs/issues/731?email_source=notifications&email_token=AKB67E4THTXHKKWDGEFMTJLRFVMS7A5CNFSM4K2H5RLKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOENU32XQ#issuecomment-594132318>,
   > or unsubscribe
   > <https://github.com/notifications/unsubscribe-auth/AKB67E2SCL7DUEPPJEV6IA3RFVMS7ANCNFSM4K2H5RLA>
   > .
   >
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-596928966
 
 
   @aharui Check this issue

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-593281277
 
 
   Yes, HBox wrapping MXAdvancedDataGridItemRenderer In Flex as well

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-594197497
 
 
   Try again with the latest code in case one of those fixes helped here.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-592703555
 
 
   is the VDI up to date with these changes?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] pashminakazi edited a comment on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
pashminakazi edited a comment on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-596922049
 
 
   In dbzATMRentalReceiptDetail.mxml
   				`<mx:AdvancedDataGridColumn headerText="Rental Income a/c" dataField="rrd_Acc_Code" id="rrd_Acc_Code" width="120" editable="false" labelFunction="fn_FormatCOAGrid"/>`
   
   ```
   	var arrPLTitle:Array = new Array( "Rental Income a/c", "Cost Center (Retail Outlet)");
   					
   					var arrPLCode:Array = new Array(arrDtlTransDP[j].rrd_Acc_Code, arrDtlTransDP[j].rrd_Costcntr_Code);
   					
   					var arrPLDesc:Array = new Array(arrDtlTransDP[j].rrd_Acc_Desc, arrDtlTransDP[j].rrd_Costcntr_Desc);
   ```
   This code is setting value on Rental Income
   and itemDoubleClick="fn_EditFieldDetail(event);" is applied on AdvancedDataGrid whenever any Record of ADG will be doubleClicked this function Called and **else if(colName == "rrd_Acc_Code")**  should be executed because **Rental Income a/c Column Id="rrd_Acc_Code"** and then it is opening Picklist in Code 
   ```
   parentMxmlDocument.parentMxmlDocument.parentMxmlDocument.f_HandlePickLists_Doc(dbzDataStructure.PL_COST_CENTER,
   						dbzDataStructure.PL_MODE_SIMPLE, Costcntr_Code, Costcntr_Desc, null);
   
   ```
   
   ```
   public function fn_EditFieldDetail(event:ListEvent):void 
   			{
   				gi_row = event.rowIndex;
   				gi_col = event.columnIndex
   				var colName:String = dgTrans.columns[event.columnIndex].dataField;
   				
   				if(colName == "rrd_Costcntr_Code")
   				{		
   					Costcntr_Code.text = arrDtlTransDP[gi_row].rrd_Costcntr_Code;
   					Costcntr_Desc.text = arrDtlTransDP[gi_row].rrd_Costcntr_Desc; 
   					parentMxmlDocument.parentMxmlDocument.parentMxmlDocument.f_HandlePickLists_Doc(dbzDataStructure.PL_COST_CENTER,
   						dbzDataStructure.PL_MODE_SIMPLE, Costcntr_Code, Costcntr_Desc, null);	//strDocTypeRef									
   				}
   				else if(colName == "rrd_Acc_Code")
   				{			
   					Acc_Code.text = arrDtlTransDP[gi_row].rrd_Acc_Code;
   					Acc_Desc.text = arrDtlTransDP[gi_row].rrd_Acc_Desc; 
   					parentMxmlDocument.parentMxmlDocument.parentMxmlDocument.f_HandlePickLists_Doc(dbzDataStructure.PL_ACCOUNT,
   						dbzDataStructure.PL_MODE_SIMPLE, Acc_Code, Acc_Desc, null);	//strDocTypeRef									
   				}				
   			}
   ```
   
   Please solve this issue

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-593262118
 
 
   I've pushed changes to get MXAdvancedDataGridItemRenderer to work, and to contain a DateField.  Some of the custom renderers in your app seem unusual:  An HBox wraps an MXAdvancedDataGridItemRenderer.  Are you sure your Flex version does that?  It doesn't seem like the HBox wrapper would allow proper handling of editing.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-593275488
 
 
   after this change Detail ADG is blank for Every row,before this commit ADG was full of rows
   ![image](https://user-images.githubusercontent.com/42200979/75657269-9cd88f80-5c87-11ea-8cfc-544169d2ce51.png)
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-596922049
 
 
   In dbzATMRentalReceiptDetail.mxml
   				`<mx:AdvancedDataGridColumn headerText="Rental Income a/c" dataField="rrd_Acc_Code" id="rrd_Acc_Code" width="120" editable="false" labelFunction="fn_FormatCOAGrid"/>`
   
   ```
   	var arrPLTitle:Array = new Array( "Rental Income a/c", "Cost Center (Retail Outlet)");
   					
   					var arrPLCode:Array = new Array(arrDtlTransDP[j].rrd_Acc_Code, arrDtlTransDP[j].rrd_Costcntr_Code);
   					
   					var arrPLDesc:Array = new Array(arrDtlTransDP[j].rrd_Acc_Desc, arrDtlTransDP[j].rrd_Costcntr_Desc);
   ```
   This code is setting value on Rental Income
   and itemDoubleClick="fn_EditFieldDetail(event);" is applied on AdvancedDataGrid whenever any Record of ADG will be doubleClicked this function Called and **else if(colName == "rrd_Acc_Code")**  should be executed because **Rental Income a/c Column Id="rrd_Acc_Code"** and then it is opening Picklist in Code ```
   parentMxmlDocument.parentMxmlDocument.parentMxmlDocument.f_HandlePickLists_Doc(dbzDataStructure.PL_COST_CENTER,
   						dbzDataStructure.PL_MODE_SIMPLE, Costcntr_Code, Costcntr_Desc, null);
   ```	
   ```
   public function fn_EditFieldDetail(event:ListEvent):void 
   			{
   				gi_row = event.rowIndex;
   				gi_col = event.columnIndex
   				var colName:String = dgTrans.columns[event.columnIndex].dataField;
   				
   				if(colName == "rrd_Costcntr_Code")
   				{		
   					Costcntr_Code.text = arrDtlTransDP[gi_row].rrd_Costcntr_Code;
   					Costcntr_Desc.text = arrDtlTransDP[gi_row].rrd_Costcntr_Desc; 
   					parentMxmlDocument.parentMxmlDocument.parentMxmlDocument.f_HandlePickLists_Doc(dbzDataStructure.PL_COST_CENTER,
   						dbzDataStructure.PL_MODE_SIMPLE, Costcntr_Code, Costcntr_Desc, null);	//strDocTypeRef									
   				}
   				else if(colName == "rrd_Acc_Code")
   				{			
   					Acc_Code.text = arrDtlTransDP[gi_row].rrd_Acc_Code;
   					Acc_Desc.text = arrDtlTransDP[gi_row].rrd_Acc_Desc; 
   					parentMxmlDocument.parentMxmlDocument.parentMxmlDocument.f_HandlePickLists_Doc(dbzDataStructure.PL_ACCOUNT,
   						dbzDataStructure.PL_MODE_SIMPLE, Acc_Code, Acc_Desc, null);	//strDocTypeRef									
   				}				
   			}
   ```
   
   Please solve this issue

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-595100744
 
 
   @aharui Picklist is not opening on Clicking 5th Column Rental Income and numericStepper values are not changing by clicking on top and bottom arrow of numericStepper,values change by typing numericStepper value

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-592704466
 
 
   Yes,vdi is git repo with latest sdk till your commit
   https://github.com/apache/royale-asjs/commit/36cbf6ae96d642ad7839b564f003c2445562a320
   And all setups related to issues are compiled with new sdk on vdi

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-593287631
 
 
   Sorry but i don't know the purpose of the HBox,I never worked on Flex

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-593286973
 
 
   I saw an HBox wrapping an MXAdvancedDataGridItemRenderer containing a DateField.  The editorDataField for the column was referencing a property defined in the MXAdvancedDGIR, not the HBox.  I do not understand how that can work.  Please explain.  What is the purpose of the HBox?  MXAdvancedDGIR is normally the top-level tag.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-597701968
 
 
   That image implies you do not have all of the latest changes.  Are you saying when you click on the button nothing happens, or the NS goes away, or when the NS goes away that the value is not updated?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
pashminakazi commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-592702329
 
 
   I have downloaded new sdk today after your this commit https://github.com/apache/royale-asjs/commit/36cbf6ae96d642ad7839b564f003c2445562a320
   And this is still not working

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [royale-asjs] aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable

Posted by GitBox <gi...@apache.org>.
aharui commented on issue #731: AdvancedDataGridColumn mx:itemEditor mx:Component should be Editable
URL: https://github.com/apache/royale-asjs/issues/731#issuecomment-593277790
 
 
   Are there exceptions in the console?
   
   Please answer my question about HBox wrapping MXAdvancedDataGridItemRenderer.  I don't understand how the renderers I looked at would work, even in Flex.
   
   You might want to create a simple test case

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services