Click here to Skip to main content
15,885,216 members
Articles / Web Development / HTML

Web App Builder - Single Page Application(SPA) on any Mobile Device

Rate me:
Please Sign up or sign in to vote.
4.92/5 (20 votes)
10 Oct 2014CPOL4 min read 39.7K   1.2K   40   17
Generate a web app instantly, directly from a database (SQL Server)

Sample Image - maximum width is 600 pixels

Sample Image - maximum width is 600 pixels

Introduction

A single-page application (SPA) is defined as a web application that fits on a single web page with the goal of providing a more pleasant user experience similar to a desktop application.

The following sample application code is an alternative to using libraries such AngularJS, Knockout, etc. Only established libraries jQuery and boostrap are used in conjunction with JavaScript, HTML and CSS.
A very simple approach is used in overlaying iframes or objects and jQuery Post routines & JSON, to read and update the database, without any postback.
The Grid and Detail forms included in this application also contain simple CSS, to make them automatically resize to any mobile device, down to iPhone, etc. Using horizontal and vertical scrolling or swiping allows the user to quickly read all data columns and rows in a Grid.

The included demo application can be opened from Visual Studio 2012/2013 and Express versions. Just follow the provided readme.txt file for instructions in defining the SQL Server database.

Grid Record Persistence on Edit/Add

This application can maintain and freeze updated or added record in large databases, by keeping the updated record instantly available, even if sorted column has been modified. Record kept currently available, until ready to do another search, and increases performance dramatically.

The sample application is written in ASP.NET C# Framework 4.0, with Razor pages and Entity Framework - Entity SQL database manipulation.

Using the Code, to Make it Look Like a Desktop Application

The main logic to make it a SPA application is expanding DIVs and overlaying iframes/objects and then returning, by erasing the overlayed iframe.
The iframes are secured by including iframe busting code and a line entry in the web.config file.

iframe busting code
JavaScript
function IframeCSSCheck() {
//Check if the top location is same as the current location
    if (top.location.hostname != self.location.hostname) {
                //If not then set the top to you current
                top.location.href = self.location.href;
                alert('iframe trying to be busted, please wait...');
   }
}
web.config
XML
add name="X-Frame-Options" value="SAMEORIGIN" 
JavaScript code to overlay iframe and hide again
JavaScript
 //Javascript Functions to expand DIV with iframe and then return back
 function OpenDetails(PKID, row_ID, arrayname) {
    var iframeid = "iframeNamesdetail";            //DIV in form
    var iframdiv = document.getElementById(iframeid);
    
    document.getElementById('Name_ID').value = PKID;  //Primary Key
    
    //Url.Action(Action, Contoller)
    var pagesrc = '(Url.Action("NamesShow","Names"))';    //Run Controller to 
                //display record details and linked child grid
    var frameHeight = document.getElementById('NamesForm').offsetHeight;   
    var frameWidth = document.getElementById('NamesForm').offsetWidth;     
 
    var ifrm = "iframeupdDetailNames" + row_ID;
 
    var iframdivsrc = "<iframe id=" + ifrm + " style='overflow: no; 
    border: 0px' width=" + frameWidth + " height=" + frameHeight + " frameborder='0'" +
         "scrolling='no' src=" + pagesrc + "></iframe>";
         
    iframdiv.innerHTML = iframdivsrc;
    
    var topset = document.getElementById('NamesForm').offsetTop;  
    var topsetchr = topset + "px";
    var leftset = document.getElementById('NamesForm').offsetLeft;  
    var leftsetchr = leftset + "px";

    document.getElementById(iframeid).style.display = "block";
    document.getElementById(iframeid).style.position = "absolute";
    document.getElementById(iframeid).style.top = topsetchr;
    document.getElementById(iframeid).style.left = leftsetchr;   
}

//Used to Erase the overlayed iframe
function MinimDetail() {
    var realparentrowid = parent.document.getElementById('CurrentRowNumber').value;
    var iframerowid = "iframeupdDetailNames" + realparentrowid;
    if (parent.document.getElementById(iframerowid) != null) {
        parent.document.getElementById(iframerowid).src = "about:blank";   //set 
                    //iframefrom to blank src, from parent form.
        parent.document.getElementById(iframerowid).style.display = "none";
    }
}

Walking through Sample Application

Master Grid to Child Logic and Code

Sample Image - maximum width is 600 pixels

As from diagram above, the initial start off point is from NamesGrid.cshtml page, which is invoked from the menu layout page and the controller NamesController.cs (DisplayNames). The NamesGrid.cshtml then renders 2 other pages (i.e., Names.cshtml & NamesResults.cshtml). The Names.cshtml automatically reads the Names table from the database, via a jQuery Post call, and then the resultant JSON data is rendered onto the NamesResults.cshtml page.

NamesController
C#
/// Display master Grid Page
/// Initial start point of displaying the Grid
public ActionResult DisplayNames()
{
      Models.NamesViewModel ThisViewModel = new Models.NamesViewModel();

      ThisViewModel.TotalPages = 0;
      ThisViewModel.TotalRows = 0;
      ThisViewModel.CurrentPageNumber = 0;
      ThisViewModel.SortAscendingDescending = "DESC";  //default init setting

       ViewData.Model = ThisViewModel;

       return View("NamesGrid");   //must match View name
 }

/// Get actual records from Database
public PartialViewResult NamesSearch()
{
          long totalRows;
          long totalPages;
          bool returnStatus;
          string returnErrorMessage;

          NamesBLL ThisBLL = new NamesBLL();
          Models.NamesViewModel ThisViewModel = new Models.NamesViewModel();

          this.TryUpdateModel(ThisViewModel);  //get search criteria form input

          List<names> scripts = ThisBLL.NamesSearch(
              ThisViewModel,
              ThisViewModel.CurrentPageNumber,
              ThisViewModel.PageSize,
              ThisViewModel.SortBy,
              ThisViewModel.SortAscendingDescending,
              out totalRows,
              out totalPages,
              out returnStatus,
              out returnErrorMessage);

          ViewData["scripts"] = scripts;  //give back list array to View(ie ...Results) for processing(reading)

          ThisViewModel.TotalPages = totalPages;
          ThisViewModel.TotalRows = totalRows;

          ViewData.Model = ThisViewModel;

          return PartialView("NamesResults");  //must match View name
}

To show the subsequent child Grid that is linked to the each Master record, another page is overlayed on top of the Master Grid page, by expanding a DIV and using a jQuery Post call to display the NamesShowDetail.cshtml page and its linked Child Grid records as shown in the above diagram.

Detail JavaScript
JavaScript
    function OpenDetails(PKID, row_ID, arrayname) {
        NamesShowProgressBar();
        resetablebg();
        HideChildALL();
        rowhighlight(row_ID);

        var iframeid = "iframeNamesdetail";              //div in Names.cshtml
        var iframdiv = document.getElementById(iframeid);
        
        document.getElementById('Name_ID').value = PKID;  //hidden on Names.cshtml form, for later child processing

        //Url.Action(Action, Contoller)
        var pagesrc = '@(@Url.Action("NamesShow","Names"))';  //show record details
        var frameHeight = document.getElementById('NamesForm').offsetHeight;   
        var frameWidth = document.getElementById('NamesForm').offsetWidth;     
     
        var ifrm = "iframeupdDetailNames" + row_ID;
     
        var iframdivsrc = "<iframe id=" + ifrm + " style='overflow: no; 
        border: 0px' width=" + frameWidth + " height=" + frameHeight + " frameborder='0'" +
             "scrolling='no' src=" + pagesrc + "></iframe>";

        iframdiv.innerHTML = iframdivsrc;

        var topset = document.getElementById('NamesForm').offsetTop;  
        var topsetchr = topset + "px";
        var leftset = document.getElementById('NamesForm').offsetLeft;  
        var leftsetchr = leftset + "px";
        document.getElementById(iframeid).style.display = "block";
        document.getElementById(iframeid).style.position = "absolute";
        document.getElementById(iframeid).style.top = topsetchr;
        document.getElementById(iframeid).style.left = leftsetchr;
    }

    //Used to hide the iframeDetailNames[i] from the above OpenDetails form
    function MinimDetail() {
        var realparentrowid = parent.document.getElementById('CurrentRowNumber').value;
        var iframerowid = "iframeupdDetailNames" + realparentrowid;
        if (parent.document.getElementById(iframerowid) != null) {
            parent.document.getElementById(iframerowid).src = "about:blank";   //set 
                    // iframefrom to blank src, from parent form.
            parent.document.getElementById(iframerowid).style.display = "none";
        }
        $("#iframeNamesdetail").html("");  //also erases everything inside DIV, which has iframe

        //Next is so to hightlight row in grid that has been either updated or added
        if (document.getElementById('Name_ID').value != 0) {
            newrowhighlight();   //highlight row on page, by traversing 
                    // grid page of records and finding updated PK_ID
        }
       
        return;
    }        
}

Sample Image - maximum width is 600 pixels

From the Names Master Grid, a Popup Detail page is initiated from a link on each Grid record, via a jQuery dialog call.

Popup JavaScript
JavaScript
//-----------------------------------------------------------------------------------
//Used to show jquery Dialog Edit/Add popup (PopDialog(-1,0) is for Add
//----------------------------------------------------------------------------------
function PopDialog(PKID, row_ID) {
    $("#NamesForm #Name_ID").val(PKID);   //Primary Key
    var putTitle = "";
    if (PKID == -1) {
        putTitle = "Add Names";
    }
    else {
        putTitle = "Edit Names";
        resetablebg();
        rowhighlight(row_ID);
    }

    var strAction = "NamesDetail";
    var strController = "Names";

    //Url.Action(Action, Contoller)
    var pagesrc = '@(@Url.Action("NamesDetail7","Names7"))';  //new replace code example
    pagesrc = pagesrc.replace("NamesDetail7", strAction);
    pagesrc = pagesrc.replace("Names7", strController);

    var dialogWidth = 0;
    var topform = top.document.forms[0].id;   //use this to get TOP Master GRID form
    dialogWidth = document.getElementById(topform).offsetWidth;

    $("#modalIframeId").attr("src", pagesrc);
    $("#divId").dialog({
        autoOpen: true,
        modal: true,
        title: "",
        width: dialogWidth,
        height: 400,
        position: "center",
        resizable: false,
        draggable: true
    });

    $("#divId").dialog("option", "title", putTitle);

}
//--------------------------------------------------------------------------------------
//END show jquery Dialog popup (PopDialog(-1,0) is for Add
//-------------------------------------------------------------------------------------

Child to GrandChild Logic and Code

Sample Image - maximum width is 600 pixels

As from the diagram above, the Master and Child Grid page NamesShowDetail.cshtml is now overlaying on top of the Master page NamesGrid.cshtml. The Child Grid (i.e., Client_CareGrid.cshtml) is under the Names details.

All Child and GrandChild Grid program code are the same, and only differ from the Master Grid, in that
the foreign linked database key is not used in the Master code.
The architecture of the application is setup, so that you can easily add more GreatGrandChilds, etc.

Grid auto resizing for mobile devices

Sample Image - maximum width is 600 pixels

HTML and CSS code
HTML
<div id="idDivNamesTBody" style="width: auto; 
height: auto; overflow: scroll; -webkit-overflow-scrolling: touch;" 
        onscroll="myTimer();" >
        <table id="NamesTable" style="width: 100%; min-width: 700px; height: auto;">
              Grid rows & columns ..........................
        </table>
</div>

A DIV is enclosed around a Table, which has a min-width, thus causing the horizontal & vertically
scrolling to appear. The min-width can be modified to suit the Grid columns used.

Grid record persistence on Edit/Add

Sample Image - maximum width is 600 pixels

Entity SQL code
SQL
var customers = from c in customerQuery
   select new { c.Name_ID, c.Firstname, c.Lastname, c.Date_of_Birth, c.Update_Date };

int numberOfRows = customers.Count();

var customersunion = from c in customerQuery
   select new { c.Name_ID, c.Firstname, c.Lastname, c.Date_of_Birth, c.Update_Date };

if (SearchValues.Name_ID != 0)   //Update or Add
{
    customerQueryADD = customerQueryADD.Where(c => c.Name_ID == SearchValues.Name_ID);

    customersunion = from c in customerQueryADD
      select new { c.Name_ID, c.Firstname, c.Lastname, c.Date_of_Birth, c.Update_Date };
}

//if PageSize = -1, then creating PDF Report or Spreadsheet instead, so get all records.
var customerList = customers;
if (pageSize == -1)
{
   customerList = customers;
}
else
{
  if (SearchValues.Name_ID != 0)   //doing Update or Add a record
  {
     if (numberOfRows == 0)  //always set record count to at least 1
     {
        numberOfRows = 1;
     }
     customerList = customersunion.Union(customers.Skip((Convert.ToInt32
     (currentPageNumber) - 1) * Convert.ToInt32(pageSize)).Take(Convert.ToInt32(pageSize)));
  }
  else
  {
     customerList = customers.Skip((Convert.ToInt32(currentPageNumber) - 1) * 
     Convert.ToInt32(pageSize)).Take(Convert.ToInt32(pageSize));
  }
}

If the Grid record is being Updated or Added, then the record is always included in the final selected records
by doing a union. This ensures that the record will always be shown on the existing page that the user is on.

http://youtu.be/q2XpEvzcYqY - Grid record persistence on Edit/Add

Demo Videos

Below are demo YouTube videos, showing the main features of this application in action.

Points of Interest

I have gone out on a limb with this approach to creating a SPA application, in that I use the tag <iframe>, which have some detractors. But it is part of HTML5 specs, and they are used by Google and You Tube. The HTML5 tag <object> can be used instead of iframe, and I have code for this option. But, I do create all iframes from internal JavaScript, and I also use iframe busting JavaScript as well as domain control code in the web.config, to prevent any iframe XSS external attack. I have also used a very simple method, in resizing all screens for all devices, especially the Grids, which show horizontal and vertical scroll bars, via CSS.

History

  • 10th October, 2014: Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
QuestionNone of the videos exist... still a 5 Pin
Dewey11-Jan-17 14:08
Dewey11-Jan-17 14:08 
QuestionMy Vote of 5 Pin
Member 1128422820-Feb-16 6:59
Member 1128422820-Feb-16 6:59 
AnswerRe: My Vote of 5 Pin
Kalvin Lawrence Ernst20-Feb-16 13:41
professionalKalvin Lawrence Ernst20-Feb-16 13:41 
GeneralRe: My Vote of 5 Pin
Member 1128422820-Feb-16 13:58
Member 1128422820-Feb-16 13:58 
GeneralRe: My Vote of 5 Pin
Kalvin Lawrence Ernst20-Feb-16 14:05
professionalKalvin Lawrence Ernst20-Feb-16 14:05 
GeneralRe: My Vote of 5 Pin
Member 1128422820-Feb-16 15:58
Member 1128422820-Feb-16 15:58 
GeneralRe: My Vote of 5 Pin
Kalvin Lawrence Ernst20-Feb-16 16:58
professionalKalvin Lawrence Ernst20-Feb-16 16:58 
GeneralMy vote of 5 Pin
arroway16-Oct-14 21:20
arroway16-Oct-14 21:20 
QuestionReadme Pin
Kalvin Lawrence Ernst15-Oct-14 12:39
professionalKalvin Lawrence Ernst15-Oct-14 12:39 
QuestionReadme.txt ??? Pin
Henk Meijerink12-Oct-14 23:50
Henk Meijerink12-Oct-14 23:50 
AnswerRe: Readme.txt ??? Pin
Kalvin Lawrence Ernst13-Oct-14 11:59
professionalKalvin Lawrence Ernst13-Oct-14 11:59 
AnswerRe: Readme.txt ??? Pin
Kalvin Lawrence Ernst13-Oct-14 12:10
professionalKalvin Lawrence Ernst13-Oct-14 12:10 
GeneralRe: Readme.txt ??? Pin
Nelek14-Oct-14 13:14
protectorNelek14-Oct-14 13:14 
GeneralRe: Readme.txt ??? Pin
Henk Meijerink9-Aug-19 18:59
Henk Meijerink9-Aug-19 18:59 
GeneralRe: Readme.txt ??? Pin
Kalvin Lawrence Ernst9-Aug-19 20:25
professionalKalvin Lawrence Ernst9-Aug-19 20:25 
GeneralRe: Readme.txt ??? Pin
Henk Meijerink10-Aug-19 16:58
Henk Meijerink10-Aug-19 16:58 
GeneralRe: Readme.txt ??? Pin
Kalvin Lawrence Ernst27-Aug-19 13:03
professionalKalvin Lawrence Ernst27-Aug-19 13:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.