Tutorial by Topics: 5

What is SAPUI5? Based on the theory above, SAP introduced an HTML5-based development toolkit, SAPUI5, which encourages one consistent user experience. By utilizing the theory above, apps built using SAPUI5 are responsive across browsers and devices - they run on smartphones, tablets, and desktop...
This section provides an overview of what asp.net-mvc-5 is, and why a developer might want to use it. It should also mention any large subjects within asp.net-mvc-5, and link out to the related topics. Since the Documentation for asp.net-mvc-5 is new, you may need to create initial versions of t...
Laravel is a MVC framework with bundles, migrations, and Artisan CLI. Laravel offers a robust set of tools and an application architecture that incorporates many of the best features of frameworks like CodeIgniter, Yii, ASP.NET MVC, Ruby on Rails, Sinatra, and others. Laravel is an Open Source fram...
To get more information on deploying Laravel project on shared hosting, visit this Github repo.
MDN documentation for imports: https://developer.mozilla.org/en/docs/web/javascript/reference/statements/import MDN documentation for exports: https://developer.mozilla.org/en/docs/web/javascript/reference/statements/export ExploringJS chapter on modules: http://exploringjs.com/es6/ch_modules.ht...
public function map(Router $router) // Define the routes for the application. protected function mapWebRoutes(Router $router) // Define the "web" routes for the application. ParameterHeaderRouter $router\Illuminate\Routing\Router $router Middleware means that every call to a ro...
Async & Await public Task MyTaskAsync(){ doSomething(); } await MyTaskAsync(); public Task<string> MyStringTaskAsync(){ return getSomeString(); } string MyString = await MyStringTaskAsync(); Caller Information Attributes public void MyCallerAttributes(string MyMes...
Visual-Studio-2015 is an IDE developed by Microsoft. It has a user-friendly interface and it is easy to work with, it also support Git repository for managing projects and Xamarin Studio(Mono Develop) to develop android soft wares. It mostly supports C# , VB(Visual Basics) , F# and C++ programmi...
In the first versions of iText, there was only one font class: Font. With this font, you could create a Font object for fourteen fonts from five font families: Helvetica (regular, bold, oblique, bold-oblique), Times Roman (regular, bold, italic, bold-italic), Courier (regular, bold, oblique, bold...
Creating a document in which you have to switch between styles frequently tends to be tedious in iText 5. You need to create a lot of Chunk objects and you always have to make a trade-off between applying the styles directly to every new Chunk or creating a helper method that creates the Chunk for...
The iText 5 class names PdfPTable and PdfPCell were chosen because we already had classes named Table and Cell to create table and cell objects at the highest programming level. There was also a class named PdfTable to be used by iText internally. Those classes had a lot of flaws and they were dep...
The code to convert a plain text file to a PDF document is pretty simple whether you use iText 5 or iText 7. In iText 7, you have the advantage that you can define the alignment at the level of the document. In iText 5, you have to set the alignment for every separate Paragraph object. To underst...
In iText 5, you can't use the add() method to add a Paragraph to a Document if you want to organize the content in columns. We can't reuse the code of the Text2Pdf.java (iText 5) example. Instead we have to create a ColumnText object, we have to add all the Paragraph objects to this object, and o...
In iText 5, we introduced the concept of page events to allow developers to add specific behavior when a document is opened, when a new page is opened, when a page ends, and when a document is closed. In the documentation, we made it very clear that it was forbidden to add content in the onStartP...
In the original design for iText, it was possible to create a high-level Document object, and then have different DocListener objects listening to that Document object. This was achieved by using different writers: a PdfWriter, an HTMLWriter, and an RtfWriter. When using a PdfWriter, a PdfDocument...
{productId:int}/{productTitle} Mapped to ProductsController.Show(int id) {username} Mapped to ProfilesController.Show(string username) {username}/catalogs/{catalogId:int}/{catalogTitle} Mapped to CatalogsController.Show(string username, int catalogId) Routing is how ASP.NET M...
var oTable = new selectAllVisibleRowsTable({... //alternativelty can use new sap.ui.table.Table sap.ui.table.Table.extend('selectAllVisibleRowsTable', { ..... // here table name is in quotes Official documentation for sapui5 table that provides only API specification. https://sapui5.han...

Page 1 of 3