Two quick create forms are opened from Subgrid on "New" button click - dynamics-crm

I have kind of unusual issue with one of my subgrids in CRM.
On the Main form for an entity i have several subgrids, each of them for records from different entity.
When creating new record from subgrid, all of the forms are opened as expected, except one. It opens two quick create forms.
Forms are not opened normally, one following another. First one looks fine, except there is display name displayed twice. Another form doesn't display any field, just the close button. You can see the issue in the attached images.
I have checked Command for "New" Subgrid button in Ribbon Workbench, and there is nothing more than standard command. I have also tried to do this in several browsers, but the issue continued to appear. I have checked JavaScript functions and none of them is connected with this form.
Now I have lack of ideas what could cause this issue.
I need help for this if anyone had similar issue.

Related

Dynamics CRM: Model Driven App: When showing Custom Page as pop up Dialog, formatting error occurs

I am working with Microsoft Dynamics CRM and have a question.
I want to show a custom page as a pop up dialog in an entity form. So far, I am able to show it, but the formatting is broken. It looks like everything is on top of each other:
While checking, I saw that every element in the edit form (contained in the custom page) have its CSS position set to Absolute. This seems to be the problem here. The next picture confirms it. I changed the Top value of one of the element and got the following result:
Now, after having had a look into it, my question is the following:
Could you tell me, how exactly do I have to configure the editing form in the custom page to get the correct result (in the page designer)? I am also open for a JavaScript - solution. But I am not sure how to run it in this type of context.
Designer:Left side
Designer:right side 1
Designer: right side 2
I did not solve it. It was solved with the last Microsoft CRM update. (The one which hides the Advanced Find - Icon on certain parts of the system). I cannot say what exactly got changed. What I know is that I have not changed anything on my solution at all.

Outlook VSTO ribbon add-in tab not showing on load

I’ve created an add-in that consist of a ribbon and three tabs.
Background to build:
The ribbon is built using designer and not xml. The primary use of these is to allow quick opening of various email templates.
Tab0 adds a couple buttons to the built in TabMail
Tab1 is a new custom tab with various buttons that do various things.
Tab2 is a reduced version of Tab1 for use by users of our subsidiary company but pointing to alternatively branded templates.
In the coding, Tab1 and Tab2’s visibility is set based on user AD group membership on ribbon load event. This has been tested and works.
Tab0 always is merged with the built in Home tab shows as expected.
Developers and template admins like me should see all tabs. This also works using same methods.
Current issue:
Recently and I think after a certain office 365 update (but not 100% which), Tab1 no longer shows for anyone that should see it on load. However the tab has loaded somewhere. The reason I know this is because to fix this bug all I have to do is minimise the ribbon the re-maximise. Both additional tabs are instantly visible.
Please note, I do not have to disable and the re-enable the actual add-in.
I can also confirm that the Ribbon Type is set correctly (Microsoft.Outlook.Explorer) so please, no reply along those lines either.
I have trawled the web and cannot seem to find an explanation or fix for this behaviour. I'm hoping someone has seen this before and might point me in the right direction.
To replicate, I've seen it happen by just creating a new simple ribbon project and creating a new custom tab. Then create a second tab by copying the first, giving it a diff ID.
e.g.
Ribbon on App Launch/Load - Tab01 Missing
Ribbon on minimise - Tab01 Appears
Ribbon on maximised- Tab01 still visible
Still have no idea why this happens but i have found a work around for those that have experiences the same issue.
The issue seems to affect the first custom tab only. So if you add a new blank custom tab and set its visibility to false, this inherits this bug allowing the other to function properly.
Its a bit of a dirty fix but work well.
Would still be interested in an actual fix if anyone knows one though.
This happens because you had added control to your ribbon perhaps a property to the Control which you should not.
An example is when you add a Ribbon Gallery control to your Ribbon and change its "PositionType" property from Default to another value.
This results in the Ribbon not showing.
Or perhaps you should check the last code you added to your project

Joomla Breezing forms - Form not found issue

I am a newbie in Joomla. I have a site with Breezingforms installed.
Last week we created a form with 2 pages and around 25 elements. The form was published to the front end and was working without any issues.
Last day when i opened the site the form link is broken
I am getting the message
[Form 8 not found!]
instead of displaying the form elements. In admin am still able to see all form and page elements.
I also found that the forms generated are not saved. When i click any other tab and later when i come back I see all forms disappeared.
Am using Joomla 3.4 and Breezingforms build 906.
Any help is appreciated.
thank you
Hi to solve this issue simply click on the three save buttons that are available on breezing form whenever you are working on a form. One exists at the bottom left corner, one at the center left and the other at the top left corner. After working on any page, section or element click the three save buttons before you move to the next page, section or element.
I would urge you to follow the other advice. Make sure you click on save in both places. One is on your form and one is in the top left of the browser (on desktop).
Once you have done that your form should be saved, but there is one other possibility for why you cannot see it.
When you go into Breezing forms and click on "forms". You might see an empty page. If you choose the dropdown and choose "quickforms" you will see some forms that were not previously displayed.
If you are receiving an error "Form 8 not found" you should check the spelling of the form name. Don't forget you have a form name and a form title. You need to make sure you use the form name (which you can change). I usually copy and paste it. Form names would contain a space, so I would expect it to be the generated form name by Breezing forms. You should change it to "Form8" or "Form-8" to make it work properly.

Two calendars being opened when click on datepicker

I am having an issue for which I can find no Solution. Once I click on a datepicker on this page two date picker panels are opened for them. It only happens on this page. So I know there must be some kind of conflict. Please advise if I should add the source code of the form on the following page
Chronoforms Has an issue with having multiple forms on a single page. I had an booking engine on the very same page and they conflicted. Once I removed the booking engine the form worked perfectly and I did not have the multiple datepicker issue anymore

Partial refresh/reload in a repeatcontrol of a xpage

I've created a customcontrol with a repeatcontrol showing a panel for each related document (of a notes doccollection). The xpage arround the cc is bound to a maindocument.
The panel in the repeatcontrol contains some inputfields, a fileuploadcontrol, a filedownloadcontrol and an action-button.
If the user select a file in the fileuploadcontrol an press the button, then the document bound to the panel is saved and an notesagent replace the old attachment with the new selected.
After that, the current panel should be refreshed, so that the filedownloadcontrol shows the right attachment for download. But only the current panel should be refreshed, not the complete xpage or other panels in the repeatcontrol (context.reloadPage is not the solution I need).
Any idea?
I suggest you put all your code in the button and then partial refresh the panel in the button.
But I suspect that the question refres to that you cannot save a file attachment using partial refresh. which is true. there are a few solutions to this, like using an iframe. do a google search on that
An example for using iframes is described at the Domino development wiki. The mentioned approach is used in the Lead Manager X example at OpenNTF.
However, depending on whether or not that fits your needs, you may also consider using the XPages Exension Library, specifically the Dynamic Pages therein.
did you try giving the partial refresh id for the panel containing the document? If that doesnt work.. get the handle of the particular panel in clientside and refresh it. Panel inside repeat can be identified with its index.

Resources