How to set the default path of the tag while working with xtype "tags"

Hi,
I am working with xtype tag, where i have to select tags in the dialog box. Everything is fine, but my requirement is set the tags path.
Currently it is defaulted to /etc/tags and showing all the tags. Instead i have show only the single tag path that is required for me.
Is there any way where i can set the root path and set to my custom tag path like: /ets/tags/mycustomtags/
Thanks for the support in advance
Riyaz

Hi,
Use namespaces property to set the path. But it only works with namespaces that you directly creates under /etc/tags
so for example if you want to use or show two namesapces /ets/tags/mycustomtags & /ets/tags/mycustomtags1
then set this property as
namespaces       string[]             mycustomtags  
                                                   mycustomtags1
and if you have only want to show one then
namespaces       string[]             mycustomtags
I hope it will help you.
Also refer http://dev.day.com/docs/en/cq/current/widgets-api/output/CQ.tagging.TagInputField.html
Let me know if you need more information.
THanks,
Pawan

Similar Messages

  • How to make the mobile application work with firewall and anti-virus ON

    Hi,
    I keep on receiving internal processing error when i try to login sap mobile solution 1.3.0 on my ipad and i was provided a solution, that is to turn off my firewall and antivirus. I works by turn off both of it but i cant possible turn of the firewall and antivirus on the server.
    Can anyone guide me how to make the mobile application work with firewall and anti-virus ON
    Thank you

    Dear Rajesh,
    Create a policy in your fire wall to allow the port to send and receive data.
    I believe the port for the mobile should be port 8080 and 8443.
    And your license server port 30000 and 30001
    nd.Q

  • An Idea: How to make the Magic Timeline work with Tracks

    i have thought about this for a title and i think i have found a solution. the magic timeline is pretty cool but with it we lost tracks. for broadcast (not only for that but mostly for it) you need tracks that are assignt in a special way and there is no way around it. so i came up with the following idea…
    to make the magic timeline work with tracks it will be a like an audio compound clip, that will give you full access to the magic time. but it can be outputted to proper tracks assignment.
    current audio compound clips don't show you the video if there is one. this one will. also audio can be tagged to a track so it will automatically drop into the right track. you can of course move the audio from one track to another. moving the clip to another track will auto change the tag to new track. if you copy an audio clip from one track to another, the original clip will keep its tag but the copied one gets the new tag.
    example…
    you do a voice over with all your edits and stuff. then you collapse it to a track (new name to get rid of any sort of confusion). you can tag/name the track to "voice over" or whatever you want and color label it.
    you need to edit, adjust it? no problem! double click it and it will open up and you'll see the magic timeline. edit till you done and click on arrow to return to track view.
    export your movie with proper tracks for broadcast right out of final cut pro x
    in the end your output timeline looks like a timeline from fcp7 before you output it on tape.
    could this work? i believe it could and it would help to make fcpx ready for broadcast.
    i hope this makes some sort of sense to you
    anyway, i hope apple will include this or something like this in an update for fcpx.

    You may be able to get by with just running MDT 2010 for now. *However* you *must* ensure that you are running WinPE 3.1 or greater, If you are unsure, open up a command prompt in WinPE (PRess F8), and run "ver" it should say build 7601 or greater, 7600
    and less is not compatible.
    When done, Run the Dell Advanced Format tool in the Full OS on a deployed machine to verify:  http://del.ly/afhdd  Although it is possible to install an OS on an Advanced Format Drive
    with WInPE 3.0 or earlier, and it may *appear* to work, performance may suffer. The Dell AF tool should tell you if the sectors are aligned properly.
    Additionally, it is also possible that the storage driver you have installed in your image is incompatible with AF drives. Check the Make/Model and check with the Hardware Mfg to see if they have driver that supports AF drives.
    Keith Garner - keithga.wordpress.com

  • How to set the Selectonechoice Value associated with MethodAction

    Hi All,
    I am using Jdeveloper 11.1.1.5 and i have a two textbox on my page and one selectonechoice.I am fetching the values from the Master Table in the dropdown by sending the supplierVatId and SupplierPostCode and the base dataSource of the selectonechoice is my transaction table(InvoiceHeaderTable).
    My jspx page source is :-
    <af:inputText value="#{bindings.Suppostcode.inputValue}"
    binding="#{backingBeanScope.backing_parkSupplierId.it7}"
    id="it7">
    </af:inputText>
    <af:inputText value="#{bindings.Suppvatid.inputValue}"
    binding="#{backingBeanScope.backing_parkSupplierId.it8}"
    id="it8">
    <f:validator binding="#{bindings.Suppvatid.validator}"/>
    </af:inputText>
    </af:panelFormLayout>
    <af:selectOneChoice value="#{bindings.supplierid.inputValue}"
    binding="#{GeneralManagedBean.suppid}"
    id="soc1">
    <f:selectItems value="#{bindings.supplierid.items}"
    binding="#{GeneralManagedBean.suppiditems}"
    id="si1"/>
    </af:selectOneChoice>
    and this is my pageDef code :-
    <attributeValues IterBinding="InvoiceheaderView1Iterator" id="Suppostcode">
    <AttrNames>
    <Item Value="Suppostcode"/>
    </AttrNames>
    </attributeValues>
    <attributeValues IterBinding="InvoiceheaderView1Iterator" id="Suppvatid">
    <AttrNames>
    <Item Value="Suppvatid"/>
    </AttrNames>
    </attributeValues>
    <methodAction id="getSupplierIdfromDB" RequiresUpdateModel="true"
    Action="invokeMethod" MethodName="getSupplierIdfromDB"
    IsViewObjectMethod="false" DataControl="SupplierDetailImpl"
    InstanceName="SupplierDetailImpl.dataProvider"
    ReturnName="data.SupplierDetailImpl.methodResults.getSupplierIdfromDB_SupplierDetailImpl_dataProvider_getSupplierIdfromDB_result">
    <NamedData NDName="supplierpostcode"
    NDValue="#{bindings.Suppostcode.inputValue}"
    NDType="java.lang.String"/>
    <NamedData NDName="suppliervatid"
    NDValue="#{bindings.Suppvatid.inputValue}"
    NDType="java.lang.String"/>
    </methodAction>
    <list IterBinding="InvoiceheaderView1Iterator" id="supplierid"
    DTSupportsMRU="true" StaticList="false"
    ListIter="getSupplierIdfromDBIterator">
    <AttrNames>
    <Item Value="Suppid"/>
    </AttrNames>
    <ListAttrNames>
    <Item Value="supplierid"/>
    </ListAttrNames>
    <ListDisplayAttrNames>
    <Item Value="supplierid"/>
    </ListDisplayAttrNames>
    </list>
    </bindings>
    And i have a button on the page called as "Clear DropDown".Now on click of Clear DropDown button  i need to clear the dropdown list and need to set a new value in the SupplierId selectonechoice.For the testing purpose it can be a static value like "Shah".
    I am trying to do like this but no help ..
    public String clearDropDown() {
    ValueExpression suppid1 = null;
    String id = "Shah";
    suppid1 =
    elFactory.createValueExpression(elContext, "#{bindings.supplierid.attributeValue}",
    Object.class);
    suppid1.setValue(elContext,id);
    AdfFacesContext.getCurrentInstance().addPartialTarget(suppid);
    AdfFacesContext.getCurrentInstance().addPartialTarget(suppiditems);
    return null;
    Please suggest!!!
    Regards,
    Shah

    While setting the value, it is giving me this warning in the logs :-
    *<FacesCtrlListBinding> <getInputValue> ADFv: Could not find selected item matching value Shah of type: java.lang.String in the list-of-values*.
    I know that the Shah is not present in the List but how do i clear the list and set the New Value which is "Shah".
    Please Suggest!!
    Regards,
    Shah

  • How to set the size for Popup with contains a Region

    Hi,
    i use ADF 11g (JDEVADF_11.1.1.1.0_GENERIC_090615.0017.5407) with ADF Faces as Frontend.
    I have a Region (with many content) in a popup. When I call the popup the size of the popup is very small.
    If i set explicit the width and height in px it works, but if I set the width and height in % it doesn't works.
            <af:popup id="p1">
              <af:dialog id="pw2" type="ok"
                         partialTriggers="t1:showBook">
                <af:region value="#{bindings.bookkeydata1.regionModel}" id="r1"
                           inlineStyle="width:850.0px; height:600px;"/>
              </af:dialog>
            </af:popup> It is possible to get the max. height and witdth from the browser-window in a Bean and set it dynamicly to the region?
    To set the size in px is not the best solution I think.
    kind regards
    Martin

    Hi,
    Try setting percentages using af:panelStretchLayout inside a popup.
    Thanks.

  • HT3669 Hi I have a Konica Minolta PagePro 1300W printer. This works with my Windows-based Toshiba laptop but not with my i-Mac. Can someone please advise me how I get the printer to work with my i-Mac? I have installed it but documents don't print. Thanks

    Hi I have a Konica Minolta PagePro 1300W printer. This works with my Windows-based Toshiba laptop but not with my i-Mac. I have the latest (Mountain Lion 10.8.2) OS-X software.
    I have installed the printer using 'System Preferences' on my i-Mac and it appears on the list of available printers but documents that I create just don't print.
    Can someone please advise me how I get the Konica Minolta PagePro 1300W printer to work with my i-Mac?
    Thanks, John Lee

    Looking at the Konica web site for the PagePro 1300W, I saw the following note.
    Please note: This printer is designed to be used in computer operating systems running MS Windows only. Operating systems such as UNIX, Macintosh, or Linux are not supported nor do we have workaround drivers available. Older MS Windows versions, such as Windows 3.1/95/98[pre-SE] and NT 3.51/4.0, are not supported.
    So KM are not going to help you. But the LinuxFoundation does provide a workaround that should allow you to print. Have a look at this web page. You will need to install all three packages as per the instructions from that page.

  • How to make the system to work with WAD

    Hi Gurus,
    I have my own system installed with BW 3.5. Now I want to work with WAD Reports.
    Can any one please let me know that what are the configurations I have to do to work with the WAD.
    Thanks & Advance
    Peter B

    Hi Peter,
                    If you have got WAD installed in your System. First declare default web templates in SPRO->BW-->BEx Web.
    After this activate the services in the SICF>Execute>Default host->drilldown to Bw then right click on BW and deactivate services then activate it again.
    Regards
    Karthik

  • How's is the career in working with forms and reports?

    hello my dear oracle experts.
    i am sandeep.
    i am a fresher who got job in small company should be working on forms and reports.
    how will be the career growth in working on this profile.
    how can i move on to the ERP side??
    can anybody suggest me some career options.
    Thanks in advance.
    Sandeep.
    Edited by: 827089 on Jan 13, 2011 10:48 PM

    Well, Forms and Reports are still core skills to have.
    Oracle JDeveloper and Oracle ADF are the core tool/framework used for our future business applications (Fusion) as well as being at the core of our tools like WebCenter, BPM, EM etc etc. So that might be a smart option of you want to do something new which will be a core Oracle skill. The book I wrote on this might be of use. Google for "Quick Start Guide to Fusion Development Oracle JDeveloper Oracle ADF".
    Regards
    Grant

  • Compaq Presario R3000 how to get the sound to work with Windows 7 RC

    1) Download     SP29586.exe: ftp://ftp.hp.com/pub/softpaq/sp29501-30000/sp29586.exe
    2) Run it, Create a directory  c:\ swsetup 
    3) Once all the Files are extracted DO NOT INSTALL
    4) Now Goto the Start Menu  Click on Devices and Printers, the Click on the Name you have called your  machine this will be marked will a yellow triangle as the sound driver windows 7 has install already is a realtek ac 97 which is not working, 
    5) Once your Machinename  you will see a general tab and and hardware tab select the hardware tab.
    6) Look for the Realtek ac 97  under the Device functions, select that and click properties,
    7) Now tab to the Driver, now click update driver,
    8) Select the option let me pick from a list of devices drivers, now click have disk
    9) Click on Browse  select the following location Swsetup\SP29586\SMAXWDM\W2K_XP and click on  smwdmCH6.inf 
    10)Now the Soundmax Driver should come up select ok and  next. Now your Sound will work
    This question was solved.
    View Solution.

    I am basicaly having the same problem with my labtop. I tried the following above and yet I still have not been able to get my sound to work. I have had some problems with my power and sound cards before but after I reinstalled windows my graphics card and sound card have not been working to their full potential. I thaught that it was a 64 bit graphics card, but now I am not so sure. I had to jostle the power cord in the back till I mannaged to find a perfect spot to keep the computer running. Before the reinstallation I had to put pressure on the left side of the computer to get the sound to work.. but even then it still came in and out.. "The sound that is." I can see the same driver in the codex menue and it is yellow but, what you stated above did not work.
    It says (Cannot continue the hardware update) The wizard cannot find a better match for your hardware than the software that you curently have installed. and then tells me to keep the current software. My sound Icon does not show up when I go to the settings.... I can't play diablo 2 on this no idea why... But my screen is choppy when I scroll through internet sites and it did not do that before. I have a 400mbs connection .... here is my computer information. :Compaq Presario R3000 Intel pent4  2.80ghz    2.80ghz       1.12GB ram and im running on windows xp2 professional.

  • How to make the bt hub work with GreenBee?

    I have some old BT hub (hub 2,3,4) can I make any of them work with another ISP like greenbee I heard changing the user name and password works? But I don't know what to change them to

    There are some options on this web page.
    Wireless connection problems
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • How well do the new earpods work with small ears?

    My wife has a hard time with earbuds because she has small ears. Just curious if the new earpods would work better for her or not. Anybody have experiance with these yet to know?

    I just got a macbook and it works fine with my dell 2007fpw. For that matter, my g3 ibook works fine (if a little slow for some operations) with that monitor at full resolution (1600x1050) (after screenspanning doctor). The graphics card may be weak compared to other current laptop offerings, but it is by no means bad, and for any 2d task it is just fine.
    ibook g3/macbook white 2ghz   Mac OS X (10.4.7)  

  • I just received my iPad mini for christmas and it came with a case with a keyboard and I'm not sure how to get the keyboard to work with the iPad. Please help!

    I cant get my ipad minis' keyboard to work how do you connect it?

    is it something i need to charge or is it bluetooth powered?

  • How to set the report path in a model plugin

    I am trying to figure out how to set the report path in a process model plug-in. I can seem to figure out how to get access to it. It seems like this would be a reasonable thing to do since the plug-ins are for results processing. Does anyone know how to do this? We typically use the Sequential process model but I am trying to keep my plug-in as independent of that as possible. 
    Thanks.
    Solved!
    Go to Solution.

    If I understand, you want your plug-in, when enabled, to alter the settings of any other instances of the NI report plug-in such that their reports share the same directory as your plug-in is configured to use.
    If so, your plug-in can access and modify the settings of all other plug-in instances. All instances are passed to all plug-in entries point in the plugins array sub-property of the ModelConfiguration parameter. You can iterate through this array. Any element of the array with a Base.SequenceFilename equal to "NI_ReportGenerator.seq" is an instance of the NI report plug-in. Its report options are stored in the element under PluginSpecific.Options.
    You can change the report options to what ever you want. Note that the ReportOptions model callback is called from the Initialize model-plugin entry point, so you might want to ensure that your changes are applied after that, so they aren't overwritten. To do that, you could make your changes in the the Initialize entry point of your plug-in, and ensure that your plugin runs last. To make it run last, you could set the FileGlobals.ModelPluginComponentDescription.Default.Base.RunOrder in your plug-in file to a value greater than 0, such as 1.0 (see TestStand Help>>Fundamentals>>Process Model Architecture>>Process Model Plug-in Architecture>>Structure of Plug-in Sequence Files>>Model Plug-in Entry Points>>Order of Entry Point Execution at Run Time).

  • How to set the PATH in Terminal?

    As a newbie to Bash and the Terminal, in connection with installing a new version of Ruby and various add-ons, I have been messing around with changing the PATH via various methods I've found on the internet, and trying to add a new directory to my PATH. Unfortunately, I cannot figure out how to set the PATH correctly. Here is what I understand so far:
    1. Bash first looks to ".bash_profile" in the home directory for PATH settings.
    2. If none, Bash then looks to ".bash_login" for PATH settings.
    3. If none, Bash then looks to ".profile".
    4. If none, Bash then looks to a system file in "/etc/profile" for default PATH settings.
    5. For a new shell after login, Bash looks for a ".bashrc" file.
    I cannot find any of the above files (I have Finder set to show hidden files already). Somehow, following some instructions from the internet without really knowing what I was doing over the past week I have set my PATH as follows:
    /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/Users/*****/src:/usr/X11/bin
    but I cannot find the file that is setting this PATH. I have tried creating a new ".bash_profile" shell file and putting it in various places such as "/bin" and "/usr/bin" but the file is not being read.
    * As a temporary workaround I tried using the command "source .bash_profile" upon login to set the PATH using the .bash_profile file that I created, but it does not work.
    * I am able to temporarily alter the path using the command "PATH=/usr/local/bin:$PATH" but this only lasts for an active shell; when I close out and reopen a new shell, it reverts to the default.
    So my questions are:
    Is it correct that there is a "/etc/profile" somewhere that is setting the default PATH? If so where is it? Should I alter it, or create a new ".bash_profile" somewhere to set the PATH? If not, where is my PATH being set? If I should create a new ".bash_profile", what exactly should go in it?
    Thanks in advance for any assistance.

    ... I created a new ".bash_profile" file directly under my home directory and it worked like a charm. Below is the content of the file:
    "PATH=/usr/local/bin:/bin/:/sbin/:/usr/bin/:/usr/sbin/:/Users/******/Ruby:/Users/*******/src:/Users/******/Java Programs/"
    What are the "..."'s? Is that just you, or is the contents of the file actually inside of double quotes?
    is there an 'export PATH' also in the file? As in
    PATH=/usr/local/bin:/bin/:/sbin/:/usr/bin/:/usr/sbin/:/Users/******/Ruby:/Users/*******/src:/Users/******/Java Programs/
    export PATH
    And did you either restart your Terminal session so your .bash_profile was read, or issue a 'source .bash_profile' command to execute the .bash_profile after your change?
    The only remaining problem is that from the home directory, I'm unable to directly run programs in the above-designated subdirectories (without first navigating to the subdirectory containing the file. Is there something wrong with the syntax or order of the directories I put in the path?
    For example: there is a file called "newprogram.rb" in the "Ruby" directory listed above. I should be able to execute it from the home directory using "ruby newprogram.rb" but it does not work. The same command works fine from within the "Ruby" directory.
    Does the 'ruby' command search PATH to find its scripts?
    Have you read the "man ruby" man page to see if it talks about PATH?
    A common Unix feature is that programs and scripts with the executable bit set, and are located in a PATH directory, will be run if you just type their names.
    For example, if the first line of newprogram.rb script starts with
    #!/usr/bin/ruby
    and if the script is executable
    chmod +x newprogram.rb
    And if it is in a directory in PATH, then just typing
    newprogram.rb
    should run your perl script using /usr/bin/ruby. If you want to use a different version of Ruby, then change the #! line so it point to your version of Ruby. Or if your version of Ruby is found earlier in PATH then the /usr/bin/ruby, you can use
    #!/usr/bin/env ruby
    as your script's first line which will search PATH for 'ruby' and use the first one it finds.
    Message was edited by: BobHarris

  • Sun ONE Studio 4 aka Forte: How to set the output path for classes ?

    Help !
    Beginner's question:
    Sun ONE Studio 4 aka Forte:
    How to set the output path for classes ?
    As default, the class files are created in the same directory as the
    sources.
    In opposite, both JBuilder and Together support that there is a tree
    with the sources and another tree with the classes.
    The first answer I got was "not possible with Forte, but just if you write your own "ANT Build script" !
    a) Please point me to a ready-to-use ANT script for this purpose, if such is available
    b) Is using ANT instead of the MAKE as comfortable ? Besides the separation of sourcecode and classes, I would like to keep everything else to be the same, i.e. I don�t want to edit the ANT file if I enlarge the project by directories or files.
    Tia
    Sincerely
    Rolf

    You can set S1S's options to place newly created .class files in a specific location.
    Identify the compiler that is being used - Open the S1S's Tools/Options window, expand Editing and select Java Sources. Note the Default Compiler value. (If it's one if the Ant options, you use Ant to specify this option, not S1S.)
    Open the S1S's Tools/Options window, expand Building/Compiler Types and select the appropriate compiler.
    The Properties tab of the compiler has the property Target, which sets the filesystem where the compiler output is directed. If you choose <not set>, the .class files are written to their source directory.
    When you set the Target, your change affects all classes that use this compiler.
    Very few options can't be set in S1S; the challenge is finding out where they're set!

Maybe you are looking for

  • Transport Request status table

    Hi All, In se10, for a given transport id, i can check the status, i.e. if it has been transported to quality & production systems. I would like to know in which table i can get this info, i.e. when it was transported to QAS & PRD I am able to get th

  • Fixed-Rate Age-Based Insurance Plan

    Hi SAP Benefits experts,    We have a new insurance offering this year wherein employee rates are determined by the employee's age at the time of initial enrollment.  If an employee enrolls at, say age 25, his or her rates will not increase as the ye

  • First I am not new to Adobe I have had it for over 10 years.  My last pdf was created about 2 months

    First I am not a new user of Adobe.  I have had it for over 10 years.  Up to two months ago I have not had a problem scanning my documents in and creating pdfs.  Now it scans but I when I go to read the file there is an error message.  What is going

  • Sizing guide

    Is there such a thing as a sizing guide that can help me decide on the hardware I need given user count and data size etc?

  • SAP career

    Hi Suresh, I am a Cost Accountant with 16yrs of audit experience in C&AG's office in India. I moved into the USA, and got trained in SAP FICO and got certified in May '07. I contacted you through this forum and sought advice regarding my entry into t