Custom button/menu button on quick create form in CRM 2013 - customization

Is it possible put extra button to quick create form in CRM 2013?
I have std ribbon button in std form to acquire info about company from internet. I want similar button in quic create form.

There is no ribbon support in Quick Create forms. I would therefore add a button to the Quick Create form using an HTML web resource which performs the same action (JavaScript?) as that on the existing ribbon button you've already created.
If this feature must be available on both forms I would for UI consistency use the same web resource approach on the Quick Create and Main forms rather than one button in the ribbon and one on the form as a web resource.

Related

Infopath 2013 Buttons

We have developed a form that is being used via SharePoint 2013. We would like the audience to be able to click on a list item to open up the InfoPath form and then when in the InfoPath form, press on the created buttons to load different views of the form and hide/show certain sections....without it being in Edit mode.
The premise being that the end user has an interactive form that is quick and easy to use upon loading.
Is there any way that a user can activate the rules applied to the buttons in Read mode or does Edit mode always have to be activated first?
Many thanks in advance for any hints or tips!
Well technically you can create a Read-Only form by making all the Pages Read-Only in their settings and use data connections to pull the data into the form fields you want.
So I would make a landing page with buttons that would change the view, run a query and set fields values that you want to display for each Read-Only page/view.

How can I create a button for a django admin action?

I have a django admin action say "refresh", I want to add a refresh button for each row in the admin list view. I can create button using format_html but how can I invoke "refresh" action when it is pressed?
I don't think admin actions are the best fit in this case.
Actions are
simple functions that get called with a list of objects selected on the change list page
With the buttons you describe however, you want to operate on a single row/instance.
Therefore I would simply create a custom url endpoint for your ModelAdmin which is called when you press the button and which handles the desired action.
This article has quite a comprehensive overview how this can be done in detail.

MS Access Web App: Link existing view to table

I have created a new view ("form") in my Access Web App using the menu buttons to create a new view. The view is bound to a table in my database. Running Access on my computer, I can select the view from the navigation panel on the left.
Now I would like to have a link to my view appear at the top of the page in the Web App. Much like the default List and Datasheet view that are created automatically for every new table.
How can I create a link to my view, so that I can select it when running my Web App in the browser?
(And in general: where's a good place to find documentation and help regarding Access Web Apps. I'm having a hard time finding anything online)
thanks for your help.
What entry point did you use to create this new view in your Access web app? If you used the Advanced button on the ribbon, that creates what we call a standalone view in your web app - a view that exists in the Navigation Pane in Access client. You can only open these types of views using macros.
In order to "associate" an existing standalone view to the View Selector at the top of the navigation, right-click the view name in the Navigation Pane and select Duplicate. a dialog box will appear that allows you to create an identical copy of the view and "associate" it with a particular table. It will then appear as a link in the View Selector. You can then delete the original view if you want.

Skip Glympse wizard view iOS

I want to integrate Glympse in my application, but without the wizard view.
In detail:
After calling the sendTicket() method the application opens an URL which leads to the wizard view of Glympse. Here the user can apply the settings and finally send the Glympse.
To react on a successfully sent Glympse a listener can be added.
But I don't like the wizard view to pop up. I want a method which sends the whole Glympse, i.e. I don't want to "leave" my app.
Is there a possibility to do that?
In order to skip the wizard view, you'll need to use the Glympse Commercial SDK. See a comparison of the differences between that and the Lite SDK which you're currently using here: https://developer.glympse.com/sdk/comparison
Drop us a note using the form on the bottom of that page and we'll send you what you need!

Change View of Sharepoint XSLT List View webpart in javascript

I have created a Sharepoint hosted app for Office 365. It has a page file "default.aspx". I have added an XSLTListViewWebpart on that page, referring a custom List I created within my APP project. I have a requirement that on a button click event, I need to change the View of the List displayed in the XSLTListViewWebpart. Since there is no server code within the APP, would this be possible in javascript? Or would it be possible to somehow change the query that the webpart uses?
You can try to use Javascript object model to achieve this. Please see this article.