Skip to main content

Posts

(my) Management v/s Leadership

The Wall Street Journal Guide to Management” by Alan Murray describes -  Leadership and management must go hand in hand. They are not the same thing. But they are necessarily linked, and complementary. Any effort to separate the two is likely to cause more problems than it solves. I read the above lines from someone from LinkedIn who actually sent me a personal email regarding one of my   crazy blog posts. I didn’t want to reply because I know the basic electronics and the post was more about my fiction than the actual electronics. One day I was casually browsing through his LinkedIn profile and found some interesting articles relating to leadership, management and technical leadership. Since then I was thinking to write about the leadership and management. I usually take my writing through some famous quotes, in this case also no difference . Recently I have just finished reading the autobiography of the Indian   Guru Osho and I like to elucidate my leader...

Bootstrap Server Side Sorting Cont....

On my previous post   I had already mentioned about how to apply the sort to Bootstrap paginated tables. By making the following changes server side sorting can be achieved along with pagination. On Filter Model self.sortBy = ko.observable( 'Id' );//Default sort Column self.sortAscending = ko.observable( false ); self.iconType = ko.observable( 'glyphicon glyphicon-chevron-down' ); // Icon to appear near Column No Changes to Adarsh Log Model or Adarsh Log list Model Knockout.js View Model for Adarsh Log Changes Add the sortTable  method to it self.sortTable = function (viewModel, e) {             var columClicked = $(e.target).attr( "data-column" )             var sortAscending = (self.filter().sortAscending() === true ) ? false : true ;             self.filter().sortAscendi...

Bootstrap Server Side Pagination - alternative to data tables

Background Most of the Web developers are familiar with the Datatable.Net for pagination. DataTables can integrate seamlessly with  Bootstrap  using Bootstrap's  table styling options  to present a consistent interface with your Bootstrap driven site / app. The main disadvantage with Data table.net is it is applying the pagination at the client side and for the large data set it can take minutes to load the data. Like every other designer I also faced the problem with Data table.net. So what is the best option to replace the client side paging and searching. So I forced to create a custom module to do the pagination and searching. The below sample don’t support the sorting, but got an option to extend the functionality. Please check my Next Post for sorting functionality The technologies used include, MVC 4.0, HTML5, Bootstarp.css, Knockout. js, Ajax, Web Api 2.0, Linq to SQL and C#. Knockout.js Model’s Filter Model var filter = function (...