Can't insert custom HTML or change social widgets to update Phone layout

MUSE 2014.2.1.10, CL 787362  on  Windows 8.1  i7 processor 24 GB RAM
Anytime I try to insert custom HTML in the phone layout pages I get a window that says webpage could not be found  in a window that is too wide for the screen size and can't be re-sized!!!
I am adding scripts, inline css and custom form code.  Need to republish changes and can't on mobile layout.  Its local code but I get The webpage cannot be found error!!! It also does this with the built in social widgets....  The code is there in the page on export but you can't preview and since I can't resize the box to 380px wide ( it jumps back open) it throws off my layout when export page.   This is not just custom HTML but upon changing or adding any of the built in social widgets such as Google maps, Facebook or  other social media.  Forms, buttons, menus and compositions no problems... they work just as they normally would.
Preview mode just gives me the whole page as blank when I try to preview the page in Muse.  HELP  I need to update the address and the form to match the desktop site but the error is persistent! and undo does not revert it back to previous content  I just get the webpage cannot be found box even on undo!!!!

The SECOND picture in my previous post  IS THE PREVIEW... NOTHING appears when I try to view the page in phone view!!!!
HERE IS THE CODE!!!!!
<style type="text/css">
input[type="text"]
color: #323232;
border: 1px solid #E0E0E0;
margin: 5px;
fieldset {
border:1px solid #E0E0E0;
padding:10px;
width: 350px;
legend {
  padding:10 px 10 px;
  border: none;
  color:323232;
  margin:10px;
textarea
  width: 328px;
  min-height: 14px;
  border-width: 1px;
  border-style: solid;
  border-color: #E0E0E0;
  padding: 6px;
  color: #323232;
  line-height: 14px;
  margin: 10px;
button[type="submit"]
  text-indent:0;
  border:1px solid #E0E0E0;
  display:inline-block;
  background-color:white;
  color:#323232;
  font: Arial,  sans-serif;
  font-size:12px;
  font-weight:bold;
  font-style:normal;
  height:25px;
  line-height:25px;
  width:125px;
  text-align:center;
  margin-top:5px;
button[type="submit"]:hover {
              color:#679E11;
button[type="submit"]:active {
  position:relative;
  top:1px;
label.label-top {
display: block;
margin-top:5px;
</style>
<form  name="emailForm" id="emailForm" onsubmit="return validateform();" action="contact-us.asp" method="post">
<fieldset>
  <legend>E-Mail</legend>
  <div>
  <label class="label-top" for="name">
   Enter your Name:
  </label>
  <input type="text" name="name" id="name" size="30" class="inputbox" value="" />
  </div>
  <div>
  <label class="label-top" for="mail">
   E-mail address:
  </label>
  <input type="text" id="mail" name="mail" size="30" value="" class="inputbox" maxlength="100" />
  </div>
  <div>
  <label class="label-top" for="subject">
   Message Subject:
  </label>
  <input type="text" name="subject" id="subject" size="30" class="inputbox" value="" />
  </div>
  <div>
  <label class="label-top" for="text">
   Enter your Message:
  </label>
  <textarea cols="50" rows="10" name="text" id="text" class="inputbox required"></textarea>
  </div>
  <div>
  <input type="checkbox" name="email_copy" id="email_copy" value="1"  />
  <label for="email_copy">
  E-mail a copy of this message to your own address. </label>
  </div>
  <div>
  <button class="button validate" type="submit">Send</button>
  </div>
</fieldset>
</form>
<script type="text/javascript">
function validateform()
var emailRegEx = /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i;
    if (document.emailForm.name.value == '') {
        alert('Name is required');
  return false;
    else if (document.emailForm.mail.value==''){
        alert('Address cannot be blank');
  return false;
   else if (document.emailForm.mail.value.search(emailRegEx) == -1) {
          alert("Please enter a valid email address.");
     return false;
    else if (document.emailForm.text.value==''){
        alert('Message field cannot be blank');
  return false;
  else
      alert('Thank you for contacting Argus Talent.');
  return true;
</script>

Similar Messages

  • How to insert custom HTML before /body ?

    I love that I can insert custom HTML in the <head> of a page in Muse.
    However, I need to add custom HTML just before the end of <body>.
    Namely, I want to insert custom Jquery calls just before </body>. I can't do this in the <head>.
    However, other uses for other people might include inserting Analytics tracking code before </body>, as this is more optimum than in the <head>.
    I've tried using a Custom HTML widget, but even if I put it in the footer of my page, it still ends up appearing in the rendered HTML before Muse's Javascript. I need it to come after Muse's Javascript.
    Thanks in advance.

    Hi Harry,
    Please check this discussion, you might find it helpful in making the jQuery calls.
    How to (make best) use external js library from html object (need help from dev)
    http://forums.adobe.com/thread/1213057
    - Abhishek Maurya

  • How can we use Custom MessageBox in SelectionChangedEvent of LongListSelector for Windows Phone 8

    Dear Sir/Madam,
    How can we use Custom MessageBox in SelectionChangedEvent of LongListSelector for Windows Phone 8.
    Actually my problem is that When i am using Custom  MessageBox in SelectionChangedEvent of LongListSelector,when i am click Open(Left Button) it's working fine and navigated correctly,But when i am Click the No(Right Button) then it stayed in same page
    but all that page is in stuckup i mean that page is not working and not doing any event.
    My C#.net Code
    private async void userPageLongListSelector_SelectionChanged(object sender, SelectionChangedEventArgs e)
    if (e.AddedItems.Count > 0)
    if (userPageLongListSelector.SelectedItem == null)
    return;
    if (dbTenMin == null)
    dbTenMin = new Database(ApplicationData.Current.LocalFolder, "tenMInDBSchema.db");
    await dbTenMin.OpenAsync();
    var res = (sender as LongListSelector).SelectedItem as _10Min._10MinClass.minUserPages;
    var resIndex = (sender as LongListSelector).ItemsSource.IndexOf(userPageLongListSelector.SelectedItem);
    string selectedPageName = res.userPages.ToString();
    string selectedPageDesignUser = res.pageDesignUser.ToString();
    int selectedIndex = resIndex;
    CustomMessageBox messageBox = new CustomMessageBox()
    Caption = "Message...!",
    Message = "This form need offline datalist,Please load now.",
    LeftButtonContent = "Open",
    RightButtonContent = "No"
    messageBox.Dismissed += (s1, e1) =>
    switch (e1.Result)
    case CustomMessageBoxResult.LeftButton:
    string uidAndpwd = _10MinClass._10MinStaticClass.csUidAndPwd.ToString();
    _10MinClass._10MinStaticClass.csDataListPageDetails = selectedPageDataDetailsForSchema.ToString();
    _10MinClass._10MinStaticClass.csAllDataLists = offlineDataBaseDataListNam;
    _10MinClass._10MinStaticClass.csNotCreatedSchemaNameOfDBList = notCreatedDataLists;
    userPageLongListSelector.SelectedItem = null;
    if (dbTenMin != null)
    dbTenMin.Dispose();
    dbTenMin = null;
    NavigationService.Navigate(new Uri("/10MinformDataList.xaml", UriKind.Relative));
    else
    NavigationService.Navigate(new Uri("/10MinformDataList.xaml", UriKind.Relative));
    break;
    case CustomMessageBoxResult.RightButton:
    break;
    case CustomMessageBoxResult.None:
    break;
    default:
    break;
    messageBox.Show();
    Same custom messagebox code working in Phone_BackKeyPress event i am writing the code in Right Button that e.OriginalSource.ToString(); then it is working fine.
    But It is not working in Selection Changed Event in LongListSelector control in Windows Phone 8.
    Please help me,as soon as possible.
    Thanks & Regards,
    SrinivaaS.

    What happens if you leave the implementation for LeftButton empty as well , does the page gets stuck in that case also, if you press left button?
    i.e.
    CustomMessageBox messageBox = new CustomMessageBox()
    Caption = "Message...!",
    Message = "This form need offline datalist,Please load now.",
    LeftButtonContent = "Open",
    RightButtonContent = "No"
    messageBox.Dismissed += (s1, e1) =>
    switch (e1.Result)
    case CustomMessageBoxResult.LeftButton:
    break;
    case CustomMessageBoxResult.RightButton:
    break;
    case CustomMessageBoxResult.None:
    break;
    default:
    break;
    messageBox.Show();
    http://developer.nokia.com/community/wiki/Using_Crypto%2B%2B_library_with_Windows_Phone_8

  • Inserting custom HTML tags into a HTMLDocument to be displayed in a JEditor

    Does anyone know how to insert custom tags into a HTMLDocument to be displayed in a JEditorPane?
    I have tried using the following code,
    kit.insertHTML( doc,
                    jep.getCaretPosition(),
                    "<testtag>FFFF</testtag>",
                    0,
                    0,
                    new HTML.UnknownTag("testtag") );When the above code is run the handleStartTag, handleEndTag and handleText methods are called on the HTMLReader but nothing is inserted into the document model? Can anyone help?
    I have created an instance of HTML.UnknownTag,
      public static HTML.Tag testTag = new HTML.UnknownTag("testtag");I have subclassed HTMLEditorKit and overridden the getParser() method,
      protected Parser getParser(){
        DTD dtd = null;
        try {
          dtd = createDTD( DTD.getDTD("html32"), "html32" );
        } catch ( Exception e ) {
          e.printStackTrace();
        dtd.getElement( "testtag" );
        Parser p = new ParserAdaptor( new DocumentParser( dtd ) );
        return p;
      }I have subclassed HTMLDocument and HTMLDocument.HTMLReader and created a TagAction for my new tag.
    The following code works fine, the custom tag is in the document model,
        String contents =    "<html>"
                           + "<body>"
                           + "<testtag>Here is some text</testtag>"
                           + "</body>"
                           + "</html>";
        ((HTMLDocument)jep.getDocument()).setPreservesUnknownTags(true);
        jep.setText( contents );

    I've been trying to get <blockquote> insert working in an editor but it seems to be a quite difficult task even if it's only about inserting a couple of tags into the right slot! This is the closest I got:
    HTMLDocument doc = (HTMLDocument)editor.getDocument();
    int start = editor.getCaretPosition()
    int paraStart = doc.getParagraphElement(start).getStartOffset();
    int paraEnd = doc.getParagraphElement(start).getEndOffset();
    String insideBlockQuotes = doc.getText(paraStart, paraEnd - paraStart);
    doc.setOuterHTML(doc.getParagraphElement(start),"<blockquote><p>"+insideBlockQuotes+"</p></blockquote>");
    This is how it works: Get the current paragraphs start and end positions, read the text between the start and end into a string, replace the paragrapElement with <blockquote><p>..the text from string..</p></blockquote>.
    This works 'in about' but it's far from perfect.. it has the following problems:
    1. It looses all formatting from the quoted paragraph (bold etc. tags from the quoted part)
    2. It assumes that the paragraphElement was a <p> (could have been another element too!)
    3. It's ugly
    Anybody come up with a better way to use blockquote?

  • How would I insert custom HTML built in a managed Backing Bean into a page?

    I believe I could solve a project requirement if I could generate/build custom HTML in a managed Backing Bean and insert or place the output between f:verbatim elements.
    The custom HTML output would be similar to:
    <ul id="menu" class="view">
    <li>New Search</li>
    <li>Subscriber
    <ul>
    <li>Device List
    <ul>
    <li>New Device</li>
    <li>Device</li>
    </ul>
    </li>
    <li>Inbox List</li>
    <li>Resend</li>
    </ul>
    </li>
    </ul>Looking at the JSF 1.1_01 API, I don't believe there is a placeholder element?
    What is the best approach to do this?
    Thanks,

    This is exactly what you want:<h:outputText value="#{myBean.htmlString}" escape="false" />where getHtmlString() just returns a plain String object with the HTML in it.
    A custom component would be a more clever solution anyway.

  • Can I insert an html file as an image into an HTML page?

    The site I'm working on (www.ngospen.com) has PNGs for background art - 10 - 15 kb per image. As the site is intended for settings with low bandwidth, I'd like these background images to be as small as possible.
    When saving for the web, one of the options is Save As HTML file. When I open the file, the artwork appears the same as the PNG (no lost resolution), but it is a much smaller file size (1 - 2 KB).
    Is it possible to insert these HTML files into my HTML pages?
    Thanks!
    Ken D
    Creative Director
    Grateful Creative

    Are you meaning that you work with fireworks?
    If so the html and the images you export are flattened images (slices), you have to put those images directly into your html page.
    If you want to save the file (fireworks) as a flattened image you could also goto save as -> flattened png.
    If you save your image from fireworks just as png it contains the layer information etc. etc. from fireworks, that's why you should save them as flattened png, or just export the slices.
    http://www.dreamweaverfan.nl

  • How to insert customized HTML tags?

    Hi
    I insert a lot of tags like <p class="foo"> or say <span onmouseover=”doAction(this);”>.
    Is it possible in Dreamweaver CS5 to extend a list of insertable tags with my customized tags and do steps like
    select some text (say “some text”),
    them choose a tag from the list (say <span onmouseover=”doAction(this);”>.)
    A fragment “<span onmouseover=”doAction(this);”> some text</span>” will be inserted into the file instead of  selected “some text”.
    Thank you in advance.

    Have you used the Snippets folder to store reusable code fragments?
    I use my snippets folder often. Go to an insertion point in your document and double click on the Snippet.
    http://webdesign.about.com/cs/dreamweaver/ht/htdwusesnip.htm
    Another option is to create and use commands from History steps:
    http://help.adobe.com/en_US/dreamweaver/cs/using/WSc78c5058ca073340dcda9110b1f693f21-7780a .html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Can you insert a HTML tag in mail?

    Basically I want to replace a very long and messy hyperlink with one word (DIARY) as a signature on my emails. I believe this is called a HTML tag. Anybody have any ideas on how to do this?
    Thanks

    Hi
    assuming you  create a signature in Mail-Preferences-Signatures
    then do so, using the single word (or more) -
    select/highlight the part you want as a link & ctrl-click it, choosing Link - Add Link
    ( or use the Mail-Edit-Edit Link command, or the Command-K keyboard shortcut )
    copy/paste the web address you want.

  • Custom Master Page changes wont apply to few page layouts

    Dear All
    I'm having issue applying custom branding to SharePoint 2010 sites.. Branding works overall fine but it doesn't apply to few pages.
    For example if I click on Enterprise and Metadata Keyword Settings in Document library the changes are not applied. I notice it's a page called metadatacolsettings.aspx in layouts and I see it references application.master.. Similarly I see couple
    of other pages out of sync and all of them have application.master as Master Page..
    Any ideas why this could be happening.. Please let me know
    Thanks

    Hi,
    pls check below links
    There are a few things to consider.
    Have all page layouts / master pages been checked in and published / approved?
    Have you created a new page using the custom page layout?
    Are you creating or modifying this content?
    Keep in mind, the progression of rendering goes as follows:
    masterpages determine the ASP.NET structural layout.
    Page Layouts determine the SharePoint structural layout based on the masterpage ASP.NET structural layout.
    Your .aspx pages determine what content to display based on the Page Layout SharePoint structural layout.
     https://social.technet.microsoft.com/Forums/sharepoint/en-US/00d354cd-e49b-429f-8648-50251e1b39a0/changes-to-page-layout-not-refelected-when-using-custom-master-page?forum=sharepointcustomizationlegacy
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Can't insert file in Outlook Web since Office MAC update

    Hello,
    Although I can access my college's mailbox via Outlook web, I can no longer insert text files when sending a message using this account since updating my Office suite for Mac. I'm working with Lion. The file's name appears when chosen but doesn't upload (not sure this is the adequate term) when «insert file» is selected. The progress loop appears, no error message is received. A draft (translating from french to english here... not sure again of the exact name in english) containing the text file is automatically created.
    Help!

    I was having this problem too, with Apple mail, facebook, anything that required me to attach or upload after upgrading to Mavericks...actually I think there was a mountain lion update I did prior to mavericks, but I did the mavericks upgrade immediately after. I went to my user settings and noticed that my account, which is an admin account, said "admin, managed" and the parental controls were enabled.  the only was I was able to change this was to create another admin account, log in to that account and remove the parental controls on MY admin account.  log off, go back to original account and delete other admin.  it won't show any files if the view is in icon view so switch it to list and it should show everything.  I also can't attach anything that is in my downloads folder.  not sure if that is a new thing with Mavericks or if it's always been that way.  no problems since, knock on wood, but I just figured this out last night.  I also repaired permissions before I figured out the admin problem, that allowed me to attach SOME files, but not all.  try to admin thing, hopefully it works for you!

  • I bought a used iphone can someone tell me how to change the apple id on phone please. Thank You!

    I bought a used iphone yesterday and it has a apple id on it and I need to know how to change that apple id over to my id. I do not have the password for the previous owner. Can someone please help me with this? Thank you!

    Removing data is all or none, and "forgetting" to do so before selling your phone is no "small thing" - it's like selling your purse with your wallet and credit cards still inside.
    So I am afraid you were not very helpful!
    Every day there are posts from people with obviosly found or stolen iPhones who mysteriouly "forget" their passcode (or forget to obtian it from the prior owner) and who somehow don't have access to the computer the phone was synced with, looking for help to gain access to the phone.  I'm not interested in helping others boost iPhones.

  • Can't get the HTML for My iTunes widgets

    Couple of things.
    My iTunes:
    I have enabled the My iTunes (Purchases, Favorites and Reviews). However, when I click the "Get HTML" buttons, I'm taken to the web page for getting the HTML. The image states that I haven't enabled My iTunes. Nothing that I have tried is working. Any ideas?
    Searches:
    The query handling when searching for topics doesn't actually work correctly. I searched for the string "My iTunes" and got 329 results, with every result on the first 4 pages (I stopped after looking at the first 40) were based on having "iTunes" in it. The results were not limited by the phrase "My iTunes". So, if there is a solution to this, the query results aren't providing information that makes it easy to find the right answers.
    Thanks much,

    Hello Jay Hill
    If the steps below are what you went through. You may wish to sign out of your iTunes account, sign back in, and attempt to get HTML code, if it still does not work, Uncheck all 3 boxes in your account and apply the info. So it shows that you need to enable the service. Enable it again by checking proper boxes.
    Also if you have not done so download the latest iTunes below
    http://www.apple.com/itunes/download/
    1. Launch iTunes
    2. In the iTunes menu bar click on Store - Sign into account if needed otherwise choose view my account. If you have to sign in, go back to same spot then choose view my account
    3.On the Apple Account information page near the bottom you will see something called My iTunes, and on the right hand side a button called Enable My iTunes.
    Once you press this will you be given information to read and a box to check and agree to. Then click continue.
    From there check all the applicable boxes that interest you. Once the boxes are checked, each one will offer a Get HTML Code, Press done in iTunes when you are finished. Feature should now be enabled.

  • Can insert and html page inside a symbol

    How can I insert and html page in a symbol
    By example: One Menu with five options. When  click in option one: showme www.google.com; when click option two then show www.adobe.com...
    Sorry for my poor english.
    Thanks
    Now in spanish
    Buenos dias
    Quisiera saber si existe la posibilidad de visualizar una pagina web en un symbol, de manera que dependiendo de un menu, me muestre una dirección u otra.
    No se si esto es posible, porque soy muy novato en esto.
    Les ruego su ayuda.
    Gracias y saludos

    >thx for reply
    >i used Iframe anyway
    >btw im noob in html =.=
    Iframes are usually a terrible solution, in my opinion. If
    you need the background fixed, why not just set it to fixed rather
    than introducing fames and all of the problems they bring? Do you
    have a url?

  • Insert an HTML Table tag as a value in a Tree Table

    Hi helper,
    Can I insert an HTML Table tag inside a TreeTable (Hierarchical data) using AdvancedDataGrid as a value?
    I need to create a Tree table in flex and I have beside normal int values some cells that need to show a certain images in an HTML Table I will create.
    Is it possible?
    Please advice
    Thanks
    Jo

    <div class=Section1><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'>It depends on where you get the list of images<o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'><o:p> </o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'>Alex Harui<o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'>Flex SDK Developer<o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'><a href="http://www.adobe.com/"><span style='color:blue'>Adobe<br />Systems Inc.</span></a><o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'>Blog: <a href="http://blogs.adobe.com/aharui"><span<br />style='color:blue'>http://blogs.adobe.com/aharui</span></a><o:p></o:p></span></p><br /><br /><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";<br />color:#1F497D'><o:p> </o:p></span></p><br /><br /><div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'><br /><br /><p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>From:</span></b><span<br />style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> Yossi Bar<br />[mailto:[email protected]] <br><br /><b>Sent:</b> Monday, February 09, 2009 1:14 AM<br><br /><b>To:</b> [email protected]<br><br /><b>Subject:</b> Re: Insert an HTML Table tag as a value in a Tree Table<o:p></o:p></span></p><br /><br /></div><br /><br /><p class=MsoNormal><o:p> </o:p></p><br /><br /><p class=MsoNormal style='margin-bottom:12.0pt'>A new message was posted by<br />Yossi Bar in <br><br /><br><br /><b>Developers</b> --<br><br />  Insert an HTML Table tag as a value in a Tree Table<br><br /><br><br />Thanks Alex, <br><br />What is the way to implement HorizontalLIst of images for<br />AdvancedDataGridColumn? <br><br /><br><br />In the code here I create a tree table and in Actual column I show an image: <br><br /><br><br />&lt;mx:AdvancedDataGrid width=&quot;100%&quot; height=&quot;100%&quot;<br />folderClosedIcon=&quot;{null}&quot; folderOpenIcon=&quot;{null}&quot;<br />defaultLeafIcon=&quot;{null}&quot;&gt; <br><br /><br><br />&lt;mx:dataProvider&gt; <br><br />            &lt;mx:HierarchicalData<br />source=&quot;{dpHierarchy}&quot;/&gt; <br><br />        &lt;/mx:dataProvider&gt; <br><br />        &lt;mx:groupedColumns&gt; <br><br />         &lt;mx:AdvancedDataGridColumn<br />headerText=&quot;&quot; width=&quot;50&quot;/&gt; <br><br />            &lt;mx:AdvancedDataGridColumn<br />dataField=&quot;Region&quot; backgroundColor=&quot;haloSilver&quot;<br />headerText=&quot;Region title&quot;<br />headerRenderer=&quot;mx.controls.Label&quot;/&gt; <br><br />            &lt;mx:AdvancedDataGridColumnGroup<br />headerText=&quot;Group Header&quot;<br />headerRenderer=&quot;mx.controls.Label&quot;&gt; <br><br />&lt;mx:AdvancedDataGridColumn dataField=&quot;Territory_Rep&quot;<br />headerText=&quot;Territory Rep&quot;<br />headerRenderer=&quot;mx.controls.Label&quot;/&gt; <br><br />&lt;mx:AdvancedDataGridColumn dataField=&quot;Actual&quot;<br />headerText=&quot;Actual title&quot;<br />headerRenderer=&quot;mx.controls.Label&quot;&gt; <br><br />&lt;mx:itemRenderer&gt; <br><br />&lt;mx:Component&gt; <br><br />&lt;mx:VBox horizontalAlign=&quot;center&quot;&gt; <br><br />&lt;mx:Image width=&quot;50&quot; source=&quot;{data.Actual}&quot;/&gt; <br><br />&lt;/mx:VBox&gt; <br><br />&lt;/mx:Component&gt; <br><br />&lt;/mx:itemRenderer&gt; <br><br />&lt;/mx:AdvancedDataGridColumn&gt; <br><br /><br><br />&lt;mx:AdvancedDataGridColumn dataField=&quot;Estimate&quot;<br />headerText=&quot;Estimate title&quot; headerRenderer=&quot;mx.controls.Label&quot;/&gt;<br /><br><br />            &lt;/mx:AdvancedDataGridColumnGroup&gt;<br /><br><br />        &lt;/mx:groupedColumns&gt; <br><br />    &lt;/mx:AdvancedDataGrid&gt; <br><br /><br><br />Please advise, <br><br /><br><br />Thanks <br><br /><br><br />Jo <o:p></o:p></p><br /><br /><div class=MsoNormal><br /><br /><hr size=2 width=200 style='width:150.0pt' align=left><br /><br /></div><br /><br /><p class=MsoNormal style='margin-bottom:12.0pt'>View/reply at <a<br />href="http://www.adobeforums.com/webx?13@@.59b7d1ae/2">Insert an HTML Table tag<br />as a value in a Tree Table</a><br><br />Replies by email are OK.<br><br />Use the <a<br />href="http://www.adobeforums.com/webx?280@@.59b7d1ae!folder=.3c060fa3">unsubscribe</a>< br />form to cancel your email subscription.<o:p></o:p></p><br /><br /></div>

  • Got new email address. Changed the address on itunes on my computer but can not change Apple id on my phone. keeps asking for password to old Apple ID. How do I get my new apple ID on my phone so I can purchas and update phone?

    Got a new email address, changed my account on itunes to new email address. which changed my apple id and password. Works fine on computer but My phone is still asking me to sign in with old apple id. I can not figure out how to change apple id on my phone. I have sync'd my phone twice and still hasnt changed account info on phone. Any Ideas on what I need to do?

    Start with the Settings app
    Settings > iTunes and App Store > tap on your Apple ID and then tap on Sign Out
    Then sign in with your correct Apple ID and password.

Maybe you are looking for

  • How do i get my itunes account to link to my clash of clans game

    how do i get my itunes account to link to my clash of clans game

  • Mini Displayport with 27" Imac

    I've got a MBA and a 27"Imac that I have been trying to use as an external monitor.  When I plug in the mini displayport cable to the MBA the 27" Imac enters target display mode but the screen on the MBA alternates between a blue screen and the deskt

  • Archive directory metric

    I am trying to determine if there is already a metric for determining space free % or MB on the directory for archive logs. Does anyone know if such a metric exists or has anyone created a similar metric and can point me in the correct direction (on

  • Release Strategy to work on PO Gross value (inclusive of taxes)

    Dear MM Gurus, We have configured the PO Release strategy as under: 1) < 500000 2) > 500000 After checking the PO, we now find that the release strategy gets triggered on the basic price only. Any additions to the amounts in the condition tab also ad

  • Upgrading questions  - help anybody ?

    howdy folks I am currently running Logic version 6.4 on a G5 Dual processor w/ 1.5 gigs of RAM. The system is stable & I use up to 24 tracks of audio plus 24 channels of virtual EXS24 instruments at once without problem. But I want to upgrade and run