HTML Formatter

Hi
does anyone know of a real good html kit which is a freeware
and helps u in making screens that look same when designed
and also when displayed in applications :)
Thanks

try HomeSite

Similar Messages

  • HTML formatter in cfml-files

    Hi everybody,
    How is HTML formatting managed in cfml-files. Currently on formatting <h*>-Tags got a newline and I would prefer the tag to stay on one line without break.
    greets

    I'd like to follow up on that
    If I write the following line in CFB2
       <h2>Slides</h2>
    and then press <ctrl>-<shift>-F to format the code, I get
       <h2>
           Slides
       </h2>
    Now I would like to teach CFB2 to keep
       <h2>Slides</h2>
    How do I do that ?
    I have been playing around a lot with the Formatters in the Preferences. There it works - but not in real editor life :-(
    -Didi

  • Opening New Browser window for click event on an image

    hi all,
    I want someone to help me out solving the problem of opening
    a new browser window on the mouse click event of an image or a
    button etc.... The new window would contain the datagrid details
    from the main window, but in an expanded form. If at all there is a
    solution, I even want to know whether there is anyway for sizing
    the poped up window,because I dont want the new poped up window to
    cover the entire screen.
    For getting better idea of my problem, the best example I
    could give is the popup window that appears when we click on the
    preview button while posting the message to the forum.
    Someone please do help me out in this regard.
    Thanks,
    amar.

    I'd definitely try to use a Flex popup... but the
    flash.net.navigateToURL method is a simple way to open a popup
    window in a new browser. You can pass any data needed by the new
    page using the URLRequest and/or URLVariables. The URL you navigate
    to could, of course, be another Flex application if necessary. I
    use this only when I need to open a popup window on another site,
    or an HTML formatter report or something similar.
    Concerning yourself with the size of the popup window may be
    a bad design choice also. I, for example, have my browser
    configured to open all popups in a new tab regardless of sizing
    constraints imposed by the designer. If it is absolutely necessary
    for you to have control over the size of your popup window, you
    should follow the advice given by others and use a Flex
    popup.

  • Cache problem for servlet opening new browser window

    Requirement:
    I have JSP page say summary.jsp with link "print account summary"
    When user clicks on this link, new browser open with PDF document of summary.jsp
    This new browser window should not have address bar and toolbar.
    Solution:
    Servlet called PrintSummary which sets contenttype=application/pdf and sends the data to outputstream.
    href of link is
    Java script function is:
    function openWindow(url){
    window.open(url,'blank','toolbar=no')
    Problem:
    Since the URL of this new window is
    http:// host:portnumber/PrintSummary
    Even if I click the "Print summary" link for account2,
    being the same URL (http:// host:portnumber/PrintSummary) it accesses the existing page in the cache which is created for account 1.
    In href if I just use servlet url as
    I get the expected behaviour but then I don't have control on browser appearance and browser window will be with address bar and toolbar.
    The only option I could think of was changing URL as follows:
    <% String url ="javascript:openWindow('PrintSummary? var1="+ Math.random()+"')";
    So that URL is different all the time
    Is there any way to solve this problem?
    Thanks in advance
    M.

    I'd definitely try to use a Flex popup... but the
    flash.net.navigateToURL method is a simple way to open a popup
    window in a new browser. You can pass any data needed by the new
    page using the URLRequest and/or URLVariables. The URL you navigate
    to could, of course, be another Flex application if necessary. I
    use this only when I need to open a popup window on another site,
    or an HTML formatter report or something similar.
    Concerning yourself with the size of the popup window may be
    a bad design choice also. I, for example, have my browser
    configured to open all popups in a new tab regardless of sizing
    constraints imposed by the designer. If it is absolutely necessary
    for you to have control over the size of your popup window, you
    should follow the advice given by others and use a Flex
    popup.

  • EWS 1.2, Exchange 2010 SP2/SP3 - Appointment message body gets wrecked on update

    We're seeing a very irritating issue with EWS and Exchange when updating the message body on an Appointment. To head it off, it does not appear to be the bug detailed here:
    http://blogs.msdn.com/b/dhruvkh/archive/2012/05/18/sending-appointments-from-ews-apps-where-did-my-html-go.aspx
    It happens on both 2010 SP2 and SP3. We're creating Appointments with some HTML formatting the message body. Nothing fancy, just a few tables and a little bit of inline styling (since a css style header disappears into a black hole when you try to use it
    as part of the Appointment message body). We're able to make a nice-looking message body that goes out in the meeting requests. Well, with the exception of downlevel text at the top, but there doesn't seem to be much we can do about that short of a double-tap
    save.
    The problem comes into play if we need to update the message body on the Appointment. All of this is automated, so the user cannot directly edit it. If we make any changes to the message body, it completely wrecks the HTML. It's still an HTML-formatted message,
    but much of the styling is lost and it looks awful. This happens without fail when we alter the message body of an Appointment with any considerable level of HTML formatting. BodyType is HTML, of course. I've done some digging on the best body algorithm and
    some of the MAPI properties related to it. Some interesting bits of note:
    When the Appointment is first saved, PidTagRtfInSync is true. PidTagNativeBody is 2, which indicates an RTF message. PidTagBody is present. PidTagRtfCompressed is present. However, PidTagBodyHtml is not present. After updating the Appointment with a message
    body edit, PidTagBodyHtml is present, but now PidTagRtfInSync is false and PidTagNativeBody is 3.
    If PidTagBodyHtml is set directly as an extended property instead of setting the message body via the EWS Appointment object, then the formatting is wrecked right out of the gate. At least it's consistent that way...
    Attempting to set PidTagNativeBody manually had no effect.
    When viewing the PR_BODY_HTML contents between a good and bad message, the good one will contain the transformed HTML. It doesn't look much like what we had initially handed to it, but gets changed in the conversion process. The bad one is much closer to
    what we wrote in actual HTML, but has still had much of the styling removed. It's as if creating the Appointment does the RTF conversion, but any subsequent changes use a completely different code path serverside and there does not appear to be any way around
    it short of even more guess and check with EWS and Exchange chewing up HTML. This is complicated by being unable to find any documentation that details how and what gets changed, discarded, etc in the process.
    This will always affect requests, but only seems to affect Appointments in the calendar of attendees if the body includes the downlevel text. Appointments without the downlevel text appear to survive updates with their formatting intact. Appointments with
    downlevel text get their formatting wrecked with updates.
    Has anyone run into this before? It was painful enough when we found that our previously-used email HTML formatter wouldn't work with EWS and everything had to be inlined, but now it seems that there are even more inexplicable problems to get around. Is
    there a way to update the message body without this happening?

    Ugh... hopefully I can ask you gentleman how to solve my issue.
    I recently implemented code to allow our users to turn-on HTML-encoding for when our Sync'ing app goes to add/update items for them into Exchange.
    If thev'ye turned-on HTML formatting, when I create a CalendarItemType's (in C# based off the EWSProxies.EWS.Itemtype) the Body.Value is being set with a string which contains very minimal HTML tags... just <br>'s instead of "\r\n" and for
    URL link values we are embedding into the text, I'm encapsulating those within an <a href> 
    Example: <a href="http://TheWebSite.com/EventDisplay.aspx?uri=1234">Event Display Link</a>
    My problem is... when I retrieve an item from Exchange... there is a huge amount of extra HTML encoding it wraps around everything! 
    By inspecting in the debugger... I've discerned that :
    For Appts... the main bunch of text that I inserted in an item when originally creating it is contained just within the <div> tag.
    For Tasks... the main bunch of text that I inserted in an item when originally creating it is contained just within the <body> tag (and on these there is no <div> tag created).
    I was able to use the HTML Agility Pack and load this Body.Value string into the enhanced HtmlDocument object.  I first attempt to parse first for the <div> nodes contents. If the <div> is not-null that's an Appt.  If the <div>
    is null, I instead parse out the <body> nodes contents, and those are Tasks.
    I noticed for Appts :
    For every <br> tag I had in my original text.. it appends two consecutive "\r\n" 's after it!  No problem I can just do a Replace("\r\n", "")  and zap those. But then the <a href> I have in there... it
    encapsulates it with a <font> node where it sets a color for the link and also an underline <u> node.  I can handle the <u> nodes easy enough with a Replace("<u>","") and a Replace("</u>", ""); 
    But what about the damn <font> node?  It's in the format of <font color=\"blue\"></font> and I'm sure the \"blue"\ part could be different for every user.
    I noticed for Tasks :
    It prepends a "\r\n" just inside the begininng<body> tag. Each of the original <br> tags gets an "\r\n" appended behind it.  and for the TaskType for the <a href> node IT DOES NOT encapsulate it with the <font>
    and <u> nodes as it does for the Appt.
    How can I stop it from changing the Body content when retrieving it?  Will it not change anything if I go the extra mile and make sure to wrap everything with an <html> and <body> node when initially creating the items?
    Any and all help on this issue is sorely appreciated.
    Thank You,
    -G

  • Downloading problem in classical report

    Hello Experts,
    I had made one Z classical report. The output of the report is absolutely perfect.
    The problem is when I am downloading this file as spreadsheet or HTML formatt, then the Item level data is coming one column forward.
    Like, suppose these are four columns of my report,then in excel sheet data is appearing as:
    S.no          Ref no.                    date                  name
                       1                        900556               22/11/2011          ABC
                       2                        900567               22/11/2011          XYZ
    But the data in output of the report is showing correctly.
    How should I correct this.
    Please help.
    Edited by: shubh_ag on Nov 22, 2011 1:18 PM

    Hi shubh,
    Use concatenate and pass all the header data into one string. Use cl_abap_char_utilities=>horizontal_tab
    In your case
    Concatenate
    u2018S.Nou2019  cl_abap_char_utilities=>horizontal_tab
    u2018Ref NOu2019 cl_abap_char_utilities=>horizontal_tab
    Into w_string
    cl_abap_char_utilities=>newline
          into text.
    For item data also use same procedure.
    Structure-s.no  cl_abap_char_utilities=>horizontal_tab
    Into text.
    And use the below function
    call function 'SCMS_STRING_TO_XSTRING'
        exporting
          text   = text
        importing
          buffer = xtext.  wdr_task=>client_window->client->attach_file_to_response(
    **path to the word file
        i_filename = 'WDP.xls'
    String Variable
        i_content =  xtext
    File Type
        i_mime_type = 'EXCEL' ).
    Thanks are Regards.
    sivaram Patruni.

  • Streaming html with images

    Hi there!
    I am having some trouble with Data Service that I have created, what it basically does is use templates to generate an HTML page by replacing placeholders and fitting sections together depending on the criteria.
    One template looks like this:
    <html>
    <head>
    <meta http-equiv="refresh" content="60" />
    <style type="text/css">
    </style>
    </head>
    <body>
    <div class="CSSTableGenerator" >
    <table>
    <tr>
    <td>Kiron Interactive<img src="{EventCardImagePath}\Images\Kiron_Logo.png" alt="Mountain View"></td>
    </tr>
    <tr>
    <td>Event Card for {EventCardDateDOW}, {EventCardDateDay}/{EventCardDateMonth}/{EventCardDateYear}</td>
    </tr>
    <tr>
    <td>{EventCardEvents}</td>
    </tr>
    </table>
    </div>
    </body>
    </html>
    What I am having issues with is getting the image to display in the browser, the image is presented as 
    {EventCardImagePath}\Images\Kiron_Logo.png
    in the template, it can be any name or popular format (JPG or PNG)
    Currently this is how I am returning the HTML string generated
    /// <summary>
    /// Method used to Get GSEvents and pass them to the formatter, HTML is then returned using current date
    /// </summary>
    /// <param name="eventType"></param>
    /// <returns>HTML Event Card string</returns>
    public System.IO.Stream HTMLEventCardUpcoming(string eventType)
    try
    //Compile DateTime
    DateTime startTime = DateTime.Now;
    DateTime endTime = DateTime.Now.Date;
    endTime = endTime.AddDays(1).AddTicks(-1);
    //Get the events
    //Pass events to Adapter
    EventCardFormatterAdapter eventform = new EventCardFormatterAdapter();
    object htmlEventString;
    bool htmlEventStringbool = eventform.TryFormatEventCard(events, startTime, EventCardFormatterAdapter.EventCardFormat.html, out htmlEventString);
    string htmlString = htmlEventString.ToString();
    byte[] resultBytes = Encoding.UTF8.GetBytes(htmlString);
    WebOperationContext.Current.OutgoingResponse.ContentType = "text/html";
    return new MemoryStream(resultBytes);
    catch (Exception e)
    Preferable I would like to be able to specify the local path of the image in the template that's whats currently being done, this is because the template is also used to generate PDFs and that needs the local path but thats working perfectly. Any ideas on
    how I can accomplish this?
    At the moment images are only working in IE
    Thanks in advance

    Hi
    DaveGreen,
    Based on your description, your case related to Web HTML. I am afraid that you posted in an inappropriate forum.  Please post in the related forum.
    Here is the link
    http://forums.asp.net
    Thanks for your understanding.
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to convert HTML to MHT format?

    Hi All,
    For one application, I am writing a code which will convert email HTML format to MHT format and post to a channel.I am able to convert the plain text mail. But, I am stuck when its sending an signature or image with the mail. Its not able to find the url of the image or signature which is sent along with the mail.Can anyone help on this topic.I need it to be done as early as possible.

    I have no idea what MHT format is, but unless it's very similar to HTML, the solution will probably entail using an HTML parser and a MHT formatter, and perhaps some code to modify the output of the former to fit into the input of the latter.

  • How to use formatter if binding syntax is not complex

    Hello all,
    i know how to use formatters in UI5 HTML views when data-sap-ui-xx-bindingSyntax="complex"
    But currently i have an app where the bindingSyntax is not set to complex, and for certain reasons i don't want to change that at the moment.
    How do we use formatters in non-complex binding mode? I cannot find anything about that in the docs. Constructs like data-something="{path: ' ', formatter : ' ' }" seem not to work in non-complex mode.
    Thanks in advance,
    Jan

    Hi,
    you can use formatter function. refer SAPUI5: How to directly bind two data properties into one control property using OData model? and javascript - SAPUI5: How to directly bind two data properties into one control property using OData model? - Stack Overf…
    Regards,
    Chandra

  • Ant + Junit + html reports question

    Hi,
    I am successfully creating reports from my test suite,
    however instead of listing all classes in the left frame of the html report of all test classes included in the suite, it shows the suite class name and when I click on it it lists all 250 or so test method results.
    I want to be able to click on each test case results and view its methods.
    I have seen this before but wondering how to achieve it, is it a speacial element you must use or an attribute or something like that.
    here is my code,
    <target name="tests" depends="load.im.test.classpath" description="Run tests ant create report">
                        <property name="testinputs.dir" location="C:\johnTemp\testreports"/>
                        <mkdir dir="${TEST_HTML_OUTPUT}"/>
                        <mkdir dir="C:\johnTemp\testreports"/>
                            <junit printsummary="yes"
                                   fork="yes"
                                   forkmode="perBatch"
                                   haltonfailure="no"
                                   showoutput="yes">
                              <formatter type="xml" />
                              <classpath path="../bin/classes/"/>
                               <classpath path="../../common/bin/classes"/>
                               <classpath refid="im.test.path"/>
                               <batchtest todir="${TEST_HTML_OUTPUT}">
                                            <fileset dir="${TEST_CLASSES}">
                                                <include name="**/**ManagerTest**.class"/>
                                            </fileset>
                         </batchtest>
                            </junit>
                            <junitreport todir="${TEST_HTML_OUTPUT}">
                              <fileset dir="${TEST_HTML_OUTPUT}">
                                <include name="TEST-*.xml"/>
                              </fileset>
                               <report format="frames" todir="${TEST_HTML_OUTPUT}"/>
                              <report todir="${TEST_HTML_OUTPUT}"/>
                            </junitreport>
                             <jar destfile="${TEST_OUTPUT}/junitResults.jar" basedir="${TEST_HTML_OUTPUT}"/>
        </target>Thanks for any advice?

    Hmmm...
    I'm getting the same problem with Ant 1.6 installed in /opt/ant. They've changed things in 1.6, but they claim it should work similar...
    I'll search the docs.
    EDIT: SOLUTION:
    I don't know why this was working for me before and isn't now, but I found the solution. junit.jar must be placed in $ANT_HOME/lib because of strange classloader issues. I guess this must be a recent "bug", as it wasn't happening with earlier versions of ant.
    I'm using my local build of ant because it's more recent, but I think hapy's build would also work with junit if you plared junit.jar in /usr/lib.
    Dusty

  • MSHTML IHTMLTxtRange.pasteHtml() and FEATURE_BROWSER_EMULATION=11001 = wrong html

    If I enable emulation of IE11 for my application in registry here:
    HKCU\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION\myAppName.exe
    and insert html into WinForms WebBrowser control using function IHTMLTxtRange.pasteHtml(), then text between html elements is interpreted probably wrong:
    -spaces transformed to <p> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>
    -line breaks between html elements transformed to <br/> tags.
    As a result I get wrong html.
    Test application:
    Form1.cs:
    public partial class Form1 : Form
            public Form1()
                //enable IE11 mode
                string fileName = System.IO.Path.GetFileName(Process.GetCurrentProcess().MainModule.FileName);
                using (RegistryKey key = Registry.CurrentUser.CreateSubKey(
                    @"Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION",
                    RegistryKeyPermissionCheck.ReadWriteSubTree))
                    key.SetValue(fileName, (UInt32)11001, RegistryValueKind.DWord);
                InitializeComponent();
            private void button1_Click(object sender, EventArgs e)
                //enable design mode
                webBrowser1.Navigate("about:blank");
                IHTMLDocument2 mshtmlDoc2 = webBrowser1.Document.DomDocument as IHTMLDocument2;
                mshtmlDoc2.designMode = "On";
                //insert html
                while (mshtmlDoc2.readyState != "complete")
                    Application.DoEvents();
                mshtmlDoc2.body.innerHTML = "<p>paragraph 1</p>";
                IHTMLTxtRange bodyRange = (mshtmlDoc2.body as IHTMLBodyElement).createTextRange();
                bodyRange.collapse(Start: false);
                bodyRange.pasteHTML("<p>paragraph 2</p>\n\n\n        <p>paragraph 3</p>");
                //show result html
                textBox1.Text = webBrowser1.DocumentText;
    Form1.designer.cs:
    partial class Form1
            /// <summary>
            /// Required designer variable.
            /// </summary>
            private System.ComponentModel.IContainer components = null;
            /// <summary>
            /// Clean up any resources being used.
            /// </summary>
            /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
            protected override void Dispose(bool disposing)
                if (disposing && (components != null))
                    components.Dispose();
                base.Dispose(disposing);
            #region Windows Form Designer generated code
            /// <summary>
            /// Required method for Designer support - do not modify
            /// the contents of this method with the code editor.
            /// </summary>
            private void InitializeComponent()
                this.webBrowser1 = new System.Windows.Forms.WebBrowser();
                this.button1 = new System.Windows.Forms.Button();
                this.textBox1 = new System.Windows.Forms.TextBox();
                this.SuspendLayout();
                // webBrowser1
                this.webBrowser1.Location = new System.Drawing.Point(12, 12);
                this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
                this.webBrowser1.Name = "webBrowser1";
                this.webBrowser1.Size = new System.Drawing.Size(626, 190);
                this.webBrowser1.TabIndex = 0;
                // button1
                this.button1.Location = new System.Drawing.Point(12, 338);
                this.button1.Name = "button1";
                this.button1.Size = new System.Drawing.Size(143, 23);
                this.button1.TabIndex = 1;
                this.button1.Text = "Insert html";
                this.button1.UseVisualStyleBackColor = true;
                this.button1.Click += new System.EventHandler(this.button1_Click);
                // textBox1
                this.textBox1.Location = new System.Drawing.Point(12, 208);
                this.textBox1.Multiline = true;
                this.textBox1.Name = "textBox1";
                this.textBox1.Size = new System.Drawing.Size(626, 124);
                this.textBox1.TabIndex = 2;
                // Form1
                this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
                this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
                this.ClientSize = new System.Drawing.Size(652, 373);
                this.Controls.Add(this.textBox1);
                this.Controls.Add(this.button1);
                this.Controls.Add(this.webBrowser1);
                this.Name = "Form1";
                this.Text = "Form1";
                this.ResumeLayout(false);
                this.PerformLayout();
            #endregion
            private System.Windows.Forms.WebBrowser webBrowser1;
            private System.Windows.Forms.Button button1;
            private System.Windows.Forms.TextBox textBox1;
    As a result I get the following html which, I think, is wrong:
    <P>paragraph 1</P>
    <P>paragraph 2</P>
    <P><BR><BR><BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </P>
    <P>paragraph 3</P>

    Hi,
    remove the exogenous whitespace from your markup strings. IE10 and later support textnodes.
    is whitespace (space+NL)
    "&nbsp;<br/>" is the markup equivalent
    <elm>
     <span>content<span>
    </elm>
    document.queryselector('elm').firstChild.nodeName
    #textnode
    is not the same as
    <elm><span>content</span></elm>
    document.queryselector('elm').firstChild.nodeName
    SPAN
    In the Developer tool of webkit browsers you can turn on whitespace formatter to display the control characters (white space) that is in the source markup.
    Make sure your web pages contain a utf-8 content-type meta
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
    Rob^_^

  • UIwebview load local html file problem

    Hi,
    load local html file into UIwebview the TD cell data can't display, as attached the "2817 MODEL" column data lost on screen:
    The local html file souce as:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html lang="en">
      <head>
        <title>IBM z196 zEnterprise 2817 Mainframe Reference - Technology News</title>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
        <meta http-equiv="Content-Style-Type" content="text/css">
        <meta name="robots" content="index,follow">
        <meta name="Author" content="Hesh Wiener">
        <meta name="Formatter" content="Heshomatic 6.2">
    <STYLE TYPE="text/css">
    <!--
    BODY
      font-family: Arial, Helvetica, sans-serif;
      font-size: 9pt;
    A:link{color:white}
    A:visited{color:yellow}
    -->
    </STYLE>
      </head>
      <body>
        <h2>
          IBM Mainframes:<br>
           IBM z196 zEnterprise 2817 Mainframe Reference
        </h2>
        <table border="1" style="border-collapse:collapse;" summary="2094 series economic specs">
          <tr>
            <th rowspan="2">
                2817  <br>
                 MODEL  
            </th>
            <th rowspan="2">
              FIRST<br>
               AVAIL
            </th>
            <th rowspan="2">EST  INIT<br>
            US PRICE  </th>
          <th rowspan="2"> EST INIT <br>
          MIN US MAINT</th>
            <th rowspan="2">
              APPROX MIPS
            </th>
            <th rowspan="2">
              SW PRICE<br>
               MSU
            </th>
            <th>
              LSPR RELATIVE PERFORMANCE
            </th>
          </tr>
          <tr>
            <th>
              MI z/OS 1.11
            </th>
          </tr>
      <tr>
        <td>2817-401</td>
        <td>3Q 10</td>
        <td>$975,000</td>
        <td>$6,280</td>
        <td>240</td>
        <td>30</td>
        <td>0.43</td>
      </tr>
      <tr>
        <td>2817-402</td>
        <td>3Q 10</td>
        <td>$1,187,000</td>
        <td>$6,729</td>
        <td>459</td>
        <td>58</td>
        <td>0.82</td>
      </tr>
      <tr>
        <td>2817-501</td>
        <td>3Q 10</td>
        <td>$1,244,000</td>
        <td>$7,524</td>
        <td>588</td>
        <td>74</td>
        <td>1.05</td>
      </tr>
      <tr>
        <td>2817-403</td>
        <td>3Q 10</td>
        <td>$1,385,000</td>
        <td>$8,346</td>
        <td>672</td>
        <td>85</td>
        <td>1.20</td>
      </tr>
      <tr>
        <td>2817-601</td>
        <td>3Q 10</td>
        <td>$1,423,000</td>
        <td>$9,434</td>
        <td>768</td>
        <td>97</td>
        <td>1.37</td>
      </tr>
      <tr>
        <td>2817-404</td>
        <td>3Q 10</td>
        <td>$1,570,000</td>
        <td>$10,665</td>
        <td>879</td>
        <td>110</td>
        <td>1.57</td>
      </tr>
      <tr>
        <td>2817-405</td>
        <td>3Q 10</td>
    </html>
    Please help. thanks
    Regards,
    HC

    add colspan into td tag and try it got same problem, I just discovered the td data is numeric it can't display, change td data to alphanumeric it workable to normal display.
    below td tag data is unworkable:
    <td>2817-401</td>
    <td>2817401</td>
    change to below is workable:
    <td>2817*401</td>
    <td>281740A</td>
    <td>2817-401A</td>

  • How to aviod html tags from Report column heading while export to csv

    Hi All,
    How to aviod html tags from Report column heading while export to excel.
    We used like Employee<br> Department in column heading, but the problem is the <br> tag also exporting into csv file.
    If any column data 3/2009 formatt the it will exporting as marh 2009.
    Please help on this.
    Thanks,
    Nr
    Edited by: pnr on Jul 5, 2011 5:00 AM

    Hi Nr
    Here is how I approached this problem.
    Go to report attributes tab
    under column attributes check PLSQL radio button.
    Create a function to return the heading of your report as shown below in your database.
    create function get_heading return clob as
    v_request VARCHAR2(20) := V('REQUEST');
    v_col_heading CLOB;
    begin
    IF INSTR(v_request,'FLOW_EXCEL_OUTPUT',1) > 0 THEN
    v_col_heading := 'Employee Number:Employee Name';
    ELSE
    v_col_heading := 'Employee breaktag Number:Employee break tag Name';
    END IF;
    return v_col_heading;
    end;
    Type the function below under ( Function returning colon delimited headings:) as follows.
    return get_heading;
    Similarly for data base it on PLSQL function body returning SQL and follow the same approach as headings.
    Hope this helps.
    Thanks
    Sukarna
    Edited by: user513776 on Jul 5, 2011 2:24 PM
    Edited by: user513776 on Jul 5, 2011 2:27 PM

  • Is there a way to re formatt videos from a droid to view on i phone?

    is there a way to re formatt videos from a droid to view on i phone?

    and the video formats the iPhone 4S supports can be found here:
    http://www.apple.com/iphone/specs.html
    Regards.

  • Flash-style Dreamweaver code formatter?

    Is there some formatter I can use to visually clean up my
    code in the same way that flash indents certain tags? Maybe a html
    text editor someone can recommend or even something hidden within
    dreamweaver?
    Thanks

    COMMANDS Apply Source Formatting
    "15266" <[email protected]> wrote in message
    news:e69euq$3ek$[email protected]..
    > Is there some formatter I can use to visually clean up
    my code in the same
    > way
    > that flash indents certain tags? Maybe a html text
    editor someone can
    > recommend
    > or even something hidden within dreamweaver?
    >
    > Thanks
    >

Maybe you are looking for