"Play any kind of video ".
I was working on IE-8. Here is the code I use to integrate video in my page.
Example:
<html>
<body>
<link href="//releases.flowplayer.org/5.5.0/skin/minimalist.css" rel="stylesheet"></link>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//releases.flowplayer.org/5.5.0/flowplayer.min.js"></script>
<div class="flowplayer">
<video>
<source src="http://www.W3Schools.com/tags/movie.mp4" type="video/mp4"></source>
</video>
</div>
</body>
</html>
Tuesday, 30 September 2014
Friday, 12 September 2014
Error occurred in deployment step 'Retract Solution': The language-neutral solution package was not found.
I was working on one project when i got this error while deployment and i have Google it. I found some solution which are as below
- Close Visual Studio Solution and completely exit out of it, then run it again and compile. This sometimes fixes the issue.
- Right-Click on your Visual Studio Solution, select "Clean" Solution, then Right Click on SharePoint Project and choose "Retract". Rebuild and Deploy.
- In PowerShell running as Administrator run Uninstall-SPSolution:
- Unistall-SPSolution -identity {Name of WSP File} -allwebapplications
- In PowerShell running as Administrator run Remove-SPSolution: Remove-SPSolution -identity {Name of WSP File} -force
- In PowerShell running as Administrator run the Delete() command: (Get-SPSolution {Name of WSP File}).Delete()
Original Source : language-neutral-solution-package-Error
But In My problem I do not Find WSP to uninstall. so what to do in such condition:
Just Follow this step:
- Open Your solution and Publish the Project. This will create wsp in Bin folder of your project.
- Open cmd in Administrator mode and enter this path; cd C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\BIN\
- Then type following command to add wsp : stsadm -o addsolution -filename <path of .wsp file>.
- Then type following command to add wsp : stsadm -o deploysolution -name <name of .wsp file> -url <site url> - immediate -allowgacdeployment -force.
this work for me. when i deploy again it run as smoothly as it could.
Thursday, 11 September 2014
javascript keypress event
Sometimes we need to handle enter key event on textbox. For that we can use fiollowing code
$('#myInput').keypress(function(event) {
if (event.keyCode == 13) {
alert('Entered'); // write your code here
}
});
myInput : textbox/ input control id
event.keyCode : The e key value you needed.
Here are some key values:
$('#myInput').keypress(function(event) {
if (event.keyCode == 13) {
alert('Entered'); // write your code here
}
});
myInput : textbox/ input control id
event.keyCode : The e key value you needed.
Here are some key values:
|
|
|
Subscribe to:
Posts (Atom)
-
In last blog we learn how can we enable footer on SharePoint Online Modern Communication site. If you have not gone through that you can use...
-
One of our client wanted to show Employee Directory and our first suggestion was to build custom SPFx which will fetch data from Azure AD or...
-
Recently I was working on sending mail using smtp server where I stuck on below error: IIS/SMTP - emails are stuck in mailroot/Queue ...