September 3, 2018 / by Sandeep Mishra / Micrososft, Web development / 0 comments
Post Views: 937 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
Navigation Screen Using React Navigation : Part 10
December 12, 2018 / by Sandeep Mishra / Javascript frameworks, Reactnative / 0 comments
Post Views: 737 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 Sandeep Mishra / Javascript frameworks, Reactnative / 0 comments
Post Views: 726 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 Services / Javascript frameworks, Reactnative / 0 comments
Post Views: 729 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 Services / Javascript frameworks, Reactnative / 0 comments
Post Views: 700 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 Services / Javascript frameworks, Reactnative / 0 comments
Post Views: 715 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 Services / Javascript frameworks, Reactnative / 0 comments
Post Views: 695 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 Sandeep Mishra / Dynamics CRM / 0 comments
Post Views: 845 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 Sandeep Mishra / Micrososft, Web development / 0 comments
Post Views: 937 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 Sandeep Mishra / Dynamics CRM, Micrososft, Web development / 0 comments
Post Views: 1,650 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