How to change the popup of extended properties in the portal with new editors (editor of collections)?

Hello

We try to change the extended properties, I think the component in the web designer to display a selector of user object instead of a text field for extended properties, attached to the element of service requested... Any help would be appreciated...

Thank you

I think you can also do the following

(1) expand the ShoppingCartItem and PersonWantsOrg table with a column (CCC_Person). This will be a foreign key column containing pointing to the Person table, and this will stored an entry UID_Peson

(2) create a new request property (shop Manager-> IT > config database-> properties of demand), assign this column CCC_Person

(3) affect the request property of the AccProduct (open the product and find the field 'Properties of the request' in the Manager)

Once done, when you click on 'Request', it should allow the request property, which in turn is a FK field in the person table, in effect it should allow you to choose a person.

I have not tested but I think it should work.

If you prefer to use ADSAccount instead of the person, change the column pointing to ADSAccount instead. Of course, you need manage what is happening with this column in the backend process.

HTH

Tags: Dell Tech

Similar Questions

  • How to change the Rectangles with buttons

    I'm working on this example that does not work correctly:

    public class test extends Application
    {
    
        private void init(Stage primaryStage)
        {
    
            Group root = new Group();
            primaryStage.setScene(new Scene(root));
    
            String pillButtonCss = DX57DC.class.getResource("PillButton.css").toExternalForm();
    
            // create 3 toggle buttons and a toogle group for them
            ToggleButton tb1 = new ToggleButton("Left Button");
            tb1.setId("pill-left");
            ToggleButton tb2 = new ToggleButton("Center Button");
            tb2.setId("pill-center");
            ToggleButton tb3 = new ToggleButton("Right Button");
            tb3.setId("pill-right");
    
            final ToggleGroup group = new ToggleGroup();
            tb1.setToggleGroup(group);
            tb2.setToggleGroup(group);
            tb3.setToggleGroup(group);
            // select the first button to start with
            group.selectToggle(tb1);
    
            //////////////////////////////////////////
    
            final VBox vbox = new VBox();
    
            final Rectangle rect1 = new Rectangle(300, 300);
            rect1.setFill(Color.ALICEBLUE);
            final Rectangle rect2 = new Rectangle(300, 300);
            rect2.setFill(Color.AQUA);
            final Rectangle rect3 = new Rectangle(300, 300);
            rect3.setFill(Color.AZURE);
    
            tb1.setUserData(rect1);
            tb2.setUserData(rect2);
            tb3.setUserData(rect3);
    
            group.selectedToggleProperty().addListener(new ChangeListener<Toggle>()
            {
                @Override
                public void changed(ObservableValue<? extends Toggle> ov, Toggle toggle, Toggle new_toggle)
                {
                    if (new_toggle == null)
                    {
                        //rect.setFill(Color.WHITE);
                    }
                    else
                    {
                        vbox.getChildren().addAll((Node[]) group.getSelectedToggle().getUserData());
                        //rect.setFill((Color) group.getSelectedToggle().getUserData());
                    }
                }
            });
    
    
            ///////////////////////////////////////////
    
    
            HBox hBox = new HBox();
            hBox.getChildren().addAll(tb1, tb2, tb3);
            hBox.setPadding(new Insets(20, 20, 260, 20));
            hBox.getStylesheets().add(pillButtonCss);
    
    
    
            vbox.getChildren().add(hBox);
            //vbox.getChildren().add(rect);
    
            root.getChildren().add(vbox);
        }
    
        @Override
        public void start(Stage primaryStage) throws Exception
        {
            init(primaryStage);
            primaryStage.show();
        }
    
        public static void main(String[] args)
        {
            launch(args);
        }
    }
    
    
    

    I want to create several Rectangles (or in which object or object) in which I want to store data. I want to spend the Rectangles (objects) that appear in front of the user by using the buttons. The example that I put in place does not work correctly. Can you tell me what is the right way to implement this?

    REF javafx 2 - How to change the Rectangles with buttons - stack overflow

    You have two problems:

    User data that assign you to each button switches are a node, not a [Node]. Thus, the cast will fail on line 43.

    When the selected toggle changes, you add another Rectangle to the vbox. You want to replace the rectangle that is in the vbox.

    Try

    vbox.getChildren () .setAll ((Node) group.getSelectedToggle () .getUserData ());

  • How to change the shortcut for 'new links '.

    I have InDesign CC2015 and I have a hard time to change the shortcut for 'new links '. I'm going in Edition > keyboard shortcuts, change in the area of product to the 'Type' Menu, but I see absolutely no sign of 'Hyperlnks & referrals' or 'new hyperlink. It frustrates me, because it is one of the functions that I use for most. Hope you can help. Thank you.

    Hi Christian

    You can change the new hyperlink via Edit-> keyboard shortcut shortcut and change the product box = (instead of Type) Panel Menu and select the hyperlink: new hyperlink...

    Thank you & best regards

    Dinesh Kukreja

  • How to change the Source with EditText text in my Script?

    Here is my code, actually, the thing is I want to change my myEditText text in my control panel:

    function myScript(thisObj) {
              function myScript_buildUI(thisObj) {
                        var myPanel = (thisObj instanceof Panel) ? thisObj : new Window("palette", "My Panel Name", [0, 0, 300, 300]);
    
                        res="group{orientation:'column', alignment:['fill', 'fill'], alignChildren:['fill', 'fill'],\
                                  myEditText: EditText{text:'EditText text'},\
                                  myButton: Button{text:'Button Name'},\
                        }"
    
                        //Add resource string to panel
                        myPanel.grp = myPanel.add(res);
                        
                        
                        var texto = myPanel.grp.myEditText.text.value
                        
                        var btn =  myPanel.grp.myButton
                        
                        
                        
                        btn.onClick = function (){
                            
                            app.project.item(2113).layer("TXT 1").property("Text").property("Source Text").setValue = texto
                            
                            }
                        
                        
                        
                        
    
    
                        //Setup panel sizing and make panel resizable
                        myPanel.layout.layout(true);
                        myPanel.grp.minimumSize = myPanel.grp.size;
                        myPanel.layout.resize();
                        myPanel.onResizing = myPanel.onResize = function () {this.layout.resize();}
    
                        return myPanel;
              }
    
    
              var myScriptPal = myScript_buildUI(thisObj);
    
    
              if ((myScriptPal != null) && (myScriptPal instanceof Window)) {
                        myScriptPal.center();
                        myScriptPal.show();
                        }
              }
    
    
              myScript(this);
    

    Something like this should work:

    function myScript(thisObj) { 
    
      var textStr = "";
    
      function myScript_buildUI(thisObj) {
    
      var myPanel = (thisObj instanceof Panel) ? thisObj : new Window("palette", "My Panel Name", [0, 0, 300, 300]);  
    
      res = "group{orientation:'column', alignment:['fill', 'fill'], alignChildren:['fill', 'fill'],\
      myEditText: EditText{text:'EditText text'},\
      myButton: Button{text:'Button Name'},\
      }"
    
      //Add resource string to panel
      myPanel.grp = myPanel.add(res);
    
      // I added the next two lines.
      textStr = myPanel.grp.myEditText.text;
      myPanel.grp.myEditText.onChange =  myPanel.grp.myEditText.onChanging = textStringUpd;
    
      myPanel.grp.myButton.onClick = function (){
    
      app.project.item(2113).layer("TXT 1").sourceText.setValue(textStr);
      //or tell the script to change the soureText property of the currently selected layer (remove the two slashes from the line below and add them to the line above)
      //app.project.activeItem.selectedLayers[0].sourceText.setValue(textStr);
    
      }
    
      //Setup panel sizing and make panel resizable
      myPanel.layout.layout(true);
      myPanel.grp.minimumSize = myPanel.grp.size;
      myPanel.layout.resize();
      myPanel.onResizing = myPanel.onResize = function () {this.layout.resize();}
    
      return myPanel;
    
      }  
    
      var myScriptPal = myScript_buildUI(thisObj);
    
      // I added this function.
      function textStringUpd() {
    
      textStr = this.text;
    
      }
    
      if ((myScriptPal != null) && (myScriptPal instanceof Window)) {
                myScriptPal.center();
      myScriptPal.show();
      }
      }  
    
    myScript(this);
    

    I've added comments to indicate the changes that I made

  • How to change the "open with...". "to the zip folder?

    On the accident when opening a zip file with another program after going to the screen 'Open with', I didn't know that the small box has been checked for "Always use the selected program to open this type of file".

    Now, whenever I try to open a zip file, it doesn't with a zip on the RECORD, as he used to. It opens in whatever program is selected to open it with.

    I don't know how to make my zip files open in a zip folder.

    HELP Please!

    See http://www.winhelponline.com/articles/105/1/File-association-fixes-for-Windows-Vista.html

    Download the fusion and reg fix zip file.

    I hope this helps. Microsoft® Security MVP, 2004-2009

  • How to change the fonts with JS?

    Hello

    I have some files using the font that I want to replace it with another, but fail to understand how to do this with scripts. It's probably something very simple, but I can't go anywhere...

    for example, files indd containing character using [MyOldFont] styles like font family - > how I itterate through all objects using a few references to the old font and replace [MyNewFont] as the family of fonts by the script?

    Thank you

    K.

    In the character styles, you say:

    If (myCharacterStyle.appliedFont is "Fonts X")

    myCharacterStyle.appliedFont = 'Font Y')

    and cela for all character styles and paragraph styles probably as well. Then maybe do a find/replace on the document to catch local applications of the police:

    app.findGrepPreferences = app.changeGrepPreferences = null

    app.findGrepPreferences.appliedFont = "Fonts X"

    app.changeGrepPreferences.appliedFont = "Fonts Y"

    app.activeDocument.changeGrep)

    Peter

  • How to change the Tiff with black background

    Hi all

    Here, I have attached test.tif illustrates normal file in windows Explorer, I'm open to change in photoshop, it opens with a black background can one has encountered this problem before?

    My thumbnails in windows Explorer

    img1.jpg

    My thumbnails of images in Photoshop CS2

    img2.jpg

    the original tiff image is here

    http://www.4shared.com/photo/fTznyfQr/test.html

    Thanks in advance

    concerning

    a you are the

    OK follow these steps to get rid black background

    1. open the image in Photoshop

    2 panel open layers

    3 hold down you control key and click on the Alpha (down in the Panel channel) channel, it will make a selection

    4. press the button DELETE and if you are prompted choose fill with 'White '.

    5. save

    Paul

  • Satellite A200 - 23 X: how to change the app assigned to buttons on the touchpad

    Dear friends,
    I have the Toshiba A200 23 X with Vista.
    I installed the Synaptics pointing for the touchpad device. I assigned in the 3 buttons, 3 different possibilities for that when I touch each of these buttons to start the appropriate application.

    The question is how to change the applications that I assigned?

    The first time, before fix, when I touch for example, the first button, a small window appears asking to attach a request, the same happened with the rest buttons 2.
    But now I want to change these apps that I have attached to these buttons, I know no way th.

    If anyone can help please.

    Thank you very much

    Hello

    I think you can change the settings of touchpad button in the properties of the touchpad.
    You can find properties of * Panel-> mouse-> device (last tab)-> settings button settings *.

    There are a few options. You must choose the option called Dual mode
    You will find the area where new applications could be affected.

    Concerning

  • How to change the settings on the Equium A100 color & contrast

    Does anyone know how you change the settings on the Equium A100 color & contrast? Thank you.

    Hello

    Change the contrast and color?
    Well buddy, you can change the screen brightness level using the FN + F6 and F7 key combination of.
    The other settings are only editable in the properties of the graphics card.
    I put t know what graphics card you are using but usually you must search advanced options.
    Check if there is no gamma, brightness or contrast settings.

    I found these settings on my laptop. I have a graphics card intel and the option was called the color correction

  • How to change the upper-left corner of the multicolumn listbox?

    Can I change the properties of the cell (-1, -1), but I don't know how to change the text.

    Is it too simple or impossible?

    Kind regards

    Ljubo.

    In Excel, you cannot change the headers of columns (A, B, c...) and headers of lines (1, 2, 3,...).

    I have a 2D data table Y a 1 d of data table X. data of X are the same for all the columns of Y. The first idea was to use X values as row headings to give him special attention. There should be a header above the data of X (name, quantity, unit,...). See the example below.

    The solution is very simple: I created a label and put it on the upper left corner of the listbox.

    Good day

    Ljubo.

  • How to change the size of icons and windows

    original title: oversized windows and icons

    im stuck in something I don't know how to change, all my windows and icons are so big they tend to adapt to the screen and I know its something simple to fix but I can not find it ive tried all the display options and disabilities can't just can someone help me please

    Hello

     

    ·         Were there recent changes made on the computer before the show?

     

    Follow these steps and check if that helps:

     

    Step 1:

     

    (a) click on the tab "Start" then go to control panel. In the upper left corner, click 'Switch to Classic view'-, it will take only a few seconds until Windows in Classic view. In Classic view, you will see all of the icons that are currently on your desktop.

    (b) go to 'View' and the display properties box opens. On the appearance tab, press the 'Effects', uncheck 'Use large icons'. Press the OK button, and then click OK again in the display properties box. The icons will appear normal on your desktop.

     

     

    Step 2:

    (a) right click on your mouse and scroll down to "Properties". The display properties box will be pop up, so go to the appearance tab then click the "Advanced" button and look for "Item.

    (b) scroll to the bottom of the box and select "icon". Go to the 'size' change the default size, 32, for your icon. Press the button 'Apply' then 'OK '.

     

    See also:

     

    How to change the appearance of items on the desktop in Windows XP

    http://support.Microsoft.com/kb/310543

    Step 3:

    If the problem persists, update the latest graphics card drivers on the manufacturer's Web site and check if it helps.

    How to manage devices in Windows XP

  • Microsoft Paint - how to change the rule in inches and centimeters

    How to change the rule in inches, centimeters, etc.. ?

    While in the paint, select the arrow down in the blue box in the upper left of the window.

    Select Properties

    Set the unit of inches, etc.

  • How to change the product ID of Windows 7, when you put the disc in the other PC

    I PC_1 with an SSD and a valid license of Windows 7 OEM (HP).  I want to put this SSD in a new, more powerful PC_2.  PC_2 holds a valid license of Windows 7 OEM (Packard Bell).

    My thoughts are:

    1 use Double driver to make a backup of all the PC_2 drivers.  Use ABR Activation Backup and Restore to save the certificate key and activation license for W7 on PC_2

    2 put the SSD in PC_2 and change the license key and activation of the certificate (it has the PC_1 keys/certificates) to the PC_2 keys/certificates

    3. install missing drivers to disk backup Double.

    The problem is How to change the key/certificate in step 2?

    Of course I could rebuild W7 on the SSD and give him the key to license PC_2 for the reconstruction, but that would mean reinstall all my other programs that I prefer not to do so.  I downloaded and still have, a copy of W7 iso website digitalrivers if this can help.

    Thank you

    Put the SSD from PC 1, PC 2 and startup, update drivers, and change it to the product key located on the certificate of authenticity.

    As long as they are running the same edition should not be a problem.

    Click Start, right click on computer

    Click on properties

    Scroll down to the Windows Activation

    Click on the link 'change product key '.

    Enter the product key located on the COA sticker attached to the bottom of your laptop or in the battery compartment. Click next to activate via the Internet.

    COA certificate of authenticity:

    http://www.Microsoft.com/howtotell/content.aspx?PG=COA

    ??

    What is the certificate of authenticity for Windows?

    http://Windows.Microsoft.com/en-us/Windows7/what-is-the-Windows-certificate-of-authenticity

  • How to change the default save to C: disk / d: /.

    I saw the article about how to change the default value.  I only did this and is installed by default on the D drive, but the computer still records in two drives and does not record on 'my documents', but saves just 'documents '.  When I click on the file I save it says it is registered in two places.  When I click on the two places, it shows that the default is now D: which is what I want.  I don't want for the file to be saved in two places.  Is there a way to save only on D: and eliminate the duplicate record on C: not safe if possible... help will be appreciated.  Thank you.

    Westley

    When you say c: documents and D:Documents, can provide you the full path you are viewing?

    The real essentials you need to know is that libraries are not records.  They are really just a quick search of several places.  Try this: right click on the document library and select Properties.  This will tell you where the library is looking.  Whenever you open the document library, it performs an instant analysis of these places and tells you what he found.  Is not additional copies files, it's just search results. If you delete something, you remove the one and only original, everywhere where it is.

    You might ask "well, what's the point of a library?  I'm glad you (perhaps) asked.  The reason is you have a lot of places.  Take me for example.  I have some movies on my hard drive.  I have more moves on an extra drive (they will all take place on the main drive).  In addition, my roommate has a few movies on his drive.  With a library, I have a library of videos that research on all drives and gives me a single view combined all our movies instantly.  Now I can see all my films in my library at the same time, no matter which disc they are on.

  • How to change the icon of the Application on Blackberry JDE 6

    Hi, do someone know how to change the icon of the application of the project, we have created in the JDE? I searched the forum, and suggestions should go to the project properties, go to the "resources" tab and add the icon file. I have also included the file icon (PNG 68x68pixel) to the project.
    But this does not seem to work for me.
    I also tried to build clean, remove files jad and others, always not when I tried the app Simulator or on real device. Any help will be appreciated.
    I use Blackberry JDE 6, test the application on the actual device (9800), Simulator (9700). And the app that I'm testing is just a pushscreen simple helloWorld app, not a lot of code here. Thank you.

    Here's how to put the icon in BlackBerry JDE.

    1. Add the image to your project.
    2. Right-click on the image and choose Properties.
    3. Check "use as icon for the Application.
    4. Rebuild the application.

Maybe you are looking for

  • used to install iTunes for windows

    Last update of itunes did not or does not install.  Download installation errors.  TBH, I tried so many solutions I forgot if the following was the original errors.  But is not serious... This is what is happening. Windows 10 PC.  I tried most of the

  • recentitems.plist does not exist

    I noticed yesterday that my recent items in logic X option wasn't working, so I've posted about it and someone suggested that to change the setting in system preferences, I did. Then I noticed that the adjustment would not save, so I found another po

  • How can I filter the noise of a signal?

    Hello I wonder if someone can point me in the right direction. I got the task to analyse the signal from a load cell, measuring vertical efforts on a buoy in the ocean waves. All I have are data files - Earth "calibration" run and a period of measure

  • How do I darken my screen

    my screen print is too light to read

  • Maximum refresh rate 1920 x 1080 XB280HK when using G-Sync.

    I read this refresh rate maximum for resolution of 3840 x 2160 4K East of 60 Hz. What is the rate of maximum framerate for XB280HK in Full HD 1920 x 1080 resolution, when using G-Sync? Or limited to 60 Hz as well?