Is there any component like the "Enhanced Gird View" of XMLSPY?

Hi!
I want to cusomize a XML editor.
I am looking for any Java based component like the "Enhanced Gird View" of XMLSPY.
http://www.xmlspy.com/features_views.html
If you know any component like it, please tell me.
Thank you!

JTable?
[http://java.sun.com/docs/books/tutorial/uiswing/components/table.html]

Similar Messages

  • Is there any component like percentage indicator not progress bar in Flex ?

    Hi All,
    I have to display a percentage value in a graphical way.( for example say 75% , a tube similar to progress bar which has a fill up to 75 % )
    Is there any such component in flex or can I use progress bar ? please share your thoughts.
    Thanks,
    Tc.

    You want to use a determinate ProgressBar with mode set to manual:
       <mx:ProgressBar id="progressBar" minimum="0" maximum="100" mode="manual"
           label="0%" labelPlacement="bottom">
       </mx:ProgressBar
    Then use setProgress( %, 100 ) to set the percentage:
      // set the progress to 10 of 100 (10%)
      progressBar.setProgress( 10, 100 );
    Let me know if that does the trick.
    Ben Edwards

  • Is there any component like Panel Accordian but vertical

    Hi,
    Can I create panel accordian vertically or different tabs in single show detail component of panel accordian ?
    regards,
    devang

    Hi,
    accordian is with horizontal headers only. You can have a paneltab component as a child of an accordian.
    Frank

  • JPA and CAF BO - are there any editors of the JPA data (like CAF)?

    Hello!
    As you know SAP invented some layer above JPA and called it CAF. There is a very convenient way to edit data in CAF.
    But now I have to create a complex database scheme, also with CAF doesn't allow us to work with objects. So we can't use someObject.getChildren().
    So my question is are there any editors of the JPA data (like it is done in CAF)?

    Hi Kirill,
    at the beginning of our project at the end of 2009, we did a deep analysis of CAF since our architect vehemently suggested to use this framework.
    First about the history and purpose of CAF: Initially, CAF was never meant to be a layer above CAF since CAF was invented in the time before EJB 3.0 and JPA standard where writing persistence with EJB 2.x CMP forced the developer to write pages of boiler plate code. This background was approved by SAP.
    With upcoming of JPA, CAF ist mostly useless (except for very simply structured data) and prevents you from writing good software.
    It is easy just to write @Entity, @Id and @OneToMany (for complex database schemes) and CAF forces you to use an ugly, imperformant database scheme (e.g. CAF uses mapping tables even for 1:n relationships, a clear antipattern!)
    The CRUD-services generated with CAF are a pain, too. Usage of pessimistic locking is not up to date for web applications.
    With your complex database schemes, you exceed the limit of CAF.
    (We decided not to use CAF and did never regret this.)
    Concerning your question: There is an "JPA Details" view in NWDS that might help you. It needs JPA Persistence facet on your project to work. Developed by SAP. For JPA beginners, it is a good cheat sheet for JPA annotations and their attributes.
    You do not need more since a JPA POJO is easy to code.
    Regards,
    Rolf

  • Would like to use an alarm clock.  I need the alarm clock to function from the sleep mode.  A review said that MAC products will not allow a program to wake up a Mac.  Is this correct ?  Are there any products in the Mac store what will function from the

    Would like to use an alarm clock.  I need the alarm clock to function from the sleep mode.  A review said that MAC products will not allow a program to wake up a Mac.  Is this correct ?  Are there any products in the Mac store what will function from the sleep mode ?  How do I check this out ?

    You can set times for your computer to turn on or wake from sleep in the Energy Saver system preference pane using the Schedule... button.

  • Hey, I'm doing some cross browser testing and i want to know Is there any difference between the behavior of Firefox in an operating system 64bit & operating system with 32bit. (like windows7/windows vista...)

    ''duplicate of https://support.mozilla.com/en-US/questions/905881''
    Hey, I'm doing some cross browser testing and i want to know Is there any difference between the behavior of Firefox in an operating system 64bit & operating system with 32bit. (like windows7/windows vista...)

    Hi Kossa,
    You can also check if the issue occurs in
    Clean Boot. If the issue disappears in the Clean Boot environment, you can continue to narrow down which entry is causing the issue.
    Besides, uninstall it and re-download
    a fresh copy of FireFox to check the result. If the issue still exists, create a new user account to see if it occurs.
    If the issue persists, you can contact Mozilla Support directly and use Internet Explorer (IE) during the time.
    J
    Please Note: The third-party product discussed here is manufactured by a company that is independent of Microsoft. We make no warranty, implied or otherwise,
    regarding this product's performance or reliability.
    Regards,
    Linda

  • Hey, I'm doing some cross browser testing and i want to know Is there any difference between the behavior of Firefox in an operating system 64bit & operating system with 32bit. (like windows7/windows vista...) Thanks,

    Hey, I'm doing some cross browser testing and i want to know Is there any difference between the behavior of Firefox in an operating system 64bit & operating system with 32bit. (like windows7/windows vista...) Thanks,

    Hi O_H_I_O,
    Have you got an error code ?
    Considering it is a brand new machine ,please update the machines .To get a better performance of the machines ,we should always keep it up to date .
    There is a possibility that the DVD/CD-ROm drives driver is old or has corrupted .Please open the device manager , update or reinstall the driver to have a check.
    Apart from this ,we can run the built-in tool to a diagnostic :
    Control Panel\All Control Panel Items\Troubleshooting\All Categories\Hardware and Devices
    We also can run the following fixit tool to have a check.
    Fix problems with CD or DVD drives that can’t read or write media
    http://support.microsoft.com/mats/cd_dvd_drive_problems
    Best regards

  • Are there any apps like outlook but for the ipads?

    are there any apps like outlook but for the ipads?
    I want to manage my calendars appointments outlook is perfect but is it compatable for ipad

    Yes Outlook is Compatible for iPAD, but you have to buy it as an additional APP. However you can download something called "iCloud Control Panel" for Windows Machine & Install it. This would integrate all your Windows Calendar in Outlook to iCloud.
    Then enable iCloud in your iPad. All your contacts & calendars would sync automatically to your outlook on the windows machine. You can actuallu configure "Mail" app in the iPad to your exchange server.

  • Is There Any Component Similar To JFileChooser To Save Information In File

    Hi All,
    I have an application in JSP where I need to save the some information from my jsp page into a file.Like JFileChooser opens the required files, is there any component similar to JFileChooser to "save" the information into a file???
    Thanks In Advance,
    Anupama M

    That's easy :) You can write it yourself.
    Imagine you've a List<Dto> where each DTO represents one row. Create a StringBuilder (or StringBuffer if you're still not at Java 1.5) and append each row value to it. Eventually add separators (comma, semicolon, etc) to it. After each row, eventually add a newline. On the end, stream the contents of the StringBuilder to the HttpServletResponse#getOutputStream(). Don't forget to set the headers accordingly.

  • Is there any documentation regarding the fuego.fdi.* libraries

    Is there any documentation regarding the fuego.fdi.* libraries
    thanks

    Hey lloyd,
    It looks like there is!
    Within Studio, click on the 'Documentation' flap on the bottom of the screen.
    Then, open the project flap, and navigate to Catalog -> Fuego -> Fdi
    Double click on any of the individual components, and its documentation will appear within the documentation flap on the lower portion of the screen.
    If you don't see any documentation, check the tabs at the top of the documentation flap - the tabs allow you to switch between the documentation for the current method you're working on, and the component you've selected.
    -Noel

  • Is there any restriction on the length of all Primary keys in a table

    Hi all,
    Is there any restriction on the length of all Primary keys in a data base table?
    i have some 10 fields as primary key in a DB table and length exceeds 120 and getting a warning.
    Please let me know will there be any problems in future with respect to the same?
    With regards,
    Sumanth

    Well actually there are constraints like
    Total of internal lengths of all primary key columns        1024 Bytes
    Number of primary key columns per table                     512
    For other information about SAP database please refer to http://sapdb.org/sap_db_features.htm  
    Thanks & Regards,
    Vivek Gaur
    Alwayz in high spirits

  • How to generate sitemap for SiteStudio sites. Is   there any component avai

    How to generate sitemap for SiteStudio sites. Is there any component available?
    We want to create xml having list of all site URLS for SEO purpose.
    Is there any way to achieve this ?
    Thanks

    SiteStudio comes with SiteMap fragments. Change the page template so it is a document type XML, add the fragment and you're practiacally done.

  • I have a component like the following and it completely crashes the design view in flex builder

    I have a component like the following and it completely crashes the design view in flex builder.I can see anything in the layout. Everything compliles fine and looks normal in the outline view. Any ideas whats wrong. If I remove the AdvancedDataGridColumnGroup's all looks fine
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Panel x="353" y="34" width="1159" height="505.7" maxWidth="663" allowDrag="true" allowResize="true" allowClose="true" allowMaximize="true" allowMinimize="true" resizeEffect="Resize" moveEffect="Move" close="parent.removeChild(this)" maxHeight="680" layout="absolute" title="Back office list" xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:AdvancedDataGrid id="deals" displayItemsExpanded="true" dataProvider="{tradesResult}" width="100%" height="373" sortExpertMode="true" variableRowHeight="true" headerStyleName="smallHeader" editable="false" fontWeight="normal">
            <mx:columns>
                <mx:AdvancedDataGridColumn width="75">
                </mx:AdvancedDataGridColumn>
                <mx:AdvancedDataGridColumnGroup headerText="Client side">
                    <mx:AdvancedDataGridColumn dataField="Reference" headerText="Mon Ref" width="60" editable="true" wordWrap="true" showDataTips="true" textAlign="center"/>
                    <mx:AdvancedDataGridColumn dataField="clientside" headerText="MC Pr" textAlign="center" wordWrap="true" width="70">
                    </mx:AdvancedDataGridColumn>
                </mx:AdvancedDataGridColumnGroup>
                <mx:AdvancedDataGridColumnGroup headerText="Bank side">
                    <mx:AdvancedDataGridColumn dataField="bankDealRef" headerText="Bank Ref" width="70" editable="true" wordWrap="true" dataTipFunction="dataTipFuncNotes" showDataTips="true" textAlign="center"/>
                    <mx:AdvancedDataGridColumn dataField="Premium2" headerText="Bank Pr" width="55" editable="true" wordWrap="true" showDataTips="true" textAlign="center"/>
                </mx:AdvancedDataGridColumnGroup>
            </mx:columns>
        </mx:AdvancedDataGrid>
    </mx:Panel>

    Nikos,
    When using grouped columns you should change the <mx:columns> to <mx:groupedColumns>, I ran this example in a sandbox app and it works fine.
    EXAMPLE:
    <mx:AdvancedDataGrid id="deals" displayItemsExpanded="true" dataProvider="{flatData}" width="100%" height="373"
            sortExpertMode="true" variableRowHeight="true" headerStyleName="smallHeader" editable="false" fontWeight="normal">
           <mx:groupedColumns>
                <mx:AdvancedDataGridColumn width="75">
                </mx:AdvancedDataGridColumn>
                <mx:AdvancedDataGridColumnGroup headerText="Client side">
                    <mx:AdvancedDataGridColumn dataField="customer" headerText="Mon Ref" width="60" editable="true" wordWrap="true" showDataTips="true" textAlign="center"/>
                    <mx:AdvancedDataGridColumn dataField="product" headerText="MC Pr" textAlign="center" wordWrap="true" width="70">
                    </mx:AdvancedDataGridColumn>
                </mx:AdvancedDataGridColumnGroup>
                <mx:AdvancedDataGridColumnGroup headerText="Bank side">
                    <mx:AdvancedDataGridColumn dataField="revenue" headerText="Bank Ref" width="70" editable="true" wordWrap="true"
                        showDataTips="true" textAlign="center"/>
                    <mx:AdvancedDataGridColumn dataField="cost" headerText="Bank Pr" width="55" editable="true" wordWrap="true" showDataTips="true" textAlign="center"/>
                </mx:AdvancedDataGridColumnGroup>
            </mx:groupedColumns>
        </mx:AdvancedDataGrid>
    HTH,
    Kenny Yates

  • Is there any component in flex to show/edit digital maps, lattitude, longitude etc?

    Is there any component in flex to show/edit digital maps, lattitude, longitude etc?

    If I do this then I will have my video player in fullscreen disappear for a moment and then reappear out of fullscreen, and I want it not to disappear, but to just jump to the other state fully resized and repositioned with no glitching in between states.
    Than you will need to implement your own solution which meets your specific design goals. That's the nature of the beast my friend.
    As far as I know dynimic skin parts have another meaning - creating more than one instance at runtime. Also I've read just now (again) partAdded and partRemoved are called on component initialization and skin change. So basicly if I change the skin, it makes sense to remove the eventListeners from the old skin parts. But still, I've read on many places that if an object has event listeners attached to it it will Not be GC unless they are weak, so it will be stuck in memory forever.
    So looking at the VideoPlayer and it's skin parts, I'm not seeing any event listener being removed when I remove the instance I have of the VideoPlayer. Why is that? Why the component does not remove it's skin parts event listeners?
    Are you changing skins? If so, I bet the parts would be removed as expected. The partRemoved method is not being called because it's not needed. If you remove the parent component, than any reference encapuslated within that component are removed as well.Fire up the profiler if you don't believe me.
    I'm interested in the skin parts and states relation. With includeIn and excludeFrom you define in which states the component is added to or removed from as a child (element). So If I have a skin part which is required=true and I have 2 states from one of which it is excluded... whouldn't that result in a runtime error since the part is not there but it is required?
    I'm pretty sure that it only checks if the instance exists, and does not care if it has been created and added to the display list. I do not really know for certain though. This could easily be answered with a simple test.

  • Is there any truth to the rumor that there is a virus attacking iphones in the form of an iOS update?

    Is there any truth to the rumor that there is a virus attacking iphones in the form of an IOS update?

    Absolutely not.
    There was a new piece of iOS malware discovered recently, but it, like all other known iOS malware, requires that the device be jailbroken. If your iOS device isn't jailbroken, there's no known malware capable of infecting it.

Maybe you are looking for

  • Cover Flow displays generic icon only for small JPEG files

    I recently used the excellent CocoThumbX to strip off all the Adobe preview icons from my Photoshop-created images (a mixture of JPEG, TIFF, and PSD files). That neatly solved the low-res "fuzzy" Cover Flow thumbnail problem lots of users have compla

  • TS3048 numeric pad connection

    I cannot connect my numeric pad. i put in the batteries and my wireless keyboard is working, but not the number pad

  • What happened to the stock browser?

    Upgraded from the Note 3(downsized I guess) and the stock browser is nowhere to be found.  I do not like Chrome and that is the only option without downloading another app.  Why did Verizon remove the Samsung stock browser and is there anyway to get

  • Newbie Web Start Question

    I have signed my jar file according to the developer document, however I continue to get this error: java.io.IOException: Server returned HTTP response code: 503 for URL: http://xxxxx/xxxxx/xxx.jar at sun.net.www.protocol.http.HttpURLConnection.getIn

  • Expense Reports in PrePay Audit no longer show risks involved

    I have expense reports in my Prepay audit queue that contain risks as defined by the Refinement Template, however the reports are no longer flagged to identify the specific risk involved. My Tech Support Admin says she has to "Resave" the template to