Is there any other Server Driven Ajax Framework similar to Jquery Mobile ( which can fetch a complete page without refresh and update the ui ) for normal Ajax Web Application instead of Mobile Web Application ?
Thanks.
There's nothing at all stopping you using jQuery Mobile for a 'desktop' web application rather than a mobile web application. You may need to tweak the css slightly.
Related
Suppose we have a primary web page that most of our business logic in form of modules will appear inside this web page and it will trigger lots of other functionalities, something like dotnet nuke default.aspx. we are going to use this web form in a mobile application, my question is, is it possible to transfer my primary web page via web Api or in other word adding a web service endpoint at top of Web Page(layer) to transmit both web page UI and its logic?
Thanks.
I am using AngularJs to submit a form to a Sharepoint WCF service.
What is the best way to upload file attachments using AJAX, supporting all browsers?
The solution is for AngularJs as frontend and NodeJs as backend. but you can also use it with .net and WCF as backend if you are using Angular for ajax request. please follow the link below
https://ciphertrick.com/2015/12/07/file-upload-with-angularjs-and-nodejs/
I am trying to develop the application using Kendo UI. This will be html application using Kendo UI and the data will be provided by Web API.
The main purpose is i want this application to be offline enabled. Means if there is no internet connection then also it should serve the cached page.
By doing some research i came across Kendo UI Offline Handling.
Here is my understanding by after refering the above link:
As per my thinking this approach will be used when the WEB API is off due to some reason but then also the html pages will serve the cached data contents. But to do this my html application should be working live ( using internet ).
Am i correct ?
If i am correct than what should i in order to make my application serve the user without internet connection ( offline mode ) using html and Kendo UI. ?
Thanks
To enable a web application to be useful offline you need to think about how to persist its data, such as application data, user data and session state, on the client. I suggest you do some research on the Web Storage API and go from there.
I'm working on a mobile web-app using HTML5 and sencha touch. My next step is to add some native capability using phonegap. My app uses Ajax requests to retrieve data from a server component and i am not sure if ajax will work within phonegap packed apps? Should i use JSONP instead?
No need for JSONP. Since the html files are local files, there is no cross domain restriction.
I'm designing a web service that serves up JSON through a REST API. This API is currently being used by an iPhone app to do CRUD operations.
My question is, can I design a web client that uses this REST API using nothing more than ExtJS (or some other RIA framework) and HTML pages? In other words, can I create a static HTML page that uses ExtJS to send AJAX calls to the REST API and receive JSON data from it? Or is this thinking too naive and wrong?
I think this is perfectly acceptable as long as you know that your users browser will be able to handle javascript and AJAX accordingly.
Yes! YES! You can use static html and js files, served by any web server, to build an Ext JS application. Ext JS is very happy to talk REST and JSON to your web service.
Build your Ext JS application outside of ASP.NET MVC. You don't need it.