Fragment size setting approach

Hi,
I am trying to use fragment as header and on its right-hand upper corner, I want to put Login/Logout hyperlink. I am facing problem in fragment's size, the header fragment should cover whole browser, irrespective of browser window�s size, desktop pixel resolution. And this hyperlink should be visible when user resizes the window. I guess this normally happens in any standard web site. I tried setting width pixels say 720 or setting width to 100%, but didn't work, the link doesn't appear at end.
Any suggestions regarding this?
More or less the same issue, I am also thinking to use another fragment (not sure if it right approach) at vertical right hand side, something like to show google ads, what settings should I do, so that this vertical fragment should appears in right end side of browser window?
So basically, I am thinking to use four fragments for all pages i.e. header, footer, left and right.
Any help will be greatly appreciated.
Thanks.

Found few pointers
http://blogs.sun.com/roller/page/winston?entry=css_layout
http://blogs.sun.com/roller/page/winston?entry=template_creation
http://forum.sun.com/jive/thread.jspa?forumID=123&threadID=50947

Similar Messages

  • Property List error: Unexpected character b at line 1 / JSON error: JSON text did not start with array or object and option to allow fragments not set.

    Hi,
    I have a MBP 13' Late 2011 and Yosemite 10.10.2 (14C1514).
    Until yesterday, I was using Garmin ConnectIQ SDK and all was working fine.
    Yesterday, I've updated my system with latest security updates and Xcode updates too (Version 6.2 (6C131e)).
    Since, I can't launch the ConnectIQ simulator app, I have this message in console :
    8/04/2015 15:19:04,103 mds[38]: There was an error parsing the Info.plist for the bundle at URL Info.plist -- file:///Volumes/Leto/connectiq-sdk-mac-1.1.0_2/ios/ConnectIQ.bundle/
    The data couldn’t be read because it isn’t in the correct format.
    <CFBasicHash 0x7fa64f44e9a0 [0x7fff7dfc7cf0]>{type = immutable dict, count = 2,
    entries =>
      0 : <CFString 0x7fff7df92580 [0x7fff7dfc7cf0]>{contents = "NSDebugDescription"} = <CFString 0x7fa64f44f0a0 [0x7fff7dfc7cf0]>{contents = "Unexpected character b at line 1"}
      1 : <CFString 0x7fff7df9f5e0 [0x7fff7dfc7cf0]>{contents = "kCFPropertyListOldStyleParsingError"} = Error Domain=NSCocoaErrorDomain Code=3840 "The data couldn’t be read because it isn’t in the correct format." (Conversion of string failed.) UserInfo=0x7fa64f44eda0 {NSDebugDescription=Conversion of string failed.}
    I have looked at this file and it looks like a binary plist
    bplist00ß^P^V^A^B^C^D^E^F^G^H
    ^K^L^M^N^O^P^Q^R^S^T^U^V^W^X^Y^Z^[^\^]^^^_ !"$%&'()'+,^[\CFBundleNameWDTXcodeYDTSDKName_^P^XNSHumanReadableCopyrightZDTSDKBuild_^P^YCFBundleDevelopmentRegion_^P^OCFBundleVersi    on_^P^SBuildMachineOSBuild^DTPlatformName_^P^SCFBundlePackageType_^P^ZCFBundleShortVersionString_^P^ZCFBundleSupportedPlatforms_^P^]CFBundleInfoDictionaryVersion_^P^RCFBundleE    xecutableZDTCompiler_^P^PMinimumOSVersion_^P^RCFBundleIdentifier^UIDeviceFamily_^P^QDTPlatformVersion\DTXcodeBuild_^P^QCFBundleSignature_^P^ODTPlatformBuildYConnectIQT0611[iph    oneos8.1o^P-^@C^@o^@p^@y^@r^@i^@g^@h^@t^@ ^@©^@ ^@2^@0^@1^@5^@ ^@G^@a^@r^@m^@i^@n^@.^@ ^@A^@l^@l^@ ^@r^@i^@g^@h^@t^@s^@ ^@r^@e^@s^@e^@r^@v^@e^@d^@.V12B411RenQ1V14C109Xiphoneos    TBNDLS1.0¡#XiPhoneOSS6.0YConnectIQ_^P"com.apple.compilers.llvm.clang.1_0S8.1_^P^Tcom.garmin.ConnectIQ¡*^P^AW6A2008aT????^@^H^@7^@D^@L^@V^@q^@|^@<98>^@ª^@À^@Ï^@å^A^B^A^_^A?^AT^    A_^Ar^A<87>^A<96>^Aª^A·^AË^AÝ^Aç^Aì^Aø^BU^B\^B_^Ba^Bh^Bq^Bv^Bz^B|^B<85>^B<89>^B<93>^B¸^B¼^BÓ^BÕ^B×^Bß^@^@^@^@^@^@^B^A^@^@^@^@^@^@^@-^@^@^@^@^@^@^@^@^@^@^@^@^@^@^Bä
    I guess it is a normal format but my system seems to be unable to read binary plist ?
    I tried some stuff with plutil
    plutil -lint Info.plist
    Info.plist: Unexpected character b at line 1
    Same for convert
    plutil -convert xml1 Info.plist
    Info.plist: Property List error: Unexpected character b at line 1 / JSON error: JSON text did not start with array or object and option to allow fragments not set.
    I also try to download a fresh version of the connectIQ SDK and no changes.
    Any idea ?
    Thanks

    Step by step, how did you arrive at seeing this agreement?

  • Newby question: I keep on getting "No size set" error

    Hello,
    I'm trying to integrate an Oracle database into my ASP.NET application and I keep on getting an error:
    "Parameter: ENTITY_NAME. No size set for variable length data type: String"
    The parameter is set as VarChar2 in the database, size 50, and the C# code sets this as a VarChar.
    My ASP.NET code is:
    Connect();
    // setup the command to the stored procedure
    OracleCommand DBCmd = new OracleCommand("HDB.PRL_PAYROLL_PKG.GET_ENTITIYID_BY_STOREID", this.Connection);
    DBCmd.CommandType = System.Data.CommandType.StoredProcedure;
    DBCmd.Parameters.Add("STOREID", OracleType.Number).Value = StoreID;
    DBCmd.Parameters.Add("STOREID", OracleType.Number).Direction = System.Data.ParameterDirection.Input;
    DBCmd.Parameters.Add("HDB_ENTITIES_ID", OracleType.Number).Direction = System.Data.ParameterDirection.Output;
    DBCmd.Parameters.Add("ENTITY_NAME", OracleType.VarChar).Direction = System.Data.ParameterDirection.Output;
    DBCmd.Parameters.Add("ENTITY_NAME", OracleType.VarChar).Size = 50;
    // Execute Procedure.
    OracleDataReader reader = DBCmd.ExecuteReader(System.Data.CommandBehavior.SequentialAccess);
    Can anybody steer me in the right direction?
    Thanks in advance for your help.
    Steve

    I have recieved no answers to this question.
    I think I'll go back to SQL Server 2005.

  • Dynamic Calc processor cannot lock more than [100] ESM blocks during the calculation, please increase CalcLockBlock setting and then retry(a small data cache setting could also cause this problem, please check the data cache size setting).

    Hi,
    Our Environment is Essbase 11.1.2.2 and working on Essbase EAS and Shared Services components.One of our user tried to run the Cal Script of one Application and faced this error.
    Dynamic Calc processor cannot lock more than [100] ESM blocks during the calculation, please increase CalcLockBlock setting and then retry(a small data cache setting could also cause this problem, please check the data cache size setting).
    I have done some Google and found that we need to add something in Essbase.cfg file like below.
    1012704 Dynamic Calc processor cannot lock more than number ESM blocks during the calculation, please increase CalcLockBlock setting and then retry (a small data cache setting could also cause this problem, please check the data cache size setting).
    Possible Problems
    Analytic Services could not lock enough blocks to perform the calculation.
    Possible Solutions
    Increase the number of blocks that Analytic Services can allocate for a calculation:
    Set the maximum number of blocks that Analytic Services can allocate to at least 500. 
    If you do not have an $ARBORPATH/bin/essbase.cfg file on the server computer, create one using a text editor.
    In the essbase.cfg file on the server computer, set CALCLOCKBLOCKHIGH to 500.
    Stop and restart Analytic Server.
    Add the SET LOCKBLOCK HIGH command to the beginning of the calculation script.
    Set the data cache large enough to hold all the blocks specified in the CALCLOCKBLOCKHIGH setting. 
    Determine the block size.
    Set the data catche size.
    Actually in our Server Config file(essbase.cfg) we dont have below data  added.
    CalcLockBlockHigh 2000
    CalcLockBlockDefault 200
    CalcLockBlocklow 50
    So my doubt is if we edit the Essbase.cfg file and add the above settings and restart the services will it work?  and if so why should we change the Server config file if the problem is with one application Cal Script. Please guide me how to proceed.
    Regards,
    Naveen

    Your calculation needs to hold more blocks in memory than your current set up allows.
    From the docs (quoting so I don't have to write it, not to be a smarta***:
    CALCLOCKBLOCK specifies the number of blocks that can be fixed at each level of the SET LOCKBLOCK HIGH | DEFAULT | LOW calculation script command.
    When a block is calculated, Essbase fixes (gets addressability to) the block along with the blocks containing its children. Essbase calculates the block and then releases it along with the blocks containing its children. By default, Essbase allows up to 100 blocks to be fixed concurrently when calculating a block. This is sufficient for most database calculations. However, you may want to set a number higher than 100 if you are consolidating very large numbers of children in a formula calculation. This ensures that Essbase can fix all the required blocks when calculating a data block and that performance will not be impaired.
    Example
    If the essbase.cfg file contains the following settings:
    CALCLOCKBLOCKHIGH 500  CALCLOCKBLOCKDEFAULT 200  CALCLOCKBLOCKLOW 50 
    then you can use the following SET LOCKBLOCK setting commands in a calculation script:
    SET LOCKBLOCK HIGH; 
    means that Essbase can fix up to 500 data blocks when calculating one block.
    Support doc is saying to change your config file so those settings can be made available for any calc script to use.
    On a side note, if this was working previously and now isn't then it is worth investigating if this is simply due to standard growth or a recent change that has made an unexpected significant impact.

  • Unable to Set Custom Paper size setting of 15 (width) x 12 (Height) using J

    Hi,
         I am unable to print the report using the custom paper size setting of  15 (width) x 12 (Height)  with printer friendly fonts so that we can print on Line or dot matrix printer.
         This problem is not solved from last 3 months and we dont get help anywhere.
         We are using Java with Crystal Report XI R2 design for the same. 
                           ITable table=null;
    DatabaseController dbCtrl=null;
    ReportClientDocument oReportDoc=null;
    try {
    String reportName=fileName;
    oReportDoc=new ReportClientDocument();
    oReportDoc.open(reportName,0);
    dbCtrl = oReportDoc.getDatabaseController ();
    rs=ad.sqlStringBigST(query);
    table = dbCtrl.getDatabase ().getTables ().getTable (0);
    dbCtrl.setDataSource (rs, table.getName(), "Runtimeres");
    Object oreportSource=oReportDoc.getReportSource();
    IReportSource reportSource=(IReportSource)oreportSource;
    PrintReportOptions printOptions = new PrintReportOptions();
    printOptions.setPrinterName("EPSON FX-2175 ESC/P");
    printOptions.setPaperSize(PaperSize.useDefault);
    options.setPaperSource(PaperSource.manual);
    oReportDoc.getPrintOutputController().printReport(printOptions);
    } catch (Exception e) {
    System.err.println(e.toString());
    Please let me know what is the solution for the same.
    Regards,
    Raj

    Hi,
        Yes i can understand that you need to first understand the root of the problem to give me the solution.
        I am here to answer to your questions until you understand what is the problem.
        Yes if i set the standard page size which are given in API doc , it sets up the page correctly.
        Following page size as given in the API doc works fine.
        http://devlibrary.businessobjects.com/businessobjectsxi/en/en/RAS_SDK/rassdk_java_api_doc/doc/rassdk_java_apiRef/com/crystaldecisions/sdk/occa/report/document/PaperSize.html
       It is rejecting the custom paper size and custom fonts (which in my case are printer friendly fonts).
    Regards,
    Rajshekhar SIpoy

  • Screen Size Setting

    I have installed solaris 10 in the vmware workstation. During the installation, I have updated the screen size to 15 inch, I would like to change the screen size setting to 17 inch now, how could I do that?
    Thanks all in advance

    This forum is to discuss the new container technology in Solaris 10.
    A better place to ask your question would be the general forum
    at
    http://forum.sun.com/forum.jspa?forumID=271

  • VNC/Remote Management display size setting?

    I'm not sure the best place to ask this question, it has several different components involved in it. I've looked all over but can't seem to find any info on this.
    I've got a headless Mini running 10.5.1. When I use a VNC client or now "Share Screen" to it, it comes up with a screen size of 1680 x 1050. Back when it was running Tiger it was something smaller (but can't remember what it was right now).
    Question is... how is this size set and is it changeable?
    Thanks,
    Rich

    Sorry, I guess I should have been more specific, how do you set it to other display sizes besides the ones that are listed in Sys Prefs? What if I want to make it bigger than 1860 x1050 (which is the biggest listed)? I'm connecting from a Mac that has a 30" display, so what if I want to make it closer to that display's size, which is 2560 x 1600? How was 1680 x 1050 even picked in the first place? I do not have a monitor attached at all, let alone that size.

  • The 'Monitor Size' setting could do with an update

    This isn't the most important issue in the world, but I did notice that the 'Monitor Size' setting in Frame 11 (Edit > Preferences > Global > General > Monitor Size) hasn't changed for years.
    It's used so that when you have your screen set to 100% zoom, it matches the real paper world in size.
    But - it just has a drop-down for 'diagonal width" monitor size which assumes a 4:3 aspect ratio (as per old CRT monitors) and only goes up to 22".  I'm currently typing on a 23" 'widescreen' (16:9) monitor so I don't think that diagonal width drop-down is going to do much useful for me

    I presume this setting wasn't fixed in FM12, and still assumes a quaint single-screen 4:3 aspect ratio.
    Back when computers were slower, and I was doing a lot of work with relatively high res TIFFs, I figured out that if I set Monitor Size and zoom levels carefully, I could get specific zoom levels to render raster images at exact integer multiples or fractions of the video card's frame buffer raster dimensions. I found that this made a huge difference in display & refresh performance. At 1:1, doing so apparently eliminated resampling of the image data entirely. At integer 1:N or N:1, it apparently minimized the computation required, and minimized artifacts.
    This sort of consideration is less important today, but it would be nice to get the parameter fixed, or at least publish a FAQ on how to game the 4:3 assumption for 16:9, 16:10 and 21:9 monitors, as well as arbitrary multi-monitor configurations.

  • Customer paper size setting 8.8 in (width)x 5.5 in (height) print out

    Hello, Expert
    I have a question print out paper size that is a customer paper size setting 8.8 in (width)x 5.5 in (height) in Dot-Matrix printer,
    When print out that orientation from protrait to landscape.
    I used CR2008 and upgrade to SP4.
    Hope anybody help me
    Thanks.

    Hi,
    --you just go to file menu and select 'Page setup' option, then it will display new window.
    --In this window you will select the Orientation as 'Landscape' and in page options please specify your required page heigth and width in'vertical' and 'Horizantal' boxes. Then it will display your required page format.
    Thanks,
    Naga.

  • Duplicate Adobe PDF printers won't hold page size setting

    I'm running Acrobat Professional 9.1.1 and 8.1.3 on two separate Windows XP Professional SP3 computers.
    We have an Excel 2003 spreadsheet that we're trying to print to PDF on A4 paper size. When printing from Excel, we select the Adobe PDF print driver, click Properties, then change the Adobe PDF Page Size setting to A4. We double-checked under the Paper/Quality tab to make sure the size stuck, and it did. When it actually finishes creating the PDF, however, it's still Letter sized. The only way to make force it to create A4 is to go into Printers & Faxes and change the default size there...which is way too much work to have to do every time we need to change paper sizes. I would think it would be possible directly within the print dialog box (otherwise, why would they bother including it there?).
    I thought I could do a work-around and duplicate the Adobe PDF print driver with a different name and set the duplicate to A4 size while the regular one would be at Letter size. This works fine when I'm logged in as an administrator. If I log into my computer as a general user however, the duplicate driver shows up, but even when we go into Printers & Faxes and set the paper size to A4, the size doesn't stick when selecting that duplicate print driver when printing from Excel. The same scenario recreates itself on any computer here, whether using Acrobat 8 Pro or Acrobat 9 Pro.
    Any thoughts on this?

    I already described how to get rid of that months ago.
    It rely upon a bit of surgerty.
    ctrl + click the Pages icon to get the menu item "Show package contents"
    Navigate in the package to open the
    <startupVolume>:Applications:iWork '09:Pages.app:Contents:Resources:Templates:
    folder.
    Then, ctrl click the template of your choice .
    You will reach two files :
    index-iso.xml.template
    and
    index-trad.xml.template
    Duplicate both of them for safe.
    Delete the file entitled
    index-iso.xml.template
    then rename
    index-trad.xml.template
    as
    index-iso.xml.template
    As the computers are dumbs, yours will be fooled and will use the file named index-iso.xml.template whose contents will be the index-trad.xml.template one.
    Apply the scheme to every template which you really use.
    If I remember well, I wrote a script applying this process to every templates delivered in the box but I'm too lazy to search for it.
    Yvan KOENIG (VALLAURIS, France)  samedi 12 janvier 2011 16:54:51
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Fragment Size with large Raid Arrays

    No, I am not a new user. I've done newfs probably hundreds
    of times. But, I've never had to futz around with obscure
    parameters because the device geometry was insane.
    I want to get a file system made that
    doesn't require 4096 byte fragments. Is that too much to ask?
    I would think that there is some combination of cylinders,
    heads, and sectors that should give that result, but I don't
    have time to search for it.
    tahoe# newfs -m 1 -o time /dev/rdsk/c2t8d0s2
    newfs: construct a new file system /dev/rdsk/c2t8d0s2: (y/n)? y
    With 16129 sectors per cylinder, minimum cylinders per group is 16
    and the fragment size to be changed from 0 to 4096
    With these parameters, it returns immediately, seemingly doing
    nothing -f 4096 to specify the fragment size, like:
    tahoe# newfs -f 4096 -m 1 -o time /dev/rdsk/c2t8d0s2
    This worked, or seemed to.
    The problem now is that it I am losing a lot of space when I have
    directories with lots of little files.

    The relocation you show is a relocation for a 32-bit value
    relative to a linker section, in this case the .lbss section.
    I would not expect such a relocation to be generated
    unless the object file was produced by compiling for the
    small memory model.
    What type of symbol is maillage_curv.curv_rank_from_index_?
    From the name, I would expect it to be a routine name, but
    routine names should not be defined in the .lbss section.
    Bob Corbett

  • Save Image size setting in Save for Web

    I'm using Save for Web (CS3) and scaling the file to different sizes with "scale image". I'm wanting to use the same scale settings for many images but when I save the pre-set the image size settings don't get saved. I'm wanting to use it as part of an action but the setting wont stick. Any suggestions? Alternative work flows?

    That's never been saved as part of the S4W presets. Bloody annoying.

  • Calendar in Yosemite does not comply to Sidebar icon size setting?

    The icon size and the font size in the sidebar of System apps can be set in
    System Prefs => General => Sidebar icon size
    The Finder of OS X 10.10 does react to this setting, Mail.app does and in Mavericks also Calendar.app did.
    On my MBP running Yosemite, Calendar v8.0 always shows quite large icons and a large font in the sidebar.
    Is this a problem of my installation, or is it "normal"?
    There are other problems of the Calendar sidebar, for example I am unable to enlarge the sidebar to show longer names of individual calendars.

    If you want the calendar entries that you create on the phone to sync with the gmail, you need to create the entry in the gmail calendar on the phone.  If you create it in the phone calendar, it is only on the phone.
    Usually at the very top of the new event entry you have a choice of which calendar to create this event in.  Either Phone, gmail or any other option you have synced to your phone.  To get it to sync to the gmail calendar you need to select the gmail calender.

  • The printer page size setting is not working in Photoshop 5.1 with Xerox printer

    I am attempting to print an output size larger than 8.5 x 11 and Photoshop will not change the size even though the printer setting is now at the larger size.  Illustrator and other programs will print but but Photoshop fails.  This is an issue in both the 32 and 64 bit versions.  Help!

    I found the following on the Xerox site...tip of the hat to T Robinson:
    Re: Photoshop CS6 on Win 7x64 prints only letter size on Workcentre 7655
    03-20-2013 12:28 PM
    We have a Xerox WorkCentre 7435 PCL6, and I have been having a similar problem. I found a workaround in Photoshop CS5, which I will describe in case it is helpful to others. I just upgraded to Photoshop CS6 however, and the workaround no longer works with it. Instead I get an error message if I print a Job History Report. The message is partially cut off at the right margin of the page, but the part I can read says, "Completed with error(016-799): Print Instructi...on Fail detected in Decomposer." (The ellipsis indicates the part of the message that is cut off. What follows it appears on the next line down. I downloaded all updates to CS6 to see if that would help, but it did not.
    Here is the workaround that worked for me on CS5:
    1) Click on "Print Settings" in the Print dialog
    2) On the pulldown Paper menu, select "Advanced Paper Selection"
    3) Select the tray where your tabloid (or legal) sized paper is loaded
    4) Click on the button at the right end of the "Paper Size" field to display the Paper Size dialog.
    5) Click on the down arrow button at the right end of the "Original Document Size" field and select "Tabloid" (or "Legal") from the menu.
    6) Click OK to close each of the open dialogs til you get back to the Print dialog and then print your document. The print preview should update to show you a preview reflecting the selected paper size. (This may take a few seconds to happen.)
    This worked for me in CS5. Unfortunately, as noted above, it does not seem to work in CS6. The only workaround I can come up with for CS6 is to save the file as a PDF and then print it from Acrobat. This works without a problem, but it's a lot of trouble to go to every time I have to print something other than letter size.
    If anyone finds a better workaround in CS6, please let me know.

  • How do I Keep the "zoom" size setting the same each time I open Safari and from web page to web page?

    I have a 27" iMac when I open Safari the web page is only 1/3 the size of the full screen Safari window. I know how to ZOOM in on the web page! My question is, How do I keep this ZOOM setting for all web pages and each time I open Safari up?

    Sorry, but that's not possible.
    An alternative might be to use Zoom in System Preferences > Accessibility
    Or try a different screen resolutioin in System Preferences > Displays > Scaled

Maybe you are looking for

  • How can I use Dropbox with pages for the iPad?

    TO make a long story short, a thunderstorm fried my desktop iMac which was the computer I was sharing my Pages documents with.  I don't have an AirPrint compatible printer and I need to be able to print documents that I create in Pages.  Since it mig

  • Bad adapter engine configuration - File Sender scenery doesn't work

    In file sender scenery, the adapter doesnu2019t pass any message to the Integration Engine. When I take a look to the communication channel monitoring it shows the channel with status OK (Green). But when I look into the audit log of the incoming mes

  • Exporting from lightroom

    If someone gives me a jpeg they want edited, and I take it into lightroom and then edit it, how to I exprt it the same size that they sent? Can I create an export action that allows the same size file to be exported each time? Thanks! Sarah

  • The stack sub menu does not enable for stacked photos in elements organizer 13 on windows 8.1

    The stack sub menu does not enable for stacked photos in elements organizer 13 on windows 8.1. Has anyone else experienced this? I stacked some photos, now I cannot expand them or unstack them in the organizer. This is for both auto and manual stacki

  • Path Names Video and Searchpaths

    Hi Guys, #I wonder if someone can help me i am really baffled why a application i have been working on for ages and was working fine has chosen now to change how it operates. The application has had no problems in the past with locating video files s