I am using groupheader in 3 tables using MasterBand, DetailBand and SubdetailBand.
MasterDataBand
GroupHeader1
DetailDataBand
GroupHeader2
SubDetailBand
With DrillDown enabled, when GroupHeader2 is clicked it also expanding all groupheaders of the same level in another master detail records. Any idea how to expand only the groupheader which is clicked
It was a bug. Fix available on Build : 2.2.5 .
Related
https://github.com/Microsoft/EasyRepro/issues/178
Hi all,
I am using dynamics365 version 9.x
Using EasyRepro I can navigate into an account via the global search and then also use the xrmBrowser.Entity.ClickSubgridAddButton("foobar"); function to create a new record of that 'foobar' type. By doing this I know I am accessing the correct subgrid on the account record.
My question is....which function would I use to simply open up the record I have created. I have tried SelectSubgridLookup but I don't think that is the function I am looking for.
From the image you can see I have created the 'bonno bonno' contact but I cannot open the record using EasyRepro. any help would be greatly appreciated! :)
https://github.com/Microsoft/EasyRepro/issues/178
Hello #darthtang - sorry for the delayed reply to your post here. From reviewing, it appears this is a feature gap and needs to be enhanced.
While not ideal, if you wanted to open the record, you could try the following instead:
xrmBrowser.Entity.ClickSubgridGridViewButton(subgridName)
This should take you to the 'Associated View' via Related Navigation. From here, you could call:
optional:
xrmbrowser.Related.Search(contactrecordname);
xrmBrowser.Related.OpenGridRow(#)
At this point, you could then switch back to perform actions on the opened Contact entity record:
xrmBrowser.Entity.SomeMethod();
Please let me know if this set of steps help you with your scenario. I've added a feature enhancement to the backlog to allow opening of a record from a subgrid on a form.
i am using function "REUSE_ALV_GRID_DISPLAY" in order to display a grid. My problem is that not all the buttons in alv toolbar are displayed. For example, i can not see the "delete row" button.
This is my call:
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
IT_FIELDCAT = fieldcatalog
TABLES
t_outtab = lt_files_records_final
EXCEPTIONS
PROGRAM_ERROR = 1
OTHERS = 2
.
Can you please help?
IF you need the full editor functionality (including cell editors), you will have to move away from the (obsolete and unsupported) function module to the class CL_GUI_ALV_GRID. See the documentation here.
If you only need a delete button, it might be easier to add a custom button. Check the program SALV_DEMO_TABLE_FUNCTIONS for an example (and start using the ALV OM instead of the old function modules - much easier to code with).
I would like to add a "check for updates" menu item in the "Help" tab in the Rgui (on Windows).
I've already created the R function to check for updates, and now I wish to add it to the Rgui (ideally, with a massage box poping out with the results, or even a check-box for further actions by the user).
I'd appreciate any ideas on what functions to look into for doing this (if at all possible using base R, and if not - what packages might offer this option).
Thanks.
Here's an example - let's say you wanted to add a new menu called Update and wanted to add a menu item that updates all the packages with 'ask' set to FALSE
winMenuAdd("Update")
winMenuAddItem("Update", "Update R packages", "update.packages(ask = F)")
I am making a component in mxml file and i am using DataGrid and getting object.
gridTable is the object of the DataGrid and I am trying to select multiple rows by code.
so I am doing
gridTable.selectedIndices = [0,1,2,3,4,5,6,7,8,9];
gridTable.setStyle("horizontalGridLineColor",0xDDAAFF);
which is working partially like as below,
this is not showing selected rows at the same time when I do mouse over on the list then it is showing selected rows among all list
if Some buddy has solved this kind of issue please share your Experience.
I am using Flex 4.5.1A and FlashPlayer 10.2.0
Regards
Anuj Jindal
Sometime it will help. You can try with callLater() and validateNow().
callLater(function():void
{
gridTable.selectedIndices = [0,1,2,3,4,5,6,7,8,9];
gridTable.setStyle("horizontalGridLineColor",0xDDAAFF);
gridTable.validateNow();
});
http://livedocs.adobe.com/flex/3/html/help.html?content=layoutperformance_12.html
In the icCube Web Reporting you can set a graph and chart to respond on a click row/column/cell event and inidcate what must be done when the widget receives a click.
In this particular case I have the rows ordered based on a parameter.
But when I click on the row in the graph, the children are displayed without any order.
I found the following workaround, but it helps only with a named measure not a parameter:
use navigation strategy MDX iso children and use:
ORDER ($member.children, [measures].[amount], BASC)
the following gives an MDX error:
ORDER ($member.children, #{PARAMETER}, BASC)
The cause for the error is that it does not replace the #{PARAMETER} with the actual value.
Is there any other way/workaround to get this working in icCube?
A live working example explaining the questiuon can be found here
Sorry, it's a limitation - bug - in the current version : http://issues.iccube.com/issue/ic3pub-165
Will be fixed in 5.1.2