Pages

Tuesday, September 30, 2014

How to change a Title of a wiki page in SharePoint 2013 without affecting its page name and page URL

How to change a Title of a wiki page in SharePoint 2013 without affecting its page name and page URL Please also see my new post on - Easy Way To Change Wiki Page Title In SharePoint 2013 . In a SharePoint wiki page, if we would like to change the “Title” of a page, we would have to change the “Page Name” itself. This becomes very irritating because if we want our page title to be named as for example “My Page Title”, this will also rename the page name. Questions comes how...
Read More »

Friday, May 30, 2014

Could not find this item in Windows 7

Recently, I was trying to delete a file in my laptop (has Windows 7) which threw an error as "Could not find this item" and was not deleting that file at all. After searching for sometime, I finally found a solution which helped me in deleting the file. Here is the solution: 1) Open a Command Prompt. 2) Browse to the folder containing the buggy file. 3) Type 'dir /x' to obtain the 8.3 formatted filename. 4) Delete the file using the 8.3 filename, e.g. 'del 0WELCO~1' (as shown below) Hope...
Read More »

Thursday, April 24, 2014

Open CSV file instead of saving in SharePoint 2013

Usually when we save any CSV file in SharePoint document library and we open it, the browser actually prompts to "Save" the file first and then gives "Open" file option. How to make some settings so that browser allows CSV files to get "Open" instantly without saving them? Here is the solution - In your SharePoint 2013 server, make the settings in “IIS Mime Types” and in “DOCICON” file to open the CSV files from the browser instead of saving them.Steps to follow are:a.      ...
Read More »

Wednesday, April 16, 2014

Implementing Autocomplete Textbox in SharePoint

Implementing Autocomplete TextBox in SharePoint In my recent project activity, I got a requirement to fill the textbox with autocomplete functionality. After some research and struggle, I was able to achieve it. The best thing about the solution I created is, it is cross browser compatible. I have tested it in Chrome and Internet Explorer. What is autocomplete? Autocomplete means when user starts typing the characters in a textbox, just below the textbox, user sees the suggestions. The...
Read More »

Monday, February 10, 2014

How to Hide RadEditor Toolbar

How to Hide RadEditor Toolbar  Requirement No doubt that “Telerik” controls are very useful and they have so much to offer but sometimes there are few things which “Telerik” doesn’t provide to meet our requirement purpose. Hiding “RadEditor” control toolbar is one of them. “RadEditor” control doesn’t comes with any property to hide its toolbar. SolutionSo what’s the solution to hide “RadEditor” control toolbar? Solution is to hide it through a "CSS" class. How?On your page where...
Read More »

Friday, January 10, 2014

Limit Number of Characters in TextArea via JQuery

About: In this example we will see how to limit number of characters to be entered in a HTML textarea. To know more about textarea tag, click here. Pre-requisites: Knowledge of HTML Knowledge of JQuery Introduction: So many times in our application we have to use comment textbox or textarea. In this comment textbox, user can add their comments/views/feedback. What if we would like to have limited number of characters that users can add in them? For that purpose we can use JQuery...
Read More »

Thursday, January 9, 2014

Convert Image To Bytes and Read It Via JQuery

Convert Image To Bytes and Read It Via JQuery Today, I got a requirement to work on a task on how to convert an image (can be in any format i.e. png, jpg etc.) to array of bytes and then read that image via JQuery. After some mind exercise, I finally found the solution and wanted to share with you so that you can save much of your precious time in case you don't know how to achieve it. Note: There can be lots of ways to achieve it but I found this way as the easiest. Here...
Read More »