[Awesome] dynamically change tag names?

Is there a way to change the name of a tag displayed in the tag box widget during run time?, I dont really want dynamic tagging, but it is a solution if none other exist.

There's two patches for awesome that provide dynamic tagging; Eminent and Shifty.
See on the Archlinux wiki page for awesome: https://wiki.archlinux.org/index.php/Aw … ic_tagging
EDIT: Ah, I see that you'd like to rename existing tags... don't know if there's a way to do that, but it could be a feature of either Eminent or Shifty.
EDIT2:  Aaaaand, it looks like Shifty offers a tag creation/rename prompt in the task list, so that should do what you want
Last edited by snk (2011-09-05 18:09:57)

Similar Messages

  • Dynamically change plot names

    Hello,
    How can I dynamically change the names of different plots on a single graph.  I would like to do it on the attached VI.
    Thanks,
    hiNi
    Solved!
    Go to Solution.
    Attachments:
    multiplot graph_for discussion[1].vi ‏25 KB

    Use active plot and plot name properties. For example if you had three plots and an array of three names, you could do the following:
    Message Edited by altenbach on 02-13-2009 10:41 AM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    plotNames.PNG ‏4 KB

  • Dynamically changing the name of the .dll file to load in call Library

    Our current model is to use dll files as "plug-in" modules for instruments and a top layer test step calls the appropriate driver dll.
    For instance
    the TestStep is called with the kenmore.dll passed as a parameter so the kenmore.dll file is loaded, the functions are registered and the functions are called.  Next the TestStep is called with whirlpool.dll as a parameter now the whirlpool.dll is loaded the functions are registered and the functions are called.  This works very well in our current CVI/LabWindows environment.  Now we plan to work with LabView, we wish to retain this model (as DLL files, there are advantages in our model for us).  We have not found a way to load these dll files from LabView without hard coding the path and filenames in.
    Any suggestions on how to dynamically change the path in the Call Library module, or another suggested method of loading the dll via LabView?
    Thanks,

    John Stuart wrote:
    Our current model is to
    use dll files as "plug-in" modules for instruments and a top layer test
    step calls the appropriate driver dll.
    For instance
    the TestStep is called with the kenmore.dll passed as
    a parameter so the kenmore.dll file is loaded, the functions are
    registered and the functions are called.  Next the TestStep is
    called with whirlpool.dll as a parameter now the whirlpool.dll is
    loaded the functions are registered and the functions are called. 
    This works very well in our current CVI/LabWindows environment. 
    Now we plan to work with LabView, we wish to retain this model (as DLL
    files, there are advantages in our model for us).  We have not
    found a way to load these dll files from LabView without hard coding
    the path and filenames in.
    Any suggestions on how to dynamically change the path in the Call
    Library module, or another suggested method of loading the dll via
    LabView?
    Thanks,
    As Ben has pointed out LabVIEW
    scripting may be a possibility but you are going with that in highly
    unsupported area. Also I happen to know that changing the library name
    of a Call Library Node through scripting has produced unsupported
    feature errors previous to LabVIEW 7.1 eventhough the method was there.
    And LabVIEW 8 hides the whole scripting business behind the license
    manager.
    Another approach at least if the different DLLs do not change to often
    thier functions and parameters would be to create a wrapper DLL. Have
    it a method that loads the desired DLL and links its functions to
    internal function pointers. Then when calling the actual function entry
    points just redirect directly to the correct fucntion through that
    function pointer. Since you are already working in CVI creating such a
    DLL should be only a matter of taking out a little bit of your already
    existing code and put it into a DLL project.
    Rolf Kalbermatter
    Message Edited by rolfk on 04-12-2006 07:40 AM
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Dynamically changing the name of a page item

    Hello,
    I'd like to dynammically change the name/label of a page item depending on the user who logged in to the system.
    On my home page, there's a navigation region with some list entries in it. Currently its title is "Configuration".
    If a specific user signs on, I'd like to change that title to "Reporting". How can I manage to implement such a behaviour.
    I tried to get some results by using dynamic actions, but I couldn't get it working.
    Thanks for your help in advance!

    >
    I'd like to dynammically change the name/label of a page item depending on the user who logged in to the system.Create a hidden item called PXX_LABEL (where XX is your page number).
    Set the value of the hidden item via a PL/SQL process (when page loads, or when user logs in, or whatever).
    In the "Label" field of the actual item, enter &PXX_LABEL. (notice the dot at the end).
    When running the page, the label will dynamically be set to the value of the hidden item.
    - Morten
    http://ora-00001.blogspot.com

  • Dynamically change icon name of push button

    Hi,
    I would like to ask how to dynamically change the icon name attribute of a push button in dialog programming. What is the syntax for assigning an icon name during runtime?
    I am currently doing a multiple selection function for KNA1-KUNNR.
    Initially, the icon name is ICON_ENTER_MORE. When the user picks up more than one customer, it should automatically change to ICON_DISPLAY_MORE. How can I do this?
    here's the code i currently have:
    DESCRIBE TABLE kunnr_ran LINES l_kunnr.
    IF l_kunnr > 1.
          g_add_multiple = 'X'.
      BT_MULT_CUST-icon_name = 'ICON_DISPLAY_MORE'.
    ELSEIF l_kunnr = 1.
         CLEAR g_add_multiple.
      BT_MULT_CUST-icon_name = 'ICON_ENTER_MORE'.
    ENDIF.
    The name of my pushbutton is BT_MULT_CUST.
    The code in ** is not correct. I don't know the syntax in SAP. But that is how it is done in VB for example.
    Thank you.
    che =)

    If you have not found your answer already, please try the following:
    1)  In screen layout painter: for the pushbutton in question (i.e. pb_multi_select), mark the "Output field" on the program attributes tab in the attributes window for the pushbutton.  Make sure that its visible length is at least 2 too.  This will "gray out" the "Text" and other fields.
    2) In the TOP INCLUDE of the module program:  add a variable for the pushbutton that is of type "icons-text" and don't forget to include <icons>.  Below is an example
    INCLUDE <icon>
    DATA: pb_multi_select TYPE icons-text.
    3) In a module called in the PBO modules for the screen that needs its button changed, call the function "ICON_CREATE" and pass at minimum the name of the icon and the field that you specified in step 2.  Below is an example using the icon "ICON_DISPLAY_MORE", "ICON_ENTER_MORE", and a flag variable "MULTI_SEL_INFO_EXISTS" that indicates if any multiple selection information has already been entered.  It would be set by the program (not automatically, but by coding) prior to the "IF" statement:
    IF multi_sel_info_exists = 'X'.
      CALL FUNCTION 'ICON_CREATE'
          EXPORTING
             name = 'ICON_DISPLAY_MORE'
          IMPORTING
             result = pb_multi_select.
    ELSE.
      CALL FUNCTION 'ICON_CREATE'
          EXPORTING
             name = 'ICON_ENTER_MORE'
          IMPORTING
             result = pb_multi_select.
    ENDIF.
    You can change the button as you see fit with multiple different calls inside of "IF" or "CASE" statements.  Please see documentation for "ICON_CREATE" for other parameters.
    Hope this helps,
    Brian

  • PI/XI transport dynamic change of names - MESCLNT005 - MEQCLNT005 - MEP

    Hi,
    When transporting directory objects the auto generated channals GeneratedReceiverChannel_IDoc for sending idocs to from and to R/3 is normaly changed from MESCLNT005 -> MEQCLNT005 -> MEPCLNT005. But now when transporting a scenario this dynamic change is not done. What can be wrong?
    BR
    Claes

    Hi,
    The problem is that they are not renamed. They keep the MESCLNT005 eaven when it is transported to the quality system. But when transporting other scenarios it gets renamed from MESCLNT005 -> MEQCLNT005.
    Thank you for trying to help.
    BR
    /C

  • JSF dynamically changing components name or id.

    I have a question that I am trying to find an answer.
    I have a dataTable setup and in each column, I have a select table.
    I would like to give these components specific names for each occurrence. For example:
    <h:dataTable id="serverTable" rowClasses="data" border="0" value="#{serverBean.serversData}" var="server">
    <h:selectOneListbox id="testCS" value="#{server.newImageName}" onchange="setDescr(this)" size="1">
    <f:selectItems value="#{server.imageList}" />
    </h:selectOneListbox>
    </h:dataTable>
    I want to do something list change the above line to
    <h:dataTable id="server.serverName" rowClasses="data" border="0" value="#{serverBean.serversData}" var="server">
    How would I do this..
    I would like the output to look like:
    <select id=�brasil�>

    </select>
    <select id=�oreo�>

    </select>
    Instead of
    <select id=�serverTable�>

    </select>
    <select id=�serverTable�>

    </select>
    Thanks
    Eric

    i think the easy way to do this would to use the forceID myfaces component
    http://myfaces.apache.org/tomahawk/forceId.html

  • How to dynamic change Step Name?

    I have a step inside For Loop. I would like that step have different name related to loop Number. how do I do it?
    For example
    In Test stand,
    for i=0; i++;i<10
    stepnamei
    end
    So in this way, If the step fail, I could know on which loop it fails.
    Please advise on it.

    Hi,
    try this example
    link
    Regards
    Ray FarmerMessage Edited by Ray Farmer on 04-04-2005 07:47 AM
    Regards
    Ray Farmer

  • Dynamically Changing the Name and length of the Selection Screen Fileld

    Dear Friends,
    I want to incorporate a filtering option in my program,when the user selects the
    column of a table control and clicks on filter option it has to open up a
    new selection screen in which the selection option would be the selected
    column.
    for e-g if the user selects material the selection option would have the
    characteristics of mara-matnr.
    answers will be rewarded.
    Thx.
    Sreeni

    Hi,
    Check this link, very useful and good one too.
    http://sap.ittoolbox.com/code/archives.asp?i=10&d=2919&a=s
    this will help you i guess.
    Feel free to revert back.
    --Ragu

  • Changing tab name in one component that used in different applications -FPM

    Hi gurus,
    I have an FPM component configuration, which have different tabs.
    This component i have used in different applications.
    I just want to know how can I dynamically change the name of one tab in different applicatins?
    I want to change only the tab name. content in the tab is same.
    For eg. If I open a Bid from Rfx, it should show "Rfx Information" as one tab name. But if i open a bid from Auction, it should show 'Auction Information'.
    Content in this tab is same.
    Is there any way to do that? Or shall I create different component config. for bid to use in Auction application  and another one for RFx application?
    Thanks,
    Poduval

    Hi, 3Sherill3. This may help:
    http://www.macupdate.com/info.php/id/16620

  • Dynamically change column heading without Dashboard Prompt

    Hi All,
    My requirement is change the column heading dynamically in a report. I have achieved this through setting the presentation variable to the dashboard prompt.
    I have 5 columns in the dashboard prompt. Out of these 5 columns, I want to use only 1 column as dashboard prompt.
    But still I want to dynamically change the column heading of the other 4 columns based on the only 1 column selected in the dashboard prompt.
    Is there anyway to achieve this?

    You need to have some logic to change other 4 columns based on 1 selected column.. where you want put that logic?
    BTW: Check these
    http://total-bi.com/2011/03/obiee-dynamic-column-headings/
    http://rampradeeppakalapati.blogspot.com/2012/02/dynamically-change-column-names-in.html
    If helps mark or also update back if you are thru with this.

  • Rename tag name

    How is possible to rename a tag name inside a XML file?
    By example:
    <elem attr1="attr1" attr2="attr2"> xxx </elem>
    to transform in
    <element attr1="attr1" attr2="attr2"> xxx </element>
    (change tag name from "elem" to "element").
    I need to use JAXP. DOM does not allow to change tag name. The java solution is to create a new element, copy all attributes and all childs and replace on parent the previous element.
    Other solution may be with xsl?
    Please help!
    Cosmy

    yes, write a simple xsl to do this:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
         <xsl:output encoding="utf-8" method="xml"/>
         <xsl:template match="@*|node()">
              <xsl:copy>
              <xsl:apply-templates select="@*|node()"/>
              </xsl:copy>
         </xsl:template>
         <xsl:template match="elem">
              <element>
              <xsl:apply-templates select="@*|node()"/>
              </element>
         </xsl:template>
    </xsl:stylesheet>

  • How to pass tag name and value dynamically in the output of PCo notification?

    Hi,
    I have a requirement to develop such a scenario where there can be multiple no of tags in PCo (Say 10) but there will be single notification to push the tag name when the value got changed and the changed value to MII. for any value change for any of the tag, the notification will be trigger. So As per my knowledge I have to pass the tag name and value dynamically in the "output" tab of the notification. But need your support to find out how to pass them dynamically.
    Thanks in advance.
    Regards,
    Suman

    Hi Suman/Jeedesh,
    As per Pco notification, it will trigger whenever any of the tag value changes in Agent instance subscription items.
    For above issue, My suggestion
    1. Create DB table name TAGLIST with 200 tags as rows in columns (Tagname, TagValue)
    2. Based on notification trigger, create a transaction and update values w.r.t TagNames in above table
    3. Next time, when notification trigger with fresh value for any of the tag, cross check with existing TagName with Value and update in DB table.
    4. And in the mean time, send those Tag details vie mail trigger or as per requirement
    Instead of creating 200 notification, above is a just alternate way suggestion to achieve dynamic tag value change notification.
    Hope it might solve your problem
    Regards,
    Praveen Reddy

  • Change error tag names of the Response xml of a vanilla Inbound Webservice

    Hi,
    I am invoking a vanilla inbound webservice "Service Request" through Soap UI. Whenever any error occurs, in the response xml, some tags like "siebelf:error" is generated in the xml. However these tags are not present in the IO.My question is, can we change these tag names? If yes, then how?
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Body>
    <SOAP-ENV:Fault>
    <faultcode>SOAP-ENV:Server</faultcode>
    <faultstring>Method 'SetFieldValue' of business component 'Service Request' (integration component 'Service Request') returned the following error:
    "The value entered in field Status of buscomp Service Request does not match any value in the bounded pick list FIN PickList Service Request Status.(SBL-DAT-00225)"(SBL-EAI-04376)</faultstring>
    <detail>
    <siebelf:siebdetail xmlns:siebelf="http://www.siebel.com/ws/fault">
    <siebelf:logfilename>EAIObjMgr_enu_0033_34603066.log</siebelf:logfilename>
    <siebelf:errorstack>
    <siebelf:error>
    <siebelf:errorcode>SBL-DAT-00225</siebelf:errorcode>
    <siebelf:errorsymbol/>
    <siebelf:errormsg>Method 'SetFieldValue' of business component 'Service Request' (integration component 'Service Request') returned the following error:
    "The value entered in field Status of buscomp Service Request does not match any value in the bounded pick list FIN PickList Service Request Status.(SBL-DAT-00225)"(SBL-EAI-04376)</siebelf:errormsg>
    </siebelf:error>
    </siebelf:errorstack>
    </siebelf:siebdetail>
    </detail>
    </SOAP-ENV:Fault>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Regards
    Sagnik

    Hi,
    You should be able to edit the generated wsdl as you suggested, changing the
    "return" to something else. Then save the wsdl to a file, say
    "filename.wsdl", and then at the top of your jws add the following:
    * @jws:wsdl file="filename.wsdl"
    This will force the jws to use the wsdl you specify and you won't have to
    edit any maps. Of course, as your jws changes, you will need to regenerate
    the wsdl and change the "return" to something else.
    Mike Kaufman
    Software Engineer
    BEA Systems
    "sherlock" <[email protected]> wrote in message
    news:3cbbe81f$[email protected]..
    >
    I have created a webservice in workshop that has some methods what returnstring-data.
    Now I want to create clients with different software-products. Because Igot some
    errors with one of these products, I looked into the WSDL and noticed thatthe
    name of the response-datatype is 'return' (by default).
    You can see this here:
    - <s:element name="addUserResponse">
    - <s:complexType>
    - <s:sequence>
    <s:element minOccurs="1" maxOccurs="1" name="return" nillable="true"type="s:string"
    />
    This 'return' is interpreted as a keyword in the client-generation tool.If I
    change this manually to another word then it works.
    When I try to change the 'Return XML' in the 'Edit Maps and Interface'Dialog,
    than the WSDL looks like this:
    - <s:element name="addUserResponse">
    - <s:complexType mixed="true">
    - <s:sequence>
    <s:any minOccurs="1" maxOccurs="unbounded" />
    Now the name- and type-definitions are completely missing.
    The question is now: how to change the name of the response-datatype from'return'
    to another (not-keyword-) name?
    I think this is important because I don't know what software a customeruses to
    generate a client and I can not expect that he manually edits myWSDL-file.
    >
    Thanks.

  • Dynamic Tag Query  with dynamic tag name.

    Hi,
    In our implementation we have 10+ users. Each one want to monitor only one production line ( eg. one tag value ) in the dashboard by default when they login.
    I was able to design this requirement CONCEPTUALLY but facing some trouble technically.
    Here is my issue.
    Tagname will be coming from one of the BLS Transaction input parameters (Transaction.Tagname). I am able to build tag query using xMII Tag Query block, able to configure repeater. Here is the spot where I was struck. While assigning tag value to XML Row
    i.e IlluminatorRow_0.Tagvalue = Repeater_0.Output{/Row/AssetUtil1}.
    In the above assignment link it requires a hardcoded tagname. In my case it will be dynamic. I tried different ways like
    1. IlluminatorRow_0.Tagvalue = Repeater_0.Output{/Row/@Transaction.Tagname}.
    2.IlluminatorRow_0.Tagvalue = Repeater_0.Output{/@Transaction.Tagname}.
    But no luck.
    Can someone help in how to do this dynamic tagname assignment.
    Thanks,
    Srinivasa.

    Hi Srinivas,
    another option is to use "Dynamic Links" which from your sample code is what you were trying to do. For this, the proper syntax is:
    Repeater_0.Output{/Row/#Transaction.Tagname#}
    Make sure that the tag name you pass to the historian is the same as the tag name returned by the historian as part of the data set, and make adjustments for that. For example, some historians escape non-alphanumeric characters when they process your request (e.g. passing "abc.def 12-rt" as the tag name can be returned from the historian as "ABC.DEF_12_RT", etc.).
    Hope this helps,
    Sascha

Maybe you are looking for

  • BEx Cell Report - Performance Issue

    All, We have a BEx Report in which I have used cell formulas extensively. My BW ver 3.0B and parch 31. From last f32 weeks this report is working only for maximum of 9 materials. Tthe report output comes very fast. The momemnt I give 10th material or

  • How do I change a port in Mac OS X Mountain lion

    Apparently Logmein  makes use of port 2002 in mac OS X  Mountain Lion. I need to use that for some new accounting software. How  do I change the part in Mountain Lion and how would I do an install of  Logmein on the computer to use another port or ho

  • Do indices change, when data of table changes?

    Hello, if a table has got many indices and is changed frequently, do the indices change as well. Are all indices corresponding to that table changed. Are these indices processed in any way? thanks, resi

  • Purchase order in Future order.

    Sir, How to restrict the PO, not to create in future date?. Is there any message control?

  • "Preview this File" Does Nothing + Blinding GTK+ open file dialogs...

    ...I have two problems in KDEMod4...did anyone have these problems and how do you fix them? Right clicking a file and clicking "Preview this File" does nothing...including folder views, Konqueror, and Dolphin. GTK+ open file dialogs alternate between