In FormView Pager Template shown in design page but not shown in runtime.....

//////////////////////MY TABLE//////////////////
USE [logistics_tab]
GO
/****** Object:  Table [dbo].[dtype]    Script Date: 02/07/2015 10:19:00 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[dtype](
[dtid] [int] IDENTITY(1,1) NOT NULL,
[dtcd] [char](5) NOT NULL,
[desp] [char](15) NOT NULL,
 CONSTRAINT [PK_dtype] PRIMARY KEY CLUSTERED 
[dtid] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY],
 CONSTRAINT [Uq_dtcd_Dtype] UNIQUE NONCLUSTERED 
[dtcd] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
////////////MY STORED PROCEDURE/////////////////////
USE [logistics_tab]
GO
/****** Object:  StoredProcedure [dbo].[dtype_pro]    Script Date: 02/07/2015 10:21:42 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[dtype_pro]
@dtid as int=0,
@dtcd as char(5)='',
@desp as char(15)='',
@status as varchar(50)=''
AS
BEGIN
SET NOCOUNT ON;
if(@status = 'Display')
begin
Select * from dtype
end
else if(@status = 'Add')
begin
Insert into dtype(dtcd,desp) values (@dtcd,@desp)
end
else if(@status = 'Update')
begin
Update dtype set dtcd=@dtcd, desp=@desp where dtid=@dtid
end
else if(@status = 'Delete')
begin
Delete from dtype where dtid=@dtid
end
END
GO
//////////MY DESIGN PAGE/////////////
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="DestnType.aspx.cs" Inherits="LogisticsApp.DestnType" %>
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<asp:FormView ID="FormView1" runat="server" DataKeyNames= "dtid" GridLines="Both" 
        AllowPaging="True" PagerStyle-BorderStyle="NotSet" PagerStyle-ForeColor="Black">
        <FooterStyle BackColor="#CCCCCC" ForeColor="Black" />
        <PagerStyle BackColor="#B5C7DE" ForeColor="Black" HorizontalAlign="Center" Font-Bold="true" Font-Size="Large"/>
        <ItemTemplate>
                  <table>
                    <tr><td align="right"><b>Employee ID:</b></td><td><%# Eval("dtid") %></td></tr>
                    <tr>
                      <td colspan="2">
                        <asp:LinkButton ID="EditButton"
                                        Text="Edit"
                                        CommandName="Edit"
                                        RunAt="server"/>
                          &nbsp;
                        <asp:LinkButton ID="NewButton"
                                        Text="New"
                                        CommandName="New"
                                        RunAt="server"/>
                          &nbsp;
                        <asp:LinkButton ID="DeleteButton"
                                        Text="Delete"
                                        CommandName="Delete"
                                        RunAt="server"/>
                      </td>
                    </tr>
                  </table>                 
                </ItemTemplate>
                <PagerTemplate>
                <table>
                    <tr>
                      <td><asp:Button ID="FirstButton1" CommandName="Page" CommandArgument="First" 
                      Text="<1<" RunAt="server" Font-Bold="True" />&nbsp;</td>
                      </tr>
                  </table>
                </PagerTemplate>
</asp:FormView>
</asp:Content>
 ///////MY CODE///////////
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Configuration;
    using System.Data;
    using System.Data.SqlClient;
    using System.Text.RegularExpressions;
    namespace LogisticsApp
        public partial class DestnType : System.Web.UI.Page
            public LogisticsApp.MyConnection.OfcConn constr = new MyConnection.OfcConn();
            SqlConnection con;
            SqlCommand com;
            SqlDataAdapter sqlda;
            DataSet ds;
            DataTable dt;//for form view
            protected void Page_Load(object sender, EventArgs e)
                if (!IsPostBack)
                    BindGrid();
            protected void BindGrid()
                try
                    con = new SqlConnection(constr.str);
                    dt = new DataTable();//for form view
                    com = new SqlCommand();
                    con.Open();
                    com.Connection = con;
                    com.CommandText = "dtype_pro";
                    com.CommandType = CommandType.StoredProcedure;
                    com.Parameters.Add(new SqlParameter("@status",             SqlDbType.VarChar, 50));
                    com.Parameters["@status"].Value = "Display";
                    sqlda = new SqlDataAdapter(com);
                    ds = new DataSet();
                    sqlda.Fill(dt);//for formview
                    sqlda.Fill(ds);
                    if (ds.Tables[0].Rows.Count > 0) //Check if DataTable returns data
                        FormView1.DataSource = dt;
                        DataBind();                
                catch (Exception ex)
                    //lblerr.Text = ex.Message;
                    throw ex;
                finally
                        if (con != null)
                                if (con.State == ConnectionState.Open)
                                con.Close();
                                con = null;
                protected void DtypeFormView_PageIndexChanging(object sender, FormViewPageEventArgs e)
                    FormView1.PageIndex = e.NewPageIndex;
                    BindGrid();
//plz plz... help as soon as possible this is simple code but not show at run time....... :(
                    

Good day uzma
abidi
It has been long time since I used Webforms but it look to me like you are using the default options and if there is no data that return in the query then you will not see the PagerTemplate.
1. execute the SP from the SSMS.
2. make sure that you pass the correct @status while executing the SP from the ASPX.
3. check the SQL Server profiler, what query the SQL Server got.
4. Check if DataTable (dt) has data after filling it. else you do not get the "DataBind" part, and the PagerTemplate will not display.
* The basic code look ok in fast review. I might missed something. You should monitor it and get the line that make the issue.
  Ronen Ariely
 [Personal Site]    [Blog]    [Facebook]

Similar Messages

  • Why page looks fine in Design view but not live view?

    I am new to DW. I created a page that looks fine in design view but now I cant get it to show up in live view or the browser preview. Can some one give me some areas to troubleshoot. Most of the code is from a previous page I created that still looks fine in every view. I am not sure what I could be doing different in setting up this site.

    Thanks for taking the time to reply to question. Aftr taking a break. I came back realized I inserted the stylesheet before I changed site settings. I just needed to remove the forward slash from my stylesheet declaration. FYI for anyone else new to DW: if stuffs not showing  in Live View and Browser Preview eg background images, Go to Manage Sites and check your site setting for Links relative to: You may have switched between document and site root. Thus breaking your links to images or in my case the entire style sheet.

  • App shown in "Purchase History" but not shown in "Purchase" tab

    I tried syncing my Ipad2 to Ipad3. Only some of my  apps transferred to the new Ipad3.
    I checked Itunes purchase log "Purchase History"  and it DOES show that I purchased the apps, but yet the app is not shown on the ipad3.
    On the ipad3, went into App Store/ Purchased (tab at bottom).
    My puchased app is not there. I only see the Free version.
    I thought to try to see if I tried to purchase again, I would get a message that the item is already purchased.
    It brought me all the way up to the credit card info page, so I stopped as I do not want to purchase again.
    Question is...How do I get my purchased apps back ?
    Purchase History shows it there and paid for, but everytime I try to restart and reconnect and re-sync and turn off then turn on, it does not come back.
    I checked my Itunes apps, and the only app shown is the free version. What happened to the bought version?
    I only have (1) Apple Id account.
    Any help would be GREATLY APPRECIATED.
    Thank you.
    J

    Does it also not show under the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes ?
    You can try contacting iTunes support and see if they can see why it's not there (I'm not aware of any phone support for iTunes) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • My web page centers in the design view, but not when viewed on line.

    I am new to web design and of course, to this forum.  I had some background in VBA and Fortran, so when the original designer left, I was the only one in the organization willing to tackle the website and try to teach myself how to make it work and keep it current.  We were financially in the red at the time, so hiring outside help would have been almost impossible.  We are finally breaking even now, which was our goal as a non-profit.
    So I inherited the computer and the responsibility for maintaining the website at a non-profit organization for kids in Florida a couple of years ago, and I am doing pretty well with it so far, even though my depth of knowledge is very shallow.  AsI said before, I am entirely self taught, mostly by the trial and error method, so please excuse what is probably a very basic question. 
    My website is FloridaBandTournament.com.
    The site is working pretty well for my users, but from an appearance standpoint, the pages always are on the left side of the screen.  I would like to center the page(s) in the screen so that it looks a little better.  They are on a black background - not sure how the background got there, but it is working fine for me.  When I tried to center the pages, I googled my way to the statement text-align: center, and after placing it a couple of different places in the code, it suddenly seemed to work, at least in the in Dreamweaver 8 (I also inherited the software, which is I know is old, but so am I - will be 70 soon, and do my work for free for the organization).  But when I went to a couple of different browsers, it still displayed the website on the left.  I tried Firefox and IE.  I am at a loss as to what to do.
    When I found this forum, I thought maybe somebody could help me know what to do to make this centering of the page happen in a simple way for this old geezer.  I would sure appreciate it.
    I do not know what I should be communicating to you, but I thought if I sent the code in the body, it might help.
    The body code is as follows;
    body  [
        background-image: url(file:///C|/Documents and Settings/user/Application Data/Macromedia/Dreamweaver 8/configuration/ServerConnections/www/images/background.gif):
       background-color:  #000000;
       margin-top:  0px;
       margin-left: 0px
       margin-bottom: 0px
       margin-right: 0px
      text-align:center
    None of the pages in the active website have this code yet - I have a trial page that I am testing.  The trial page can be accessed from the link at the bottom of the 'links' page for 'Show Host Infoormation' (the mis-spelling is temporary and intentianal so I can find the darn test link myself when I want to).
    I would be glad to provide any information that might help someone understand what I have and what I am trying to do, but again, I am self-taught so I have little understanding of the technical terms.  I would sure appreciate any help.  Thanks in advance.
    Bob

    First obviously make a back-up of the pages/s.
    Go into code view in Dreamweaver and find the below html. Its near the top of the page after the css. You don't need to first table <table> </table> so you can delete that. It's the second table that we are interest in. See below I have added id="pageWrapper" to the opening <table tag.
    <table width="795" border="0" cellpadding="0" cellspacing="0">
      <!--DWLayoutTable-->
      <tr>
        <td width="795" height="19" valign="top" bgcolor="#000000"><!--DWLayoutEmptyCell--> </td>
      </tr>
    </table>
    <table id="pageWrapper" width="795" border="0" cellpadding="0" cellspacing="0">
      <!--DWLayoutTable-->
    Then add this to your css styles in the head setcion of the page.
    #pageWrapper {
        margin: 0 auto;
    You'll have to do this for each page of the site you want centered, which could be a pain if you have many pages.
    Also your background image is linked to your local computer thats why you are not seeing it but have a black background instead:
    body {
        background-image: url(file:///C|/Documents and Settings/user/Application Data/Macromedia/Dreamweaver 8/Configuration/ServerConnections/www/images/background.gif);
        background-color: #000000;
        margin-left: 0px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
    If you want the image to appear amend the link to as below:
    body {
        background-image: url(images/background.gif);
        background-color: #000000;
        margin-left: 0px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;

  • For the last year, I have to refresh my browser to load certain normal pages...IE opens them, but not Firefox. I also have extreme difficulties loading video from sites including YouTube, Yahoo, etc. I open them in IE just fine. I update all the time.

    For the last year, I have to refresh my browser to load certain normal pages...IE opens them, but not Firefox. I also have extreme difficulties loading video from sites including YouTube, Yahoo, etc. I open them in IE just fine. I update all the time.

    "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"<br />
    "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"<br />
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    Your plugins list shows outdated plugin(s) with known security and stability risks.
    *Java Plug-in 1.6.0_07 for Netscape Navigator (DLL Helper)
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)

  • How come I can see my div in design view but not in live view

    Hi,
    I have a div ID called "portfolio" that I can see in design view but not live view or on a browser. It's a little pink square and I want that square round also.
    I ran it through validator. It picked up some things in the style.css which I changed and the boilerplate.css that I did not. Because I thought DW auto creates code for boilerplate because I don't enter that code myself.
    It's also rejecting a lot of webkit code but this seems like standard webkit code that works elsewhere on the page.
    BTW: at what point does this brutal hand coding pay off in money and less heartache when Wordpress looks cleaner and is so much easier to use? I feel like I barely know HTML or CSS in terms of translating vision to reality and with all-browser functionality after months and months of on-line classes. How long are the pros at it till they reach a watershed point?
    here's my address: http://www.adjacentdimensionsmedia.com/home.html
    Here's my html:
    <body>
      <div class="gridContainer clearfix">
        <div id="div1" class="fluid"><img src="adtitle2.png" width="700" height="80" alt=""/></div>
      <div class="fluid"><div class="box-shad"><a href="index.html"></a></div>
      </div>
        <div id="portfolio">Portfolio</div>
    </body>
    Here's my CSS:
    .box-shad {
      margin-top: 200px;
      margin-left: 100px;
      width: 900px;
      height: 700px;
      display: block;
      background-image: url("images/Big-tree-trans1.png");
      background-size: 900px 700px;
      -webkit-box-shadow: 15px 15px 15px #000000 inset;
      box-shadow: 15px 15px 15px #000000 inset;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      position: fixed;
    .box-shad a {
        display:block;
        width:900px;
        height:700px;
    #portfolio {
      width: 100px;
      height: 100px;
      margin-top: 0px;
      margin-right: 200px;
      margin-left: 200px;
      margin-bottom: 0px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: pink;
      top: -300px;
      position: relative;

    The top:-300 is putting that div above the top of the browser viewport. Fix that and you'll see the div.

  • CSS rules show up in design mode, but not in live or in browser.

    So some rules work in the browser some appear when in design mode, but not in live mode or in the browser. 
    In one case there is no competing rules I applied background color and border color to a dynamic table and I see the colors in design view.  In another there is a competing rule, but the one that wins is #content, when the rule I want #content #footer p is (obviously) a compound and at the bottom of the rules.
    Any thoughts?
    Thanks
    Gregg

    AH In preparing my stylesheet to show you, I noticed the rule above those two was missing it's ending curly brace. Problem solved! That's what I get for checking code when I am sleepy!
    Thank you SnakeEyez02
    Gregg

  • Inspection Lot Created but not shown in QE72, and cannot input result or UD

    Hi Exports,
    I have  Inspection Lot Created by 04-production goods receive, but not shown in QE72, and cannot input result or UD
    Inspection Lot status: CRTD CHCR SPRQ,
      in Business Process of inspection lot showing:
    *Cancel inspection lot
    Assign RMA proc. to insp. lot
    Assign notification to lot RMA
    Batch log indicator required
    Certificate missing
    Change inspection lot
    Change planned lot quantity
    Choose task list for insp. lot
    Confirm Receipt of Certificate
    Create part. lot for insp. lot
    Flag cancellation
    Inventory posting required
    Lock
    Lot for process documentation
    Lot reset allowed
    What is going wrong? 
    BTW, the sampling procedure in Inspection Plan is a read-only field, but empty inside.
    Daniel

    Dear in your case there is no Inspection plan was attached to the lot so attach the plan and make lot status to REL then only you can do Results Recording.
    Inspection plan gets auto assigned to availble inspection plan on respective date if you enabled the inspction with tasklist and automatic assignment boxes in relevant inspection types in MM QM view for this Inspction plant should be made avaialble in stsyem before any lot created which can be created QP01.
    If it is not getting assiged automatically then you can assign it manually by QA02 here go to inspection specification tab click on Task list assignment the go to sample tab and click on sample and SAVE Inspection plan will be attached to inspection plan.
    Once inspection plan is the lot status you can see REL before assignment of a plant it would be CRTD.
    Cheers
    KK

  • How to change page template for a single page?

    I create a new document based on the Pages "Reports > Business Report".
    Now the first page is formatted as a "Cover" page with a larger top margin.
    Via "Format > Advanced > Manage Pages..." I see there are what I assume are the "Page Templates":
    - Cover
    - Table of Contents
    - Chapter Page
    - Text Page
    - Appendix
    My question: How can I change the template for a single page in my document? E.g. I don't want Page #1 to be formatted as "Cover". I'd like it to be a "Text Page".
    Any hints?

    Just delete the Cover section and insert a Text Page.
    Click on:
    +Toolbar > View > Page Thumbnails+
    Click on the Cover thumbnail, it will be outlined in yellow, hit delete.
    It may start off with certain defaults but you do not have to accept them.
    Peter

  • When exporting files to web pages Aperture keeping losing files, so for instance, if I choose to export 600 images to a new web page, it might do 524 images but not the full 600. I've tried resetting Aperture, it's the latest version etc etc. Help please!

    If anyone can help me with this I would be seriously grateful.
    When exporting mutliple files to web pages Aperture keeping losing files, so for instance, if I choose to export 600 images to a new web page, it might make 524 pages but not the full 600. I've tried resetting Aperture and its persmission and am using the latest version of 3.
    I have 3600 images which I need to upload as sublfolders, each with their own URL and at the moment Aperture is dropping of anything from 1 to 90 images.
    This is critical as people need to see each and every on of these images online. So if a file has 600 photos in it, Aperture should make a URL with 600 full image pages. And this is what it's not doing. On small files, say 30 or so it seems to work well, it's when it gets to more than that the problem starts.
    I've used Aperture in the past under previous versions and not had this problem.
    Any help would be great.
    Thanks.
    Bob.

    Hi Jack,
    Thanks for responding (as it seems as though no one else has been able to provide any insight as of yet)! Not sure if you saw my recent post, but the version of Aperture on the 2008 MacBook has been upgraded to 3.1.2 (not sure how; I bought it in 2009, but only have OS X 10.5.8... which apparently can't house 3.1.2 of Aperture, but hey, like many other anomalies i'm encountering, I'm no longer surprised!). I am unable to upgrade it any further, as it warns me that my OS X does not fit the requirements. I exported the projects as libraries; however, like I posted before, apparently these are from too old of a version for the new Aperture (3.3.1) to handle and import.
    It's getting to the point where I'd almost pay to upgrade the OS X on my previous MacBook (10.5.8) to something newer in order to THEN update Aperture to a newer version; however, my previous MacBook simply cannot handle this (the specs are awful -- hence my decision to save up and upgrade to the newest MBP with Retina).
    I've spent hours upon hours transferring files, libraries as projects, previews, versions, even masters (though, apparently some of them aren't accessible?) with no luck. I've rebuilt the library and reprocessed everything. And this is all after having to return one MBP already since Aperture 3.3.1 is glitch-y as it is, and froze everything for having a "managed library". So, now that I know that I have to deal with a referenced library in Aperture... I just need to actually transfer my previous library to my new one (hopefully WITH adjustments since these are years worth of photos and work).
    Again, any help is appreciated. I've lost enough sleep, time, and vision health over this at this point.
    Also, I know Migration Assistant is an option, I was told that it wouldn't work properly anyway because of the different operating systems, and the potential for problems.

  • Windows not showing. Page source and library windows open but not showing.

    I select View --> Page Source and no window appears. Under the Window menu, the item Source: . . . shows but no window. If I close the main window then the item is ticked but still no actual window.
    I have disable all extensions and plugins, safe mode, revert all preferences.
    the same happens with Show all Bookmarks. This is why I posted this under bookmarks problems originally - see below.
    I now find the same happens to downloads and Error console windows. No problems in Safari or MS Word (usually the worst performer)
    Bookmarks are all present, but show all bookmarks produces no window, even though the window menu shows an item and I can select it.
    Mac OS 10.6.8 FF 5.01 Show all bookmarks shows no window, even if I close the main window. Under window menu the 'Library' item is ticked but still nothing. I have restarted, and renamed places database. recently installed some of these addons

    The one that solved it was my own last post, which does not have a Solved it.
    I copied the FF profile folder from another login and started with that.
    However. . . the problem is back. I installed extensions, NoScript and MyBookmarks and it seemed OK after that.
    Then I installed Download Youtube videos + 3.3.51, then DownThemAll! 2.0.7, Google Shortcuts 2.1..6, ImTranslator, QuickWiki and Read It later. No Plugins ennabled.
    when I disable all extensions then the windows for downloads, error console and 'open link in new window appear OK, but not the source or Library windows.
    As before they are on the window menu but no way to make them visible.

  • Html page works well in firefox & safari but not in IE 7

    Hello,
    This is my first time using html and the page i created works
    well in firefox and safari but not at all in IE7.
    I know I shouldn't do this (this is probably a sin) but I
    converted a PDF file to HTML in Acrobat and then took the HTML file
    into Dreamweaver to add a couple of hotspots and uploaded it onto a
    server. No problems in firefox and safari but when I open it in
    IE7, I don't see anything except for a thin line across the top and
    nothing else.
    I promise I will learn HTML soon but for now I really need
    this page to work across all browsers.
    Does anyone know how I can fix this?
    Here is the link to the page and the source code(bottom)...
    html page
    If anyone can help me, i'd really appreciate it... thank you
    in advance.
    J

    You are not using the latest Spry files
    The latest version of the Adobe Spry Framework is 1.6.1, this is the same version that ships with Dreamweaver CS4. If you use Dreamweaver CS3 (uses Spry 1.4), its wise to upgrade your files to the latest version. This can easily be done using the Spry Updater that can be found here.
    Then, if you have a look near the bottom of SpryMenuBarVertical.css you will see that the white background colour has been specified for IE as in
    @media screen, projection
        ul.MenuBarVertical li.MenuBarItemIE
        display: inline;
        f\loat: left;
        background: #FFF;
    Change the value to #CCC and it will have fixed that part of the problem.
    When you upgrade to the later version of Spry, make sure to keep a copy of the CSS file as a reference to modifying the new CSS file.
    Gramps

  • When I loginto a certain web site it just keeps going back to the login page. It works on IE but not Firefox. There is some setting I must have that is stopping the logon.

    their login page does not recognize my entry. Just keeps going back to page and says logon. It does work on Internet Explorer but not Firefox.

    This - http://www.google.com/firefox - is the old Firefox Start Page used by the Firefox 3.6 and earlier versions of Firefox, I don't think it is being maintained.
    Starting with the Firefox 4 version, Firefox is using a "local" Start Page with the address of '''about:home'''. It looks similar to the old Start Page, but it isn't exactly the same.

  • When saving a page as I get pictures saved but not the body of the page.

    Tried to do a "save as" web page from Gutenburg and got picture files in their directory but not the main body of text from the page.

    Hi gostay,
    I've followed your steps, but reproduce failed, here are my steps:
    1) Download sample:
    https://code.msdn.microsoft.com/windowsapps/App-bar-sample-a57eeae9
    2) Adding event listener as below in the default.js file:
    var p = WinJS.UI.processAll().
    then(function () {
    // new test code:
    window.addEventListener('pointermove', function () {
    console.log("pointer move");
    }, false);
    window.addEventListener('pointerdown', function () {
    console.log("pointer down");
    }, false);
    window.addEventListener('pointerup', function () {
    console.log("pointer up");
    }, false);
    // Navigate to either the first scenario or to the last running scenario
    // before suspension or termination.
    var url = SdkSample.scenarios.getAt(0).url;
    Screenshot:
    You can try my steps on your side and compare to yours.
    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.

  • Page looks fine in live view but not fine in safari

    my index.html page looks okay in live view, but when i open it in safari some of my text is unformated. My CSS page is correct so the problem lies in my code. I have attached the html file, any help will be appreciated. Thank you!

    Thanks for taking the time to reply to question. Aftr taking a break. I came back realized I inserted the stylesheet before I changed site settings. I just needed to remove the forward slash from my stylesheet declaration. FYI for anyone else new to DW: if stuffs not showing  in Live View and Browser Preview eg background images, Go to Manage Sites and check your site setting for Links relative to: You may have switched between document and site root. Thus breaking your links to images or in my case the entire style sheet.

Maybe you are looking for