Lorem ipsum dolor sit amet, consec tetur adipiscing elit. Pellentesque diam sem, hendrerit ut faucibus sit amet, bibendum vel lacus. Nunc molestie magna sed sapien ornare tempus. Curabitur venenatis ipsum nec ligula placerat sollicitudin libero lorem.
Learn more
Aliquam erat volutpat. Pellentesque varius varius elit ac consectetur. Nunc varius, diam ut malesuada aliquam, odio ante faucibus erat, nec semper mauris arcu id turpis. Nulla at tincidunt arcu.
Sed suscipit, metus ac fermentum condimentum, justo lectus vehicula eros, sed accumsan mi risus ut velit. Donec sollicitudin lacus vitae mauris mattis tempor.
Navigation Screen Using React Navigation : Part 10
December 12, 2018 / by stw / Javascript frameworks, Reactnative / 0 comments
Post Views: 522 Navigation in react native is based on many plateform which you can install and use from npm. I am going to use here react navigator So open terminal or command prompt and run this command npm install –save react-navigation If you want to read more about react navigation please go here https://facebook.github.io/react-native/docs/navigation.html When […]
Read more
Calling Screens in Stack Navigator : Part 11
December 2, 2018 / by stw / Javascript frameworks, Reactnative / 0 comments
Post Views: 504 Calling Screens In Stack Navigator- Here one need to notice. When we use navigation we should call all component through navigator props. If you will include direct then props from one component to another component will not go and we get error when navigate. So before video play we will change all […]
Read more
Calling component by navigation props : Part 12
November 11, 2018 / by stw / Javascript frameworks, Reactnative / 0 comments
Post Views: 529 Calling component by navigation props- So first open App.js . In this file we have called Index component so now we will call this using navigation here So make a function renderIndex before render() function and call it in return renderIndex() { this.props.navigation.navigate(‘Index’); } And in return () function after header component replace <Index /> with { this.renderIndex() […]
Read more
Creating component to display video : Part 13
November 1, 2018 / by stw / Javascript frameworks, Reactnative / 0 comments
Post Views: 481 Creating Component To Display Video – So I added further now we wil make a new file in components folder ViewVideo.js Now we will start adding code in that so first import React and Component import React, { Component } from ‘react’; import { View, Text } from ‘react-native’; class ViewVideo extends […]
Read more
Passing Navigation props to screen : Part 14
October 12, 2018 / by stw / Javascript frameworks, Reactnative / 0 comments
Post Views: 515 Passing Navigation props to screen – Open View Video.js file and get props video id . so our code should be to get value. this.props.navigation.state.params.vidid; so add const videoId = this.props.navigation.state.params.vidid; Now we can call { vidid } and use to display videoid which is clicked on VideoList page. So to check it […]
Read more
Modifying Navigation & Header : Part 15
October 2, 2018 / by stw / Javascript frameworks, Reactnative / 0 comments
Post Views: 531 Modifying Navigation & Header – Copy api key and add in ViewVideo youtube parameter which was null. Now your code is ready to play video. But you can see a arrow in header of page. If you would like to remove it you nee to pass a option in navigator. So add […]
Read more
Steps to upgrade Online CRM to Dynamics 365
September 13, 2018 / by stw / Dynamics CRM / 0 comments
Post Views: 599 Steps to upgrade Online CRM to Dynamics 365 – Microsoft Dynamics 365 CRM out into the market and to use new features like field services etc, you have to upgrade online CRM to 365. Upgrading online CRM is very confusing as users have not full control over instance and have fear to lose […]
Read more
Adding Content Templates to Editor in Kentico 9
September 3, 2018 / by stw / Micrososft, Web development / 0 comments
Post Views: 676 Adding Content Templates to Editor in Kentico 9 – It’s handy to adding site typography as content templates in Kentico CKeditor. Follow steps given below to add and customize CKeditor toolbar and include new content templates. Important : Must check Kentico CKeditor version to download content templates from given link http://ckeditor.com/addon/templates. Step1: Download sample content template […]
Read more
Connection from PHP to Microsoft Dynamics CRM
August 14, 2018 / by stw / Dynamics CRM, Micrososft, Web development / 0 comments
Post Views: 1,071 Connection from PHP to Microsoft Dynamics CRMThis time we will learn how to connect Microsoft dynamics CRM using PHP code. Microsoft dynamics CRM soap service can be a way to make calls from PHP source code. A valid soap header is required to execute soap request. Let’s see how to create a valid header using […]
Read more
Dynamics CRM 2015 setup a demo Virtual Machine.
August 5, 2018 / by stw / Dynamics CRM, Micrososft / 0 comments
Post Views: 506 Dynamics CRM 2015 setup a demo Virtual Machine. With most MicroSoft products this is pretty easy to setting up, but Dynamics has a more heavier requirements list. The prerequisites include: Windows Server Active Directory (yep you’ll need to setup a domain controller) SQL Server Server 2012/2014 Reporting Services 2012/2014 let’s get started: Step 1: […]
Read more