Blog

November 30, 2010
Full text option is greyed out in MSSql 2008

Today I was trying to setup fulltext indexing on one of my database table. I have finish with creating fulltext catelog and tried to right click on table to create fulltext index but option was greyed out and there is no way to create index. This is becuse Full-text index was diabled at database leve you can enable it by running below statement.   use [mydatabase name] go EXEC sp_fulltext_database 'enable'   That's it and refresh table group and option is enable now ...

Read More
Comments(0)
Tags: SqlServer
November 20, 2010
jQuery Enable/Disable Specific date

Hello Friends,

In web application most of people use jQuery, jQuery UI and jQuery Plug-ins. Why not? First of all it's free and it reduces no. of code. Any way what i want to say is today one of my client wanted to download data according to date. i.e. Data generated on specific date. Date will be increase day by day so I thought what I need to do? Suddenly, there is a click in mind jQuery UI Datepicker has ability to enable/disable date so I just googled for that and got the code. I really thank TutorBoy.com as they have done this beauty of a code. Let's see below code how to enable/disable date using jQuery UI datepicker. I hope it may be helpful for you.

Read More
By Bharat Patel
Comments(2)
Tags: jQuery
November 11, 2010
innerHTML vs appendChild

 

Today I was testing my code, and I found interesting stuff on innerHTML and appendChild method.

I was trying to add new elements to the div.

First, I was creating element by calling DOM method (document.createElement()) and then I append it to my div by calling appendChild() method of the HTML div element.

 

Read More
By Vikas
Comments(0)
Tags: DOM, HTML, JavaScript