Property settings pain

JSC2 Build 06120 Win2K pro, 2gig ram
I am working in a page fragment. I am attempting to set the style for a grid component and have a couple of comments on usability.
First, no CSS styles show up, which is understandable since no stylesheet is directly tied to a fragment, but when I go to set them directly and type them in they disappear and afterwards when I view source in the JSP they are not there. If I go in and set them directly in JSP view the values get set and stay, although they are still not visible in the properties pane. If I type in a property it should not just erase it on me.
Second, CSS styles should be selectable even in this situation, it is up to me to ensure I place the fragment on a page that supplies the desired class, otherwise the style will simply not apply. I should be able to navigate to a CSS and pick styles from it.
Am I just missing some way to map styles onto a fragment?.
Thanks,

It appears that you are able to set the CSS styles you want manually in the JSP source. The IDE usability issue you refer to is known, but as far as I can see after some brief research, not for the use case you describe here. If further research shows this to be the case, I'll open up a request for a product enhancement (it is a borderline case as to whether this is a bug or an enhancement request).
For further information you might want to check out the blog entry
http://blogs.sun.com/roller/page/winston#css_layout
and perhaps communicate with the author further on this matter.

Similar Messages

  • Can't get in to my property settings

    I clicked on the Apple top left to get into property settings it will not go to property settings it will not do nothing help !

    Close all windows and quit all applications.
    Hold the option key down and click the "Go" menu in the Finder menubar.
    Select "Library" from the dropdown, then "Preferences" folder.
    Look for these two files.
    com.apple.desktop.plist
    com.apple.systempreferences.plist
    Right click each  one of those and select " Move To Trash" from the contextual menu.
    Restart the computer.

  • Property settings not working

    I have several property tags in my JNLP file, but when I launch my application I get the following error:
    java.security.AccessControlException: access denied (java.util.PropertyPermission stubMessage write)
    for each property I've included in the JNLP file. Since the properties are not getting set, I then get an exception when trying to read the properties that should be set.
    I'm using JWS 1.0.1 and a signed JAR file. This all works if I use all-permissions, but I do not want to use all permissions. In reading the JNLP spec, it seems that setting properties in the JNLP file should work without all-permissions. How do I pass properties without using all-permissions?

    I noticed that in the new maintenance release there is a referene that :
    In Java Web Start 1.0.1_02, the Java Network Launching Protocol (JNLP) will not allow use of any settings of the form <property name="NAME" value="VALUE"/> unless the "NAME" begins with "jnlp." or "javaws."

  • Xy graph active plot property settings not working

    I set the xy graph plot properties manually and they appear to work. However, when I try to set them in the program they revert to the manual settings. What's going on?
    PaulG.
    "I enjoy talking to you. Your mind appeals to me. It resembles my own mind except that you happen to be insane." -- George Orwell
    Solved!
    Go to Solution.

    I went to the graph and made plot legend visible and extended it from one plot to 3. That's all I did. Now it appears to be working properly. It's been a long while since I had to get really fancy with a graph but I don't remember having to do this. My memories of  graph properties were that they were a little more dynamic. 
    PaulG.
    "I enjoy talking to you. Your mind appeals to me. It resembles my own mind except that you happen to be insane." -- George Orwell

  • What property settings to I need to set in order for VISA Serial Read to read ASCII exactly like the legacy serial read vi?

    I have successfully built a vi which communicates with a piece of equipment via the serial port using ASCII characters. I am trying to replace the older versions of Serial Read and Write VIs with the VISA Serial Read and Write VIs. The VISA Write works fine, but the when reading data coming from the "box", the VISA Read VI returns string data with foreign looking characters instead of the usual correct ASCII characters as shown by a dumb terminal which is in parallel with the serial data line. Is there a special property node which needs to be configured on the VISA Serial Read vi, or do I need to set something on the VISA Configure Serial port v
    i?
    Why aren't the VISA serial vis compatible with the older serial vis?
    Thanks...

    Usually, garbage characters are an indication of a baud rate or parity mismatch, or maybe a stop bit or number of data bits setting. Make sure that you have configured your port correctly with VISA Configure Serial Port. I have used VISA serial successfully many times.
    - tbob
    Inventor of the WORM Global

  • Missing description of javaws.cfg property settings

    Hi all,
    I've searched through all the documents, archives, FAQ, JWS forum etc. but I cannot find a description what properties (such as javaws.cfg.showConsole=true) are available in javaws.cfg.
    I think this is an important information for JWS users to customize JWS and this information should be made visible.
    Have I searched the wrong places?
    Klaus

    Try vamphq.com's Java Web Start Configuration (javaws.cfg) Reference Page online at http://vamphq.com/jwsconf.html
    - Gerald

  • Netboot MAC Address filter settings do not hold

    I was able to find this fix for getting the Model property settings to stick:
    * Stop Netboot
    * Uncheck Enable image
    * Make the change
    * DO NOT click "Save"
    * Check Enable image
    * Start Netboot
    but the MAC Address filtering settings do not stay
    Any ideas? My Xserve is running 10.5.5 with all of the latest updates.

    Setting "per image" filtering does not work. This is a known issue. You can set filters for the entire server however.

  • Error using settings with serial port

    Hi guys: Can any one please tell me how to I change this line as I am getting error on Settings in VB.NET
    Thanks
    'Me.Settings = frmWeightMain.SerialPort1.Settings  'Error
    Me.CommPort = frmWeightMain.SerialPort1.PortName

    me.settings is an xml file in the project.  The SerialPort doesn't have a settings property so you must have a custom property in the frmWeightMain form, or the error is occurring because the property Settings doesn't exist.
    jdweng

  • Reading an external property file for adapter configurations (How-To)

    One thing that has bugged me is having to change an Adapter's property settings in the context file and then build and re-deploy the bundle to effect those changes. This really becomes a problem when you want to test a bundle in different server environments (Development, QA, Staging) and then finally deploy that same bundle to Production. Here at EnerNOC, all those environments have different message servers and database schema names, making it a real challenge to insure you're building the same bundle each time for the different environments.
    I played with a number of different ideas, but I wanted the solution to be Spring based. I finally settled on a rather simple solution to use external property files with the <util:properties/> tag of Spring, and then injecting the bean created from this into the adapters requiring different configurations.
    First, in the context file, I needed to add a new Spring namespace - http://www.springframework.org/schema/util:
    +<beans xmlns="http://www.springframework.org/schema/beans"+
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"*
    xmlns:osgi="http://www.springframework.org/schema/osgi"*
    xmlns:wlevs="http://www.bea.com/ns/wlevs/spring"*
    xmlns:util="http://www.springframework.org/schema/util"*
    xsi:schemaLocation="*
    http://www.springframework.org/schema/beans*
    http://www.springframework.org/schema/beans/spring-beans.xsd*
    http://www.springframework.org/schema/osgi*
    http://www.springframework.org/schema/osgi/spring-osgi.xsd*
    http://www.springframework.org/schema/util*
    http://www.springframework.org/schema/util/spring-util-2.5.xsd*
    http://www.bea.com/ns/wlevs/spring*
    http://www.bea.com/ns/wlevs/spring/spring-wlevs-v11_1_1_3.xsd">*
    Next, I defined a bean for my property file:
    +*<util:properties id="serverProperties" location="file:./applications/MyApplication/server.properties"/>*+
    And then finally, I modified my adapter to inject a Properties object and use that to define the other properties in the Adapter:
    +*<wlevs:adapter id="MyMessageAdapter" class="com.enernoc.cep.message.adapter.MyMessageAdapter" >*+
    +*<wlevs:instance-property name="properties" ref="serverProperties"/>*+
    +*<wlevs:listener ref="HAInputAdapter"/>*+         
    +*</wlevs:adapter>*+
    With this change, I can now build and deploy a bundle once to whatever servers I choose, and modify the server.properties file in each environment to make the necessary changes for message servers and databases. In a multi-server enviroment this becomes really handy as our deploy script needs to only create and push server.properties files and not new bundles.
    As a nice-to-have feature someday, it would be great if Oracle could enable their <wlevs:/> namespace to recognize the Spring PropertyPlaceholderConfigurer feature, so that we could use placeholder variables for property values of <wlevs:/> specific tags.
    Edited by: Jim Leary on Feb 28, 2011 4:11 PM
    Edited by: Jim Leary on Feb 28, 2011 4:14 PM
    Edited by: Jim Leary on Feb 28, 2011 4:15 PM
    Edited by: Jim Leary on Feb 28, 2011 4:16 PM
    Edited by: Jim Leary on Feb 28, 2011 4:17 PM
    Edited by: Jim Leary on Feb 28, 2011 4:18 PM
    Edited by: Jim Leary on Feb 28, 2011 4:19 PM

    Jim,
    You can use com.bea.wlevs.spring.support.ConfigurationPropertyPlaceholderConfigurer, which is based on org.springframework.beans.factory.config.PropertyPlaceholderConfigurer. For example,
    <bean class="com.bea.wlevs.spring.support.ConfigurationPropertyPlaceholderConfigurer">
    <property name="location" value="file:config/test.properties"/>
    </bean>
    <wlevs:adapter id="myAdapter" class="oracle.cep.sample.MyTestAdapter" >
    <wlevs:instance-property name="serverAddress" value="${serverAddress}"/>
    </wlevs:adapter>
    Manju.

  • Properties Settings disabled

    I just installed the most recent Adobe updates and now my Acrobat Pro 9.3.1 will not allow any property settings changes on my most recently created PDF files. All of the security and viewing options are grayed out. This is not the case with PDF files created just before the update. I can access my property settings and change security settings on older PDF files. So far I have had this problem just when I have been converting Micrsoft Word files to PDF files.

    You can turn it off when you are scanning under custom scan option. Not sure if you can turn if off once the document is created - I am struggeling with the same issue.

  • How to find who has changed SQL Server Agent 'Job History' settings.

    Hi all,
    I was searching from couple of days to know is there a way to find out who has changed the SQl agent property settings.
    Like if someone unchecks the SQL Agent History settings how i can find who has done that change?
    I searched for trace flags but there is nothing related to it, i searched for system tables and views of msdb but nothing which can give this information, even didn't find any audit setting that can monitor these activities.
    My sql version is SQL Server 2008. Please throw your ides on how to track the sql agent history setting changes!!!
    Thanks In Advance!!!!
    VVinayPrasad

    Hi,
    You might be able to AUDIT the execute on that SP but its not giving exactly what has been changed... i guess you are getting what i am looking for...
    whatever the property might be changed it only shows the sp name thats it.... but not the exact sql statement executed on background
    VVinayPrasad
    First of all: It's not about me, it's about you. And it's not a might, its a given fact. I
    tested it for you.
    Second: your question was:
    >>I was searching from couple of days to know is there a way to find out
    who has changed the SQl agent property settings.
    >>Like if someone unchecks the SQL Agent History settings how i can find who has done that change?
    So please first clear up, what you really need.
    Third: instead of Auditing I already gave the advise to use Tracing (be it SQLTrace or Extended Events). Both will give you the exact statement. SQLTrace may be easier on SQL2008
    Please try all of the provided first before doing guesswork.
    Andreas Wolter (Blog |
    Twitter)
    MCM - Microsoft Certified Master SQL Server 2008
    MCSM - Microsoft Certified Solutions Master Data Platform, SQL Server 2012
    www.andreas-wolter.com |
    www.SarpedonQualityLab.com

  • AD Property Mapping - Missing AD attributes

    Hi there
    I have been trying to find a way to expose a particular attribute in AD in my synchronisation connection in SharePoint 2013.
    The AD value is OtherTelephone, but this is not appearing in the list of attributes associated to my data source connection.
    I have tried to create a new data source to re-synch with no luck. This is a default AD property that should appear and it is not a custom one.
    What needs to be done so that I can map a new SharePoint property to this AD field?
    Uzma

    Hi Uzma,
    In addition to Sudip,
    please hange Type to “string (Multi Value)” in Property Settings when you create New Property, then re-sync User Profile.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Custom property not displaying at folder creation or Details screen

    Hello everyone
    I have created a custom boolean property that I need to have displayed both at folder creation and in the Details screen of a folder after it's created.  The property is in the default namespace, and is in the Custom group.  I have created a properties file for the label and created the necessary meta data extension.  The folder validity pattern is " / " and the Resource Type listed is "normalct" so that it's active for folders only.
    Then I went to Property Groups and listed my new property in the Group Items field of the Custom group.  The Custom group is a part of "all_groups" so that group is displayed both when a new folder is created in KM and when the Details screen of a folder is displayed.
    <i>However,</i> my custom property isn't displaying under the Custom tab when I go to create a new KM folder, nor when I view the Details screen of an existing folder.  What configuration am I missing?  Do I have to develop a custom property renderer for each new property I need to create?  I was hoping I could achieve this result with configuration changes only, but I must be missing something.
    Any help would be greatly appreciated and rewarded. 
    Thanks in advance,
    Fallon

    Hi Fallon,
    actualy, if you want this property to be displayed only for folders and not for documents, you don't need to specify the resource type for folders. Setting "/" or "/**" for "Folder Validity Patterns" and "" (empty) for "Document Validity Patterns" should be enough.
    If you sill experience problems, you have to check all settings, for example with the settings suggested in this <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/2654">weblog</a>. If you use the "default" Property Group in the property settings, you don't have to enter the <b>Property ID</b> in a special Property Structure Group that in turn is integrated in the all_groups Property Structure Group.
    Hope this helps,
    Robert

  • USB 9234 coupling settings in Mac OS X Labview?

    Hi folks, 
    I have Labview on OS X here connected to a USB-9234. I'm just thrilled to see this hardware supported on OS X; NiDAQmx Base works great with it. However, I can't for the life of me figure out how to set the AC/DC and IEPE settings. I noted that the readme file references these coupling parameters as "properties". How do I set properties for this device? Any general pointers would be deeply appreciated. 
    Regards, 
    Tom 
    Solved!
    Go to Solution.

    Hi Tom-
    I'm glad to hear you're seeing good results with your USB-9234 and NI-DAQmx Base.
    In order to adjust the coupling and excitation settings, you will have to use the new (as of NI-DAQmx Base 3.2) NI-DAQmx Base Properties feature for LabVIEW.  The properties interface was one of the last features we implemented for the NI-DAQmx Base 3.2 release that we are planning to potentially add more properties to and fully document in a future release.  However, I made sure to add the excitation and coupling properties for the USB-9234 since those are such differentiating hardware features.
    You can't find the properties VIs on the NI-DAQmx Base palettes in LabVIEW, so you will have to browse to them.  They can be found in Applications::National Instruments::<LabVIEW dir>::vi.lib/_DAQmxBase/Internals/Properties.  You will want to use the DAQmxBase Get/Set Property VIs found there.
    For the USB-9234, you can either specify settings for all channels (by leaving ActiveChannel unwired),  or you can specify settings on a per-channel basis by wiring a string to ActiveChannel that descibes the channel you want to use.  Note that you can only specify ActiveChannel in the form "DevX/aiY", so you might need to call the VI multiple times to set properties for various channels.
    One other catch with the USB-9234: you can not use IEPE excitation when DC coupling is enabled.  Because of the way we implemented the properties interface, settings are immediately validated when they are adjusted.  So, if you want to disable IEPE excitation for a channel you will have to first switch that channel to DC coupling.  The order of operations is important, and you will be presented with a descriptive error if things are done out of order.  
    One other caution- the coupling and excitation settings do not take effect immediately when they are set with the properties interface.  Instead, they take effect when DAQmx Base Start Task is called.  You also can not update coupling or excitation while a task is running, so you would need to call DAQmx Base Stop Task, adjust properties, and then re-start the task.
    I added property settings to the ContAcq&GraphVoltage example (attached here, in LabVIEW 8.5) and also took a couple of screenshots in case you are using a different LabVIEW version.
    Please let me know if you have any other questions.
    Message Edited by Tom W [DE] on 01-20-2009 10:09 AM
    Tom W
    National Instruments
    Attachments:
    Cont Acq&Graph Voltage-Int Clk(mod).vi ‏47 KB
    Picture 1.png ‏10 KB
    Picture 2.png ‏11 KB

  • Handcrafted special paper best print settings?

    Hi,
    I own a HP Officejet 5610 All-in-one printer.
    I have to print using a special handcrafted paper with the following features:
    Weight from 180 gr/sqm to 200 gr/sqm
    Border are raw and uneven
    it probably absorbs a lot of ink
    Which are the best setting to use qith this kind of paper?
    Thank you in advance.
    Simone

    Hi Christoph (and all other viewers),
    I am Prasad's co-worker and I have some additional information regarding this problem.  We have already tried adjusting the printer property settings and checking for scaling size, margins, paper sizes, etc. and was only able to adjust the paper size option.  There were no other options available to change for the printer properties.  We also printed the same document to a PDF print driver (with the only relevant setting being the paper size) and the document printed as it should (meaning without distortion or margin errors).  Additionally - when we chose the PDF Printer - we were able to set the border/margin settings to whatever values we liked (unlike when choosing other printers where the margin settings were set as they were and would not change despite attempting to change them).
    What we are trying to figure out is why ECL viewer will not allow for margin/border settings to be changed only when printing to a PDF or some type of image writer print driver (such as Microsoft Document Image Writer).  We are wondering if there's some type of configuration setting within IMG or maybe a registry setting within Windows (on the local machine) that may need to be changed in order to allow for margin/border adjustments, or even an Snote to be applied.  We (and the client) are running ECL Viewer patch level 4 (patch level 5 (I believe) hasn't been released as of yet).  I hope this helps and thank you for your feedback thus far.

Maybe you are looking for