Is there any harm in using colspan="1000"

Hi,
i want to know that is there any harm in using colspan="any big number" in my <TD> tag even if no row in table contains more than suppose 1 - 20 columns, i just want my current <TD > to span the whole available width of table, whatever may be the number of columns in other rows.

well when you are outputting the table (dynamically I assume) you must know the number of columns it has, so you can also dynamically set the colspan value. Yes it will have an effect on the rendering of the table to set more rows in the colspan than there are actual rows in the table, but the effect will be browser dependent.
Stupid question to you perhaps, but why don't you just try it out and see for yourself? Then you don't have to trust in the words of someone else!

Similar Messages

  • Is there any harm in upgrading from 10.5.8 to 10.8?

    I'd like to premise this question by saying that I am aware that there is a Downloadable Mountain Lion Recovery Assistant that you can put onto an external hard drive and boot to.  For this question I ask the reader to pretend the 10.8 Recovery Assistant doesn't exist. 
    I also ask that the reader provide a reason why in their answer. 
    If I have an 2009 iMac with 10.5.8 and a 2011 MacBook Pro with 10.8.4 connected to each other with a firewire cable, is there any harm in putting the iMac into Target Disk Mode, booting the MacBook Pro to Recovery 10.8.4 and Reinstalling Mac OS X Mountain Lion onto the iMac's Macintosh HD? 
    I'm wondering if Apple wants people to from Leopard 10.5.8 to Snow Leopard 10.6.8 just for the sake of gaining access to the App Store, or if there is some greater potential for a negative outcome in skipping Snow Leopard 10.6.8 and going straight to Mountain Lion 10.8.4 from Leopard 10.5.8 -- eg. missing filing system prerequisites. 
    Thanks, to anyone who responds, for your input

    If I have an 2009 iMac with 10.5.8 and a 2011 MacBook Pro with 10.8.4
    connected to each other with a firewire cable, is there any harm in
    putting the iMac into Target Disk Mode, booting the MacBook Pro to
    Recovery 10.8.4 and Reinstalling Mac OS X Mountain Lion onto the iMac's
    Macintosh HD? 
    You need the drivers for the hardware on the 2009 machine, then comes the problem of updating, reinstalles etc.
    You need to go the 10.6 retail disk to 10.8 via AppStore method or...
    I'm wondering if Apple wants people to from Leopard 10.5.8 to Snow Leopard 10.6.8 just for the sake of gaining access to the App Store, or if there is some greater potential for a negative outcome in skipping Snow Leopard 10.6.8 and going straight to Mountain Lion 10.8.4 from Leopard 10.5.8 -- eg. missing filing system prerequisites. 
    You can download the 10.8 installer and make one of these
    http://www.techrepublic.com/blog/mac/how-to-create-a-bootable-usb-to-install-os- x/2699
    Problem is of course your 2011 machine is already on 10.8 and if the AppStore won't down it saying "your already on 10.8" then you would have to clone 10.8 on a external drive and disconnect, command option r boot into Internet Recovery to erase the drive and install 10.7, then AppStore download the 10.8 installer to make the USB thumb drive, then upgrade the 2011 machine back to 10.8
    Option/alt key to boot off the clone and reverse clone 10.8 old configuration back on. Then use the 10.8 USB to install on the other machine.
        Most commonly used backup methods
    https://discussions.apple.com/community/notebooks/macbook_pro?view=documents#/?p er_page=50

  • Is there any harm in installing an older version of Acrobat along with the new version?

    I'm running Acrobat v11.0.04 on my iMac. For my work, I have to create pdfs and upload them to a special server that then generates dynamic versions of them (blah blah blah... I don't really understand that part of it...). Anyway, it can't use PDFs created by this version of Acrobat... or the last few versions, for that matter. So... is there any harm in installing version 8 (which does work) on my iMac? I don't want to get rid of version 11... I want to have both.
    Thanks!
    julie

    I am not sure anyone knows what the server needs. We just know what doesn't work. What DOES work are the pdfs I compile (I have to combine two pdfs into one) are the ones created from version 8. I will ask if I can get specifications. It's confusing because I create the pdfs and send them to someone else. He uploads them to this server which is run by another company. So there are a lot of different levels involved. All I know is that every time a new version of Acrobat comes out, I create a test pdf and it doesn't work. I always have to go back to version 8. I recently bought a new computer and didn't want to install version 8... but unless we can figure out  a way to generate the "right" pdfs, it looks like I  might have to. Anyway, I'll see what I can find out.

  • Is there any Harm to switch the log file of production every minute

    Is there any Harm to switch the log file of production every minute as we r trying to build a replication process. We are plaining to swith the redologs everyminute and then FTP it and use it for replication to achive the relatime senario

    Is there a reason that you're not using DataGuard and/or Streams here? It would seem a lot easier to use the tools Oracle provides than to roll your own solution...
    Switching the log file every minute may have some negative performance implications in your environment.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Is there any way to use -useLegacyAOT option in FlashBuilder 4.6?

    I need to build my ipa with old version of Engine because i have some problems about loading images from outside. Since with Air 15 it is default engine, and i cannot quit Air 15 because of the iTunes specs. I cannot add -useLegacyAOT=yes to compiler options on Adobe Flash Builder 4.6 because it seems that it can be added at FB4.7.
    So is there any way to add this options when i am using FB4.6
    Thanks in advance.

    DeepakJ wrote:
    Hi,
    Is there any way to use a control break on Dept column in a SQL query to have a Output-2 instead of Output-1.
    Is there any way to modify the SQL query.
    SQL
    select dept, loc, count(*)
    from dept
    group by dept, locOutput-1
    Dept      Loc       Count(*)
    10         AA        1
    10         BB        2
    10         CC        2
    20         AA        2
    20         BB        2Output-2
    Dept      Loc       Count(*)
    10         AA        1
    BB        2
    CC        2
    20         AA        2
    BB        2
    Yes, using the <tt>lag</tt> analytic function and specified ordering of the data:
    select
        nullif(d.deptno, lag(d.deptno) over (order by d.deptno, d.loc, e.mgr nulls first)) deptno
      , nullif(d.loc, lag(d.loc) over (order by d.deptno, d.loc, e.mgr nulls first)) loc
      , e.mgr
      , count(*) n
    from
        dept d
          join emp e
            on d.deptno = e.deptno
    group by
        d.deptno
      , d.loc
      , e.mgr
    order by
        d.deptno
      , d.loc
      , e.mgr nulls first;
    DEPTNO  LOC       MGR   N
        10  NEW YORK         1
                      7782   1
                      7839   1
        20  DALLAS    7566   2
                      7788   1
                      7839   1
        30  CHICAGO   7698   4
                      7839   1
        40  BOSTON    7698   2
                      7902   1

  • Is there any information about using iCloud on a Mac with multiple user accounts (Mountain Lion)

    When upgrading to Mountain Lion, you are asked to sign in using your iCloud ID.  I don't understand how to set up the proper synching of "stuff" if your Mac has multiple user accounts, and they each have their own iCloud ID.
    The whole issue of supporting multiple users on a Mac and making everything easy to understand with regard to iTunes and iCloud is, in my opinion, currently in a state of disaster.  Apple needs to address this.  They have conveniently made it a non-issue on iPads by not allowing multiple users.  I can tell you that as one of the resident iOS and Apple experts in my office, most of the questions I get from others (not work-related) are on this topic.  It needs to be easier to understand and accomplish.
    Thanks in advance for any information you have on this subject.

    CS7981 wrote:
    is "Is there any benefit to using my Airport Express with my wireless router
    no.

  • I'm using TestStand/Labview to do a string value test. Is there any way to use a variable in the edit string value test?? This forces you to hard code a string to test against.

    I'm using TestStand 2.0/Labview 6i to do a string value test. Is there any way to use a string variable in the edit string value test instead of an actual string?? This forces you to hard code a string to test against.

    Hi ART,
    You can also use the LimitLoader step to load your string into to step similar to the Numeric Step type.
    There should be an example of this in the Resource Library | TestStand
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Is there any way to use Control Break in a SQL Query

    Hi,
    Is there any way to use a control break on Dept column in a SQL query to have a Output-2 instead of Output-1.
    Is there any way to modify the SQL query.
    SQL
    select dept, loc, count(*)
      from dept
    group by dept, locOutput-1
      Dept      Loc       Count(*)
      10         AA        1
      10         BB        2
      10         CC        2
      20         AA        2
      20         BB        2Output-2
      Dept      Loc       Count(*)
      10         AA        1
                 BB        2
                 CC        2
      20         AA        2
                 BB        2Thanks,
    Deepak

    DeepakJ wrote:
    Hi,
    Is there any way to use a control break on Dept column in a SQL query to have a Output-2 instead of Output-1.
    Is there any way to modify the SQL query.
    SQL
    select dept, loc, count(*)
    from dept
    group by dept, locOutput-1
    Dept      Loc       Count(*)
    10         AA        1
    10         BB        2
    10         CC        2
    20         AA        2
    20         BB        2Output-2
    Dept      Loc       Count(*)
    10         AA        1
    BB        2
    CC        2
    20         AA        2
    BB        2
    Yes, using the <tt>lag</tt> analytic function and specified ordering of the data:
    select
        nullif(d.deptno, lag(d.deptno) over (order by d.deptno, d.loc, e.mgr nulls first)) deptno
      , nullif(d.loc, lag(d.loc) over (order by d.deptno, d.loc, e.mgr nulls first)) loc
      , e.mgr
      , count(*) n
    from
        dept d
          join emp e
            on d.deptno = e.deptno
    group by
        d.deptno
      , d.loc
      , e.mgr
    order by
        d.deptno
      , d.loc
      , e.mgr nulls first;
    DEPTNO  LOC       MGR   N
        10  NEW YORK         1
                      7782   1
                      7839   1
        20  DALLAS    7566   2
                      7788   1
                      7839   1
        30  CHICAGO   7698   4
                      7839   1
        40  BOSTON    7698   2
                      7902   1

  • Is there any issue in using postChanges()?

    Is there any issue in using postChanges()?

    I can think of such case only if you pick memory id of some standard name. Anyhow I can't imagine this happens w/o running any standard report on you machine from your custom report. ABAP memory is user dependant so you have your own roll area wherein all run programs can communicate. If you don't run any standard report by means of SUBMIT, you don't have to worry about this aspect either.
    Futhermore if you run separate GUI session, or sinmply use /o in same session, you open new external session which gets its own new ABAP memory. So you don't affect your previous one at all.
    If you want to be extremely careful, use memory id of some custom, original name i.e. I always use such naming convention NAME_OF_PROGRAM_XXXX where XXX denotes its usage i.e. XXX = 'EMPLOYEES'. If I also don't use SUBMIT I am 100% sure no other program touches/flushes this memory.
    Don't believe your collegues and use ABAP memory whenever needed, but always consider context of program and where it lies in the memory. If they persist, please send them here to discuss this matter giving some good reason why they discourage you to do.
    BTW: This could be an issue with SAP Memory, but with ABAP no chance.
    Regards
    Marcin

  • Is there any manual about using DB2 as storage of Oracle BPEL Manager?

    Hi
    thank you for reading my post
    Is there any manual about using DB2 as database of ORACLE BPEL manager ?
    any one tried to port and test the system on DB2?
    Thanks.

    Hi,
    as you can read in the manual:
    http://download-east.oracle.com/docs/cd/B31017_01/integrate.1013/b28980/overview.htm#sthref26
    Oracle Database Lite, if you use the SOA Suite Basic installation option
    Oracle Database Lite is configured to support Unicode. DB_CHAR_ENCODING is defaulted to UTF8 in the polite.ini file.
    Oracle9i Database Server
    Oracle Database 10g
    The BPEL schema includes PL/SQL packages. They will not run on DB2...
    The datasources are configured to Oracle. You will have to change them to DB2...
    and it is not supported ;-)

  • Is there any method to use network printer without installing driver?

    We have some embeded win7 devices which we cannot install drivers to.
    Is there any method to use network printer without installing driver?

    Hi,
    Please read the following article:
       http://en.wikipedia.org/wiki/Device_driver
    You definitely need this middle man.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Is there any methods to use network printer without installing driver?

    We have some embeded win7 devices which we cannot install drivers to.
    Is there any methods to use network printer without installing driver?

    Hi,
    Please refer to your other post:
      http://h30434.www3.hp.com/t5/forums/replypage/board-id/Printing/message-id/77319
    Thanks.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Is there any chance to use the iMac additionally to the Cinema Display as an external display for the MacBook,

    I do have a MacBook 13" connected to the Cinema Display and this works fine. As I do also an old iMac which I do not use any more, is there any chance to use this iMac as an additional monitor next to the Cinema Display. I would be great to have both of them running in parallel and bring the iMac to an use again.

    Use a product such as ScreenRecycler.
    (64540)

  • Is there any known problem using Oracle SQL Developer 3.0.04 with Java 1.7?

    I'm new to Oracle. I have installed Oracle SQL Developer 3.0.04 and Java 1.7. When I run Oracle SQL Developer, I will get the window Running this product is supported with minimum Java version of 1.6.0_04 and a maximum version less than 1.7. This product will not be supported....
    Is there any known problem using Oracle SQL Developer 3.0.04 with Java 1.7?
    I have already downloaded Java 1.6 but don't know whether I need to uninstall Java 1.7 first. If don't need to uninstall Java 1.7, how can I set Oracle SQL Developer to run with Java 1.6?
    Thanks for any help.
    Edited by: 881656 on Aug 25, 2011 11:22 AM

    Hi,
    One prior post discussing the use of Java 7 is:
    SQL Developer 3.0  and Java SE 7?
    There is no need to uninstall any Java version (except if you have disk space constraints) and no problem switching between Java versions. This may be controlled in the sqldeveloper.conf file in your ...\sqldeveloper\sqldeveloper\bin directory via the SetJavaHome line. For example:
    #SetJavaHome ../../jdk
    SetJavaHome C:/Program Files/Java/jdk1.6.0_26
    #SetJavaHome C:/Program Files/Java/jdk1.7.0Regards,
    Gary Graham
    SQL Developer Team

  • Is there any way to use a file transfer protocol to upload files to icloud?

    Is there any way to use a file transfer protocol to upload files to icloud?

    Unfortunately, no.
    You will need a 3rd party web host to upload your websites to. Depending on the version of iWeb you are using you have a couple of publishing options:
    iWeb ’09 (3.0.4) you can publish to an FTP Server or a local folder. ( With the built in FTP in iWeb you will end up with an address like “www.YourDomain.com/sitename/Home.html )
    iWeb ’08 you can publish your website to a local folder
    Basically all Web Hosting companies are iWeb-compatible.
    If you’re looking for a good hosting I would recommend IX Web Hosting I have been using them to host my own websites for several years now and that their customer support is awesome too.
    http://jeffnitschke.com/IXWebHosting.html
    http://jeffnitschke.com/wordpress/2012/06/how-do-i-move-my-mobileme-site-ix-web- hosting-blog/
    "I may receive some form of compensation from my recommendation or link."

Maybe you are looking for

  • Imputation type G in a purchase order

    Hi, could you please help me with this point When we have a type g imputation in a single purchase order, the storage location does not go back during the reception. Is it a  configuration point ? Thanks a lot

  • TS3274 when I click on the video app, the screen goes black

    When I click on the Video Button, the screen appears black.  I just synced my iPad and it is still not working.  Any suggestions?

  • Subcon Quota Arrangement behavior during MRP

    Dear Gurus, Currently, we have a scenario wherein during subcon process there can be 3 Vendors active. During MRP, we would like to have an output as per below: Requirement: 1500 Vendor A: capacity 500 - priority 1 Vendor B: capacity 700 - priority 2

  • AI Document-View synchronization issue

    My plugin works as following: 1. Delete a layer named "X1" 2. Add a layer "X1" and also add some art on that document 3. RedrawDocument() 4. SyncDocument from AIDocumentSuite 5. Saves changes through code 6. SyncDocument from AIDocumentSuite 7. Redra

  • Trouble adding more than 25 pictures to iMovie

    Hi I am a new Mac user but have used the Roxio software for 2 years so quite used to the process. I am trying to create a project with about 85 jpegs (all have been recently downloaded to iphoto from a Canon EOS camera) and 10 movie clips. Everytime