Agentry - List Tile View Single Action AND Button?

Hi experts,
we are using a List Tile View with a Single Click Action, which works fine.
But now we want to add a button (or something else you can click on) to the List Tile View with a different action.
So, if you click on this button, action A should be executed. And if you click somewhere else into the tile, action B should be started.
Is this somehow possible? Thanks!
Best regards
Christian

Not with Single Click Action.  That is if you click on the tile it will call that action, anywhere on that tile. What you could do is have two buttons on the tile (for selected) they they can push.  But then the users would have to select the tile, then click on a button.

Similar Messages

  • Auto Focus in List Tile View in iPad : AGENTRY

    Hi All,
    I am facing a critical problem. I have a screen with two List tile view. The object assigned to the screen is MainObject and the two List tile views display Collection1 and Collection2.
    Now the requirement is user should select an object from either Collection1 or Collection2 and press on continue button.
    I am using an iPad as device. The problem is when the screen is displayed, the first object from each List tile view is automatically focused. I can't change the Initial focus setting at all. Whatever entry is given in the Focus field, the first objects of both the List Tile views kept on selected.
    Is there any resolution so that I can atleast define the initial focus??

    In terms of setting the selected item in a tile list you can use the List Selection action step.
    So in your action that displays the screen, after the navigates step add a List Selection step (or two in your case) to set the initially selected item in each list.
    You will specify the Screen Set / Screen and List Control that the step will act against and then define how you want rows selected (By Rule, First Row, Last Row, Next Row, None).  In my example about I am using a rule to select the first row where my rule returns true.
    While I have done this for a single list successfully I have not tried with two lists but don't see any reason it shouldn't work.
    --Bill

  • Highlighting a List Tile view by default

    Hi Experts,
    I have a screen with list tile view having list of objects. When I navigate to that screen I want that the first object on the list be selected by default.
    I created a style for the selected row but each time I have to click on the first element to get it highlighted.
    Is there a way to get the first element in the list highlighted without clicking on the list?
    Can this be accomplished by List view or any other element in agentry? 
    I am using Agentry version 6.1.4.1004  and SMP 2.3.
    Thanks in advance !!
    Regards
    Amitoj Singh

    Hi Amitoj,
    For this you can use List Selection Step in Action
    1)Go to Action which navigates to this list tile view screen.
    After navigation step just add List Selection Step in action stpes as shown below.
    2)Configure Its Details as shown below.
    Also you may write a rule to select a particular tile from that list tile view instead of SelectRows->First Row.
    Hope this helps,
    Regards,
    AK

  • List Tile View not working with include rule on iOS?

    hi Expert,
    I used the List Tile View with include rule in Agentry 6.0 on WinCE before to generate "selected" object list upon different conditions, e.g., assigning tasks based on scenarios.
    Currently, I am experimenting the same function on iOS tablet.
    On the start screen which is a detailed screen for main object, there is a List Tile View and an include rule. However, the objects in the tile list are not updated correctly when the output of the rule changes. Note that the same include rule works perfectly with a List View for the same collection.
    To my observation, the problem seems to associated with "update" of the tiles when result of include rule changes. For example, in scenario 1, there are 5 objects in the list; switching to scenario 2, there are 10 objects. From the No.6 to No.10, the objects are correct. The No.1 to No.5 are still the original 5 objects for scenario 1.
    When the user clicks on tiles, it makes the situation worse. Normally, a single object's tile will always be shown in the selected tile regardless which tile is selected from the list.
    My development environment is 6.0.40 and the client is 6.0.40 on iPad (iOS 7.1). I would like to know whether this is a known issue before I provide more details.
    Thanks.
    -Yang

    hi experts,
    When I asked the question on this list tile view refreshing issue, my dev environment is Agentry 6.0.38.
    In Agentry 6.0.40.1's release note, there is a fixed
    AG-25821  iOS 7 refresh issue with iPad tile list
    However, I currently have Agentry 6.0.42.1 on iPad (iOS 7.1.2). And my editor/server is 6.0.42.0. I still have the list tile view refreshing issue. The same rule can be used on list without any problem. But the list tile still has trouble on display the right set of objects.
    My question is is that fix related to the problem I saw?
    Thx.
    -Yang

  • Actions and buttons

    Hi
    I got a button with 3 types of icons. pressed,normal and disabled.
    I have created an action for the button and i would like to use this action to detrmin if the button is enabled or not
    (like explianed in: http://java.sun.com/docs/books/tutorial/uiswing/misc/example-1dot4/index.html#ActionDemo)
    My problem is that icon is not fully dispalyed - I know the button icon should be effected by the action icon but - the action can only have one icon...
    any ideas?
    editModeHandler = new EditModeHandler(this, TagsLoader.getEditModeTag());
            btnEditMode = new StandardButton(TagsLoader.getEditModeTag());
            btnEditMode.setIcon(GeneralConstants.EditModeIcon);
            btnEditMode.setDisabledIcon(GeneralConstants.EditModeDisabledIcon);
            btnEditMode.setPressedIcon(GeneralConstants.EditModePressedIcon);
    btnEditMode.setAction(editModeHandler );Regards,
    Liat

    Here you go (see how the same action is added to a JMenu, a JToolbar and a regular JButton with different icons shown) :import javax.swing.*;
    import javax.swing.plaf.basic.BasicButtonUI;
    import java.net.URL;
    import java.net.MalformedURLException;
    import java.awt.event.ActionEvent;
    import java.awt.*;
    import java.beans.PropertyChangeListener;
    public class MultiIconButtonTest {
         private static final String ICON_BIG = "bigIcon";
         private static final String ICON_BIG_DISABLED = "bigDisabledIcon";
         private static final String ICON_BIG_PRESSED = "bigPressedIcon";
         private static class MultiIconAction extends AbstractAction {
              public MultiIconAction(String aName, Icon aSmallIcon, Icon aBigIcon, Icon aBigDisabledIcon, Icon aBigPressedIcon) {
                   super(aName, aSmallIcon);
                   putValue(ICON_BIG, aBigIcon);
                   putValue(ICON_BIG_DISABLED, aBigDisabledIcon);
                   putValue(ICON_BIG_PRESSED, aBigPressedIcon);
              public void actionPerformed(ActionEvent e) {
                   System.out.println("And...... ACTION!!!");
         private static class MultiIconButton extends JButton {
              public MultiIconButton(Action anAction) {
                   super(anAction);
              protected void configurePropertiesFromAction(Action a) {
                   Integer n = (a==null) ? null : (Integer)a.getValue(Action.MNEMONIC_KEY);
                   setMnemonic(n==null ? '\0' : n.intValue());
                   setText(a!=null ? (String)a.getValue(Action.NAME) : null);
                   setToolTipText(a!=null ? (String)a.getValue(Action.SHORT_DESCRIPTION) : null);
                   setIcon(a!=null ? (Icon)a.getValue(ICON_BIG) : null);
                   setDisabledIcon(a!= null ? (Icon)a.getValue(ICON_BIG_DISABLED) : null);
                   setPressedIcon(a!=null ? (Icon)a.getValue(ICON_BIG_PRESSED) : null);
                   setActionCommand(a!=null? (String)a.getValue(Action.ACTION_COMMAND_KEY) : null);
                   setEnabled(a!=null ? a.isEnabled() : true);
         private static class MultiIconEnabledToolBar extends JToolBar {
              public JButton add(Action a) {
                   if (!(a instanceof MultiIconAction)) {
                        return super.add(a);
                   JButton b = new MultiIconButton(a) {
                        protected PropertyChangeListener createActionPropertyChangeListener(Action a) {
                             PropertyChangeListener pcl = createActionChangeListener(this);
                             if (pcl == null) {
                                  pcl = super.createActionPropertyChangeListener(a);
                             return pcl;
                   b.setText("");
                   b.setHorizontalTextPosition(JButton.CENTER);
                   b.setVerticalTextPosition(JButton.BOTTOM);
                   add(b);
                   return b;
         private static Icon[] loadIcons() {
              Icon[] icons = new Icon[4];
              try {
                   icons[0] = new ImageIcon(new URL("http://java.sun.com/docs/books/tutorial/uiswing/components/example-1dot4/images/middle.gif"));
                   icons[1] = new ImageIcon(new URL("http://java.sun.com/docs/books/tutorial/uiswing/components/example-1dot4/images/tumble/T1.gif"));
                   icons[2] = new ImageIcon(new URL("http://java.sun.com/docs/books/tutorial/uiswing/components/example-1dot4/images/tumble/T2.gif"));
                   icons[3] = new ImageIcon(new URL("http://java.sun.com/docs/books/tutorial/uiswing/components/example-1dot4/images/tumble/T3.gif"));
              } catch (MalformedURLException e) {
                   e.printStackTrace();
                   return null;
              return icons;
         public static void main(String[] args) {
              Icon[] icons = loadIcons();
              if (icons == null) System.exit(1);
              final JFrame frame = new JFrame(MultiIconButton.class.getName());
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              final MultiIconAction myAction = new MultiIconAction("action", icons[0], icons[1], icons[2], icons[3]);
              JPanel mainPanel = new JPanel(new BorderLayout());
              JToolBar toolBar = new MultiIconEnabledToolBar();
              toolBar.add(myAction);
              toolBar.add(new AbstractAction("simple icon action", icons[0]) {
                   public void actionPerformed(ActionEvent e) {
                        myAction.setEnabled(!myAction.isEnabled());
              mainPanel.add(toolBar, BorderLayout.NORTH);
              JPanel centerPanel = new JPanel(new FlowLayout());
              JButton button = new MultiIconButton(myAction);
              centerPanel.add(button);
              mainPanel.add(centerPanel, BorderLayout.CENTER);
              frame.setContentPane(mainPanel);
              JMenuBar menuBar = new JMenuBar();
              JMenu menu = new JMenu("file");
              menu.add(myAction);
              menuBar.add(menu);
              frame.setJMenuBar(menuBar);
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        frame.pack();
                        frame.show();
    }I really think that changing the displayed icon depending on which Container the action is added to should be much simplier (at least without having to extend those containers).

  • Can you create two separate tile views for a Promoted Links List

    I have lots of pages on my site where i want the effect of the promoted links list tile view. However, i don't want the same links to show up on every spot i use it. Is there not a way to create separate tile views so you can create filtering conditions?
    Right now i am stuck having 5 separate lists with 5 items in each because of this limitation. Am i missing something? 
    I look forward to your responses.
    ~Zach

    There is an easy way to do this.
    Add columns to the Promoted Links list.
    Add a column named Page.
    Type in name of the page on which you would like this link to appear.
    Add a column named Row.
    Create a view filtered by page name and Row. Example: Show only when Page = HomePage AND Row = 1
    Create another view filtered by page name and another Row. Example: Show only when Page = HomePage AND Row = 2.
    Go the page you would like the links to appear. Edit the Page.
    Add Promoted Links app part (still not used to the app thing) and select your view for Row 1
    Add another Promoted Links app part and select the view for Row 2.
    Lather, Rinse and Repeat.
    Tamara Bredemus SharePoint Minion...working up to Maven

  • How to join 3 or more lists and create one single composite list or view in SP2010?

    HI
    I have 3 lists which has common field called -BARCODE. I need to link all these 3 lists by this ID and display a composite list
    which contains few columns of each list for view and edit. Is this possible? If not edit , can just view? report?
    Master list, list1 , list2
    (Master list --Left Join list 1 and Left join list2)
    Master list will be entered first then other lists.
    Thanks,
    JRS

    Hi,
    According to your description, there are three lists has a common field “BARCODE”, you might want to gather data from the three lists and populate into another list.
    The available OOTB features would not be able to meet your requirement, I would suggest you achieve it in a way programmatically using SharePoint Object Model, CAML
    query and Event Receiver.
    With
    SharePoint Object Model, we will able to access data in list/library:
    SharePoint Object Model -
    SPListItem class
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.splistitem.aspx 
    Add, Update and Delete List Items Programmatically in SharePoint
    http://www.mindfiresolutions.com/Add-Update-and-Delete-List-Items-Programmatically-in-Sharepoint-372.php 
    More information about
    SharePoint Object Model:
    http://msdn.microsoft.com/en-us/library/ms473633.ASPX
    With
    CAML query, it can help us query the data with some specific conditions:
    http://sharepoint-works.blogspot.com/2012/05/caml-query-tutorial-for-sharepoint.html
    https://msdn.microsoft.com/en-us/library/office/ms467521(v=office.15).aspx
    The tool below would make it easier to compose query statement:
    http://www.camldesigner.com/?p=594#more-594
    Event Receiver, we can use it to monitor the events such as when item created, when item deleted etc.
    Here is a step by step sample on creating a simple Item added event receiver for Custom List in SharePoint 2010:
    http://msdn.microsoft.com/en-us/library/ff398052.aspx
    More information on Event Receiver for your reference:
    http://msdn.microsoft.com/en-us/library/gg749858(v=office.14).aspx
    http://msdn.microsoft.com/en-us/library/ff408183(v=office.14).aspx
    Yes, to write the code, a Visual Studio installs on the machine which has SharePoint installed would be required, to get a quick start in SharePoint Development, I
    would suggest you take a look at the links below:
    http://blogs.msdn.com/b/erikaehrli/archive/2010/05/14/getting-started-with-sharepoint-2010-and-sharepoint-2010-advanced-developer-training.aspx
    https://msdn.microsoft.com/en-us/library/office/dn833463.aspx
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Patrick Liang
    TechNet Community Support

  • Cannot open Language settings from Tile view, and unable to install Language packs from WSUS.

    Hi all,
    I have a bunch of Windows 2012 R2 servers that have been deployed from a syspreped image where the language has been defaulted to "en-GB", rather than the default "en-US".
    I also have a WSUS 3 server running on a Windows 2008r2 machine. This tells me that a number of language packs are required by these 2102r2 machine, namely:
    KB2839636 - English (United Kingdom) Language Pack
    KB2839636 - English (United States) Language Pack
    KB3012997 - English (United Kingdom) Language Pack
    KB3012997 - English (United States) Language Pack
    These have been approved to be installed on the 2012r2 machine, however, running Window Update on the machines shows nothing. Opening the Control panel, then navigating to "Add Language", then "options", shows no additional updates.
    The I tried to search and run the languages control panel directly from the Windows Tile view by simply typing "language" and clicking the 'Language' option in the search results, but then get the following error dialogue box:
    [Window Title]
    C:\Users\Administrator\AppData\Local\Packages\windows.immersivecontrolpanel_cw5n1h2txyewy\LocalState\Indexed\Settings\en-GB\Classic_{bf782cc9-5a52-4a17-806c-2a894ffeeac5}.settingcontent-ms
    [Content]
    Windows cannot access the specified device, path, or file. You may not have the appropriate permissions to access the item.
    The issue I have here is that I am logged on with the Domain Admin profile, but the path above refers to the local admin profile - however the file listed has full permissions for all 'Administrators'.
    So I have two questions:
    How should the Language pack updates get installed from WSUS?
    How do I fix the problem with trying to open the Language option direct from the tile search view?
    Many thanks
    Chris

    Might try these ones.
    http://www.urtech.ca/2014/09/solved-windows-cannot-access-the-specified-device-path-or-file-appdatalocalpackageswindows-immersivecontrolpanel/
    http://www.reddit.com/r/techsupport/comments/27hbal/cannot_access_immersivecontrolpanel/
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • In iTunes 10, I could type "Sinatra" in the search file, and would get a list of all tracks with "Sinatra" in any field.   In iTunes 11 I get these clever little windows, with nice arrows, but no lists to view.   What am I missing?

    In iTunes 10, I could type "Sinatra" in the search file, and would get a list of all tracks with "Sinatra" in any field.   In iTunes 11 I get these clever little windows, with nice arrows, but no lists to view.   What am I missing?

    Thanks for chipping in.   I discovered something after trying what you suggested.   I have quite a few collections of hits by year from Time Life and Billboard.  I've eliminated duplicate tracks that appear in both collections (or other CDs for that matter), but cross-reference the CD where I deleted the track and placed in in the comments section of the CD track I retained.   If I "search" by song name, only the remaining track appears.   But if I want to hear for example Classic Rock 1964, only those tracks remaining would be there when I pull up that CD.   So, I type "Classic Rock 1964,"  in the search field.  First the boxes on the right of the screen open up showing album icons.  Showing four tracks by album with a button to view 10 more, then four songs with an option to vies 18 more.   I finally noticed that at the top of the boxes is a blue band that reads, :Show Classic Rock 1964 in Music.  When I double click on this blue band, all 24 tracks from the original CD appear in the song list format even though I had deleted two of them because they appeard in a Beach Boys CD.   On those tracks, I had referenced Classic Rock 1964 in the comments field.    So, bottom line, Search will also look in the comments field if you click "filter by all" in the magnifying glass to the left of the search field.   And you can move all tracks that if finds into a song list by double clicking on the blue band.

  • How to add SharePoint 2013 Promoted link list view web part in page programatically with Tiles view using CSOM.

    How to add SharePoint 2013 Promoted link list view web part in page programatically with Tiles view using CSOM. I found that it can be
    done by using XsltListViewWebPart class but how can I use this one by using shraepoint client api.
    shiv

    Nice, can you point me to the solution please ?
    I'm  trying to do this but I get an error : 
    Web Part Error: Cannot complete this action. Please try again. Correlation ID: blablabla
    StackTrace:    at Microsoft.SharePoint.SPViewCollection.EnsureViewSchema(Boolean fullBlownSchema, Boolean bNeedInitallViews)     at Microsoft.SharePoint.SPList.GetView(Guid viewGuid)   
    All help really appreciated.

  • Saving data on custom button click in list tile

    Hi,
    I have a list tile, on which certain records are being populated based on the flag "Confirm_flag=0".
    When I click on 'confirm All' button which is on the same tile, the 'Confirm_flag' has to be updated to '1' for all records.
    I added the code the following code on the 'Confirm All' click
            anchoronthetile.bo.MakeDirty(True)   -- to make 'save' button enable
            mcore_beforeSave(true)                   -- calling the event for saving
    After that I added the code on mcore_beforeSave()
    anchoronthetile.bo.save()
    But this code not giving the proper out and How to set the "Confirm_Flag" value to 1?
    Please help me out
    thanx & regds
    Mateen

    Hi Mohammed,
    As you have a BusinessCollection, thus you need to loop throught the businesscollection collecting each record into similar type of business object and then update the values.
    e.g
    DIM Businessobject as new objectOfTypeBusinesscollection
    BusinessCollection = Tile.anchor.Bo
    For each businessobject in businesscollection
    businessobject.confirm_flag = '1'
    next
    This is a psuedocode and you can work upon the same to furnish it.
    Best Regards,
    Pratik Patel
    <b>Reward with Points!</b>

  • JSF Actions and ActionListeners with Tiles and forms

    I�m having a problem trying to use the Tiles functionality in Struts 1.1 with JSF and was wondering if anyone could help me.
    I have defined a very simple header, menu, content Tile that doesn�t involve nesting of tiles (ExampleTile_content1Level.jsp).
    I have 3 JSP pages, the first testHarness.jsp is NOT built using Tiles and is just used to load some test data into a session scoped bean using an actionListener and then forward to a Tile generated page (ExampleTile3.jsp) using a hard-coded action �applicationSummary� when a commandLink is pressed. This works fine for both the action and actionListener.
    ExampleTile3.jsp contains another commandLink that is meant to forward to another tile ExampleTile2.jsp. This also works until I try to add the <h:form> � </h:form> tag around the outside of the <h:panelGrid> tags in ExampleContent1.jsp when the action and actionListener then fail to fire and I get an �Error on Page� message in Explorer the detail of which says �Error �com_sun_rave_web_ui_appbase_renderer_CommandLinkRendererer� is null or not an object�.
    However I need a form so that I can bind UI controls to data from the bean stored in the session scope. This is only a problem when I use Tiles to define the pages. Does anyone know what I am doing wrong?
    Any help would be much appreciated.
    Tiles.xml
       <definition name="example3" path="/pages/exampleTile_content1Level.jsp" >
              <put name="headerClass" value="someStyle"/>
              <put name="menuClass" value="someStyle"/>
              <put name="contentClass" value="someStyle"/>
              <put name="header-title" value="/pages/exampleHeader.jsp" />
              <put name="menu" value="/pages/exampleMenu.jsp" />
              <put name="content" value="/pages/exampleContent1.jsp" />
       </definition>
       <definition name="example2" path="/pages/exampleTile_content1Level.jsp" >
              <put name="headerClass" value="someStyle"/>
              <put name="menuClass" value="someStyle"/>
              <put name="contentClass" value="someStyle"/>
              <put name="header" value="/pages/exampleHeader.jsp" />
              <put name="menu" value="/pages/exampleHeader.jsp" />
              <put name="content" value="/pages/exampleContent2.jsp" />
       </definition>ExampleTile3.jsp
    <f:view>
         <h:form>
              <tiles:insert definition="example3" flush="false" />
         </h:form>
    </f:view> ExampleTile2.jsp
    <f:view>
         <h:form>
              <tiles:insert definition="example2" flush="false" />
         </h:form>
    </f:view> Faces-config.xml
    <navigation-rule>
        <from-view-id>/pages/testHarness.jsp</from-view-id>
           <navigation-case>
                <from-outcome>applicationSummary</from-outcome>
                <to-view-id>/pages/exampleTile3.jsp</to-view-id>
              <redirect/>
           </navigation-case>
    </navigation-rule>
    <navigation-rule>
        <from-view-id>/pages/exampleTile3.jsp</from-view-id>
           <navigation-case>
                <from-outcome>nextPage</from-outcome>
                <to-view-id>/pages/exampleTile2.jsp</to-view-id>
                <redirect/>
           </navigation-case>
    </navigation-rule> ExampleTile_content1Level.jsp
    <tiles:importAttribute scope="request"/>
    <h:panelGrid columns="1" >
         <f:subview id="header-title">
              <tiles:insert name="header-title" flush="false" />
         </f:subview>
         <f:subview id="menu">
              <tiles:insert name="menu" flush="false" />
         </f:subview>
         <f:subview id="content">
              <tiles:insert name="content" flush="false" />
         </f:subview>
    </h:panelGrid> ExampleHeader.jsp / ExampleMenu.jsp
    <tiles:importAttribute scope="request"/>
    <h:panelGrid columns="1" columnClasses="someSyle">
         <h:outputFormat value="This is the {0}.">
              <f:param value="Header / Menu as appropriate "/>         
         </h:outputFormat>
    </h:panelGrid> ExampleContent1.jsp
    <tiles:importAttribute scope="request"/>
    <h:form>     <----- Fails with this tag included but works without it.
    <h:panelGrid columns="1" >
              <h:outputFormat value="This is the {0}.">
                   <f:param value="Content on the FIRST page"/>
              </h:outputFormat>
              <h:commandLink action="nextPage" immediate="false">
                   <h:outputText value="Click to go to next page"/>
              </h:commandLink>
    </h:panelGrid>
    </h:form> ExampleContent2.jsp
    <tiles:importAttribute scope="request"/>
    <h:panelGrid columns="1" >
         <h:outputFormat value="This is the {0}.">
              <f:param value="Content on the SECOND page"/>
         </h:outputFormat>
    </h:panelGrid>

    jezzica85 wrote:
    Hi everybody,
    I want to overload a method so it can take either 2 Actions, 2 ActionListeners, or one of each. The issue with this is that I'd have to make 4 overloaded signatures and almost identical methods, like this:
    method( action, action )
    method( action, listener )
    method( listener, action )
    method( listener, listener )
    Well, if you want to support that then you are just going to have to do suffer through it, the only shortcut I can recommend is that your method(action, listener) and method(listener, action) are the same so you only have to implement 1 and just use the other as a entry point to call the one you wish to contain the code.

  • .bin extension defaults to wrong action and is not listed in options applications tab. I can't change the action.

    I recently installed VLC player and it has overtaken my system.
    When I click on .bin (ext) files in a Firefox browser window, the default action is now listed as "VLC.bin (default)" and nothing I do can change it. I want the default action to be to download the file and I would like to remove any option related to VLC, since no .bin file should ever be associated with that program.
    There is no listing for a .bin extension for VLC (or any other program, for that matter*) in the Options/Applications tab, nor is VLC player the default action for anything listed except .wav files.
    I have tried the following:
    1. searched the options/applications tab but found nothing.
    2. searched "about:config" for any entries with "bin", ".bin", or "vlc" (one at a time) and found nothing.
    3. searched the registry for bin extension entries. I found one:
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.bin\OpenWithProgids]
    "bin_auto_file"=hex(0):
    "VLC.bin"=hex(0):
    I deleted the key and rebooted. No change.
    4. Double checked [HKEY_CURRENT_USER\Software\.. Gabest and Mozilla keys for anything that could be causing this behavior.
    Found nothing.
    Any help would be appreciated.
    *As far as I can tell. However, the applications tab cuts off many of the extension names and the column cannot be extended, so I can't be certain. VLC added 34 extensions to the list (!), most of which default to using the Quicktime plugin 7.6.8.

    Thanks jscher2000, I tried your suggestion, but no joy (as expected). None of the extensions were .bin, and in fact, I can't find a single listing for handling the .bin extension in the entire (unfiltered) list.
    That's why I'm so confused. Where is Firefox getting the name "VLC.bin (default)" from in the first place?
    cor-el, I checked out the link that you posted.
    I don't have an entry for "browser.download.pluginOverrideTypes" and the entry "plugin.disable_full_page_plugin_for_types" was empty (default setting).
    My bad, but I forgot to mention in my first post that I had also tried renaming the mimetypes.rdf file in my "Application Data\Mozilla\Firefox\Profiles\xxx.default\" to .old to no avail.
    Firefox created a new, almost empty file, but it didn't change the behavior for .bin files. I removed the new file and put the old file back in place after determining that clearing the file did not help, since I am otherwise happy with my current file-type options.
    However, since the option to "Always perform this action" is grayed-out, I am looking into the possibility that the website is sending a misconfigured MIME type or is assigning "Content-Disposition: attachment" to the download. What's odd, though, is that I've never had problems getting binary files from the site in the past, and the problem started when the VLC player was installed.
    I'll post back after I check into the server header data.

  • In Adobe X, where did the "marquee zoom" and "single page scrolling" buttons go?

    There are many other buttons that were available in earlier versions that are no longer there. 
    For single page with scrolling, apparently you now have to go View\Page Display\single page and then View\Page Display\Enable Scrolling, where before I had it on my toolbar, one-click and done.
    Same for marquee zoom, I had a button, one-click and grab part of a page and you instantly had a close up.  Now it's go find the menu, View\Zoom\Marquee Zoom, THEN go grab your page.
    When going to a new version, if the feature is still there, don't REDUCE the ways in which to turn it on, or make it so when you open a document it automatically turns off the feature you were just using in a previous document.
    Let the users move the Quick Tools toolbars around, combine on one line, use the previous interface etc.  People who use software like this daily in their jobs (like me!) don't like having changes forced on them when their company chooses to update versions.  It's great when new useful features are added, but not at the cost of removing the stuff we already use all the time.

    Go to View - Show/Hide - Rulers & Guides, and un-tick the Snap to Grid
    option.
    On Wed, Jun 11, 2014 at 8:42 PM, surfer hawaii <[email protected]>

  • Dynamic actions on button and dynamic column name

    Hi!ynam
    I want to create a dynamic action on button click in my tabular form.
    I have a select list with values of my column names (P7_X_COLUMN) and a text field where users input values for update (P7_X_UVALUE).
    My idea is that when they click the button, they update selected column to desired value in all rows.
    However, I get the following error:
    ORA-06550: line 5, column 5: PL/SQL: ORA-01747: invalid user.table.column, table.column, or column specification ORA-06550: line 4, column 1: PL/SQL: SQL Statement ignored (Go to error)
    It seems to me that I have not referenced the column name correctly, I thought it was the same as referencing values. How do I do that?
    This is my code:
    begin
    update "#OWNER#"."IZV_SLOG_DET"
    set :P7_X_COLUMN=:P7_X_UVALUE;
    end;
    Regards,
    Ivan

    I got it to work, but the query is too big. Can anyone help me with how to get it to work?
    I tried breaking it into more varchar2 strings, but i always get the same error:
    Error processing row.
    ORA-01461: can bind a LONG value only for insert into a LONG column
    declare  
    l_table_name varchar2(30) := 'IZV_SLOG_DET_POM'; 
    l_sql_stmt varchar2(32762);
    begin
    l_sql_stmt := 'update ' || l_table_name || ' set ' || :P7_X_COLUMN || ' =''' || :P7_X_UVALUE|| '''' ||
    'where'||
    'nvl(MSR_PRD_ID,1) = nvl(nvl(''' || :P7_X_MSR_PRD_ID || '''' || ',MSR_PRD_ID),1) and' ||
    'nvl(SRC_STM_ID,1) = nvl(nvl(''' || :P7_X_SRC_STM_ID || '''' || ',SRC_STM_ID),1) and' ||
    'nvl(OZNAKA_KOMITENTA,1) = nvl(nvl(''' || :P7_X_OZNAKA_KOMITENTA || '''' || ',OZNAKA_KOMITENTA),1) and' ||
    'nvl(RSP,1) = nvl(nvl(''' || :P7_X_RSP || '''' || ',RSP),1) and' ||
    'nvl(OZNAKA_RETKA,1) = nvl(nvl(''' || :P7_X_OZNAKA_RETKA || '''' || ',OZNAKA_RETKA),1) and' ||
    'nvl(OZNAKA_IZVJESCA,1) = nvl(nvl(''' || :P7_X_OZNAKA_IZVJESCA || '''' || ',OZNAKA_IZVJESCA),1) and' ||
    'nvl(MBR_KOMITENTA,1) = nvl(nvl(''' || :P7_X_MBR_KOMITENTA || '''' || ',MBR_KOMITENTA),1) and' ||
    'nvl(KOMITENT_NEREZ,1) = nvl(nvl(''' || :P7_X_KOMITENT_NEREZ || '''' || ',KOMITENT_NEREZ),1) and' ||
    'nvl(ZUPANIJA,1) = nvl(nvl(''' || :P7_X_ZUPANIJA || '''' || ',ZUPANIJA),1) and' ||
    'nvl(DRZAVA,1) = nvl(nvl(''' || :P7_X_DRZAVA || '''' || ',DRZAVA),1) and' ||
    'nvl(SEKTOR_NEREZIDENTA,1) = nvl(nvl(''' || :P7_X_SEKTOR_NEREZIDENTA || '''' || ',SEKTOR_NEREZIDENTA),1) and' ||
    'nvl(VRSTA_POVEZANOSTI,1) = nvl(nvl(''' || :P7_X_VRSTA_POVEZANOSTI || '''' || ',VRSTA_POVEZANOSTI),1) and' ||
    'nvl(INSTRUMENT,1) = nvl(nvl(''' || :P7_X_INSTRUMENT || '''' || ',INSTRUMENT),1) and' ||
    'nvl(VALUTA,1) = nvl(nvl(''' || :P7_X_VALUTA || '''' || ',VALUTA),1) and' ||
    'nvl(OTKAZNI_ROK,1) = nvl(nvl(''' || :P7_X_OTKAZNI_ROK || '''' || ',OTKAZNI_ROK),1) and' ||
    'nvl(IZVORNO_DOSPIJECE,1) = nvl(nvl(''' || :P7_X_IZVORNO_DOSPIJECE || '''' || ',IZVORNO_DOSPIJECE),1) and' ||
    'nvl(VRSTA_INDEKSACIJE,1) = nvl(nvl(''' || :P7_X_VRSTA_INDEKSACIJE || '''' || ',VRSTA_INDEKSACIJE),1) and' ||
    'nvl(VALUTA_INDEKSACIJE,1) = nvl(nvl(''' || :P7_X_VALUTA_INDEKSACIJE || '''' || ',VALUTA_INDEKSACIJE),1) and' ||
    'nvl(PORTFELJ,1) = nvl(nvl(''' || :P7_X_PORTFELJ || '''' || ',PORTFELJ),1) and' ||
    'nvl(UTRZIVOST_KREDITA,1) = nvl(nvl(''' || :P7_X_UTRZIVOST_KREDITA || '''' || ',UTRZIVOST_KREDITA),1) and' ||
    'nvl(ZNACAJKE_KAPITALA,1) = nvl(nvl(''' || :P7_X_ZNACAJKE_KAPITALA || '''' || ',ZNACAJKE_KAPITALA),1) and' ||
    'nvl(RIZICNA_SKUPINA,1) = nvl(nvl(''' || :P7_X_RIZICNA_SKUPINA || '''' || ',RIZICNA_SKUPINA),1) and' ||
    'nvl(UGRADJENI_DERIVAT,1) = nvl(nvl(''' || :P7_X_UGRADJENI_DERIVAT || '''' || ',UGRADJENI_DERIVAT),1) and' ||
    'nvl(ODNOSNA_VARIJABLA,1) = nvl(nvl(''' || :P7_X_ODNOSNA_VARIJABLA || '''' || ',ODNOSNA_VARIJABLA),1) and' ||
    'nvl(PREDZNAK,1) = nvl(nvl(''' || :P7_X_PREDZNAK || '''' || ',PREDZNAK),1) and' ||
    'nvl(VRSTA_IZNOSA,1) = nvl(nvl(''' || :P7_X_VRSTA_IZNOSA || '''' || ',VRSTA_IZNOSA),1) and' ||
    'nvl(KOMITENT_PBR,1) = nvl(nvl(''' || :P7_X_KOMITENT_PBR || '''' || ',KOMITENT_PBR),1) and' ||
    'nvl(UDJELI_POVEZ_C,1) = nvl(nvl(''' || :P7_X_UDJELI_POVEZ_C || '''' || ',UDJELI_POVEZ_C),1) and' ||
    'nvl(AR_ID,1) = nvl(nvl(''' || :P7_X_AR_ID || '''' || ',AR_ID),1) and' ||
    'nvl(AU_ID,1) = nvl(nvl(''' || :P7_X_AU_ID || '''' || ',AU_ID),1) and' ||
    'nvl(AR_BUSS_ID,1) = nvl(nvl(''' || :P7_X_AR_BUSS_ID || '''' || ',AR_BUSS_ID),1) and' ||
    'nvl(MTI_CCY_TP_ID,1) = nvl(nvl(''' || :P7_X_MTI_CCY_TP_ID || '''' || ',MTI_CCY_TP_ID),1) and' ||
    'nvl(REG_NO,1) = nvl(nvl(''' || :P7_X_REG_NO || '''' || ',REG_NO),1) and' ||
    'nvl(REG_SFX,1) = nvl(nvl(''' || :P7_X_REG_SFX || '''' || ',REG_SFX),1) and' ||
    'nvl(JMBG_ID_NO,1) = nvl(nvl(''' || :P7_X_JMBG_ID_NO || '''' || ',JMBG_ID_NO),1) and' ||
    'nvl(IP_ID,1) = nvl(nvl(''' || :P7_X_IP_ID || '''' || ',IP_ID),1) and' ||
    'nvl(TAX_ID_NO,1) = nvl(nvl(''' || :P7_X_TAX_ID_NO || '''' || ',TAX_ID_NO),1) and' ||
    'nvl(INSTRUMENT_OLD,1) = nvl(nvl(''' || :P7_X_INSTRUMENT_OLD || '''' || ',INSTRUMENT_OLD),1) and' ||
    'nvl(PREDZNAK_OLD,1) = nvl(nvl(''' || :P7_X_PREDZNAK_OLD || '''' || ',PREDZNAK_OLD),1) and' ||
    'nvl(NAPOMENA,1) = nvl(nvl(''' || :P7_X_NAPOMENA || '''' || ',NAPOMENA),1) and' ||
    'nvl(NOVI_POSAO_F,1) = nvl(nvl(''' || :P7_X_NOVI_POSAO_F || '''' || ',NOVI_POSAO_F),1) and' ||
    'nvl(LISTA_SUMARNA,1) = nvl(nvl(''' || :P7_X_LISTA_SUMARNA || '''' || ',LISTA_SUMARNA),1) and' ||
    'nvl(LISTA_REKAP,1) = nvl(nvl(''' || :P7_X_LISTA_REKAP || '''' || ',LISTA_REKAP),1) and' ||
    'nvl(DZS_IDY_CL_ID,1) = nvl(nvl(''' || :P7_X_DZS_IDY_CL_ID || '''' || ',DZS_IDY_CL_ID),1) and' ||
    'nvl(HNB_IP_CL_ID,1) = nvl(nvl(''' || :P7_X_HNB_IP_CL_ID || '''' || ',HNB_IP_CL_ID),1) and' ||
    'nvl(NO_DYS_OO,1) = nvl(nvl(''' || :P7_X_NO_DYS_OO || '''' || ',NO_DYS_OO),1) and' ||
    'nvl(POSTOTAK1,1) = nvl(nvl(''' || :P7_X_POSTOTAK1 || '''' || ',POSTOTAK1),1) and' ||
    'nvl(POSTOTAK2,1) = nvl(nvl(''' || :P7_X_POSTOTAK2 || '''' || ',POSTOTAK2),1) and' ||
    'nvl(POSTOTAK3,1) = nvl(nvl(''' || :P7_X_POSTOTAK3 || '''' || ',POSTOTAK3),1) and' ||
    'nvl(BNK_ID,1) = nvl(nvl(''' || :P7_X_BNK_ID || '''' || ',BNK_ID),1) and'||
    'nvl(ID,1) = nvl(nvl(''' || :P7_X_ID || '''' || ',ID),1) and' ||
    'nvl(ID_RETKA,1) = nvl(nvl(''' || :P7_X_ID_RETKA || '''' || ',ID_RETKA),1) and' ||
    'nvl(DATUM_STANJA,1) = nvl(nvl(''' || :P7_X_DATUM_STANJA || '''' || ',DATUM_STANJA),1) and' ||
    'nvl(IZNOS,1) = nvl(nvl(''' || :P7_X_IZNOS || '''' || ',IZNOS),1) and' ||
    'nvl(IZNOS_ACTUAL,1) = nvl(nvl(''' || :P7_X_IZNOS_ACTUAL || '''' || ',IZNOS_ACTUAL),1) and' ||
    'nvl(ACT_AR_BAL_KN,1) = nvl(nvl(''' || :P7_X_ACT_AR_BAL_KN || '''' || ',ACT_AR_BAL_KN),1) and' ||
    'nvl(ACT_AR_BAL,1) = nvl(nvl(''' || :P7_X_ACT_AR_BAL|| '''' || ',ACT_AR_BAL),1) and' ||
    'nvl(IZNOS_ACTUAL_OLD,1) = nvl(nvl(''' || :P7_X_IZNOS_ACTUAL_OLD || '''' || ',IZNOS_ACTUAL_OLD),1) and' ||
    'nvl(ACT_AR_BAL_KN_OLD,1) = nvl(nvl(''' || :P7_X_ACT_AR_BAL_KN_OLD || '''' || ',ACT_AR_BAL_KN_OLD),1) and' ||
    'nvl(ACT_AR_BAL_OLD,1) = nvl(nvl(''' || :P7_X_ACT_AR_BAL_OLD || '''' || ',ACT_AR_BAL_OLD),1) and' ||
    'nvl(EXG_RT_CRD_RSK_F,1) = nvl(nvl(''' || :P7_X_EXG_RT_CRD_RSK_F || '''' || ',EXG_RT_CRD_RSK_F),1) ';
    execute immediate l_sql_stmt; 
    end;

Maybe you are looking for

  • Error while adding the Objects in Existing DSO -Table /BIC/B* is too long ( 004030)

    Hi Team, We added some objects in the existing Write Optimized DSO.  while activitating the DSO We got the below error . Table /BIC/BXXXXXXXXX is too long (>004030) Please go through the issue and provide the solution. Thanks, Purushotham.

  • Subtype Validity Start date Check

    Hi All, For one of the infotype we created a new subtype with the validity in future date say 01102010. Now if i go to infotype i am able to create the record for this new subtype with the start date as 01042010 which should not be allowed. I checked

  • Satellite A500 - screen goes black

    My wife and i have had ours four weeks and getting same thing happening. Dont know why. also battery only lasts an hour when using and 2 hrs when not in use.

  • Count_query, on_count, and query_hits???????

    hey guys, what i am trying to do is to see how many recs are going to be retrieved and store that count in a variable upon execute_query. i have used the count_query built in right before my execute_query that i have in a when button pressed trigger,

  • Where can I find an Apple service provider in Lebanon?

    I bought a new MacBook Air in September, and now it seems like the inside of one of the USB ports has been bent, so I cannot use it anymore. Which effectively leaves me with only one functional USB port, which is not cool when the storage on the mach