How to add a custom filter to products dialog box of the opportunity products. dynamics365. Thank you very much for your answers in advance - microsoft-dynamics

I want to add a filter to products dialog box of the opportunity products .How can we add this for products dialog box in dynamics365. Thank you very much for your answers.
enter image description here

Related

How to use ionic model to view and edit data? is it good approach?

I have saved data in sqlite. Now i want to edit data. I want to create a model and give list of saved records in it. when user click on any row display on model it will go into edit mode . Is it good approach or should i create another page ??
I think to provide them with edit button/icon and when they click on edit button you can change all labels to Text edit format.
reasons -
This will be a mobile app, hence user needs to touch on the screen to scroll/change to another page. if the user mistakenly clicks on the label then the label will get change to edit mode and I guess that's bad user experience.
Every time you need to save the changes when the user clicks on the label (more database operation for a single word change).
Instead of this just provide edit button/icon, when they click on edit button, make the same page change to edit mode and show them save button (replace edit button).
Hope this will help you.
I don't see the link with the data model. However, when it comes to design, it is better if the user clicks on a row to open a new page.
If you want to switch to an edition mode, then you need a button dedicated to this feature.
Think "WYSIWYG" --> "What You See Is What You Get".

Add category while adding product in OpenCart2.x

I'm working on a webshop using OpenCart2.x. I would like to add category while I'm adding product and assign product to that category.
Just to clarify... Let's say I want to add "HTC One" to category "Android". I would like to go to Catalog > Product > Add Product, enter "HTC One" details and
if category "Android" dosen't exist OC should offer to create new category.
It is possible in wordpress/woocommerce so I hope it is possible in OC2.
Sorry if the question is not for this site.
Thank you!
No, this is unfortunately not possible in vanilla OpenCart. However, I did find somewhat of a trick to make this process a tad bit more convenient.
If you open your OpenCart admin panel in 2 different browser instances that use different sets of cookies (different browser or incognito/no cookie mode) you can make your categories in one instance and then the category auto complete list in your product creation page will instantly update. Not exactly the desired functionality but definitely better than having to switch back and forth.

create multiple categories in opencart

I developed this site using opencart (http://demob.atlastechng.com/edustuffs/) and this is my issue:
The side menu seems to pull information from the same top menu category. truth is i can decide to hide a new category from the top menu but not from the side menu.
Now, i'd love to create another list/category that will "Never" correspond to the top menu.
Eg the top menu may contain Home, Manipulatives, toys, books, e.tc
while the side menu will have a different menu..e.g Games, blogs, sale, other services, e.tc
How can i achieve this?
Please help
Please Uncheck on Category Data Page "Top: Display in the top menu bar. Only works for the top parent categories." this will show the category on Side Menu but not in top menu.

How should I create an action on the content tab of a folder that acts on all items that are selected?

I asked a series of questions in a post last week, and the person who answered very wisely suggested that I split it into separate questions. I have added a CMF action for folders called "Remote Publish". The button now shows up when viewing the "Content" tab for all folders. How would one now add the logic to do something as simple as writing the titles of the selected items to a log when the button is clicked? Ultimately I will have the selected items share their titles with a web service that I have written, but I am thinking baby steps :D Any help is appreciated.
The simplest thing you can do is: copy what other button are doing!
For example: copy the CMF skin script name folder_delete.cpy. You'll see that paths parameter if loaded from the REQUEST.

Django Admin refining selectbox values based on another selectbox

I have models for the following:
Country
Prov/State
City
Region
Community
Is there a way in the Django admin to filter the values in the select boxes based on the selection in the previous select box?
eg: I select Canada in the country select box, then in the Prov/State select box I am only presented with the Provinces. Once that is selected, the City select box only presents cities within the Province selected. etc...
I have been looking at the formfield_for_foreignkey, but I haven't been able to get it working just yet. I may not be understanding the use correctly.
Thanks
As I suspected, it appears that I will have to dig into something based on the Ajax framework to do what I want to do. For those interested, the following are links to some sites that I found to be somewhat useful.
DajaxProject
Dojo
If anyone has any other suggestions, please let me know.