Alex (SirShurf) Frenkel's Blog

A web log of a PHP professional

Archive for the ‘jQuery’ Category

Gravity Forms Popup Widget ver. 0.2

leave a comment »

Per a couple of requests I have updated Gravity Forms Popup Widget to a version 0.2.

The changes in this version are:
* Updated to work with WordPress 3.3.
* Added an option to set a position for the window location on opening.

As a side note, by the help of Andy here is a working installation of the plugin:
http://gatehouserental.com/house-houses-4-bedroom-house-for-rent-in-sawtry-close-to-huntingdon/4053/

Thank you Andy for you link and for your feedback.

Advertisement

Written by Alex (Shurf) Frenkel

December 21, 2011 at 7:03 pm

A new generic module for Zend framework – Menu Module

leave a comment »

I have created a new generic self containing module that works with Zend framework MVC application.

The module is a Menu Module, it manages menu for MVC application and using a bootstrap and substitutes it over the menu added in the config.

Here is the link to it:
https://github.com/sirshurf/MenuModule

Currently it depends on my jQGrid Library https://github.com/sirshurf/iphp and on Belleron-Frenkel library (an extension on Zend Framework standard modules) https://github.com/sirshurf/Belleron-Frenkel

Any help/idea is welcomed 🙂

Written by Alex (Shurf) Frenkel

October 22, 2011 at 12:10 pm

Posted in IDE, jQGrid, Uncategorized, Zend Framework

Tagged with , , ,

jQGrid with Zend Framework Updated

with 9 comments

Recently I had some time to update the fork I have of the jQGrid encapsulation for Zend Framework.

Among the things updated is:
* Support for jQGrid 4.1.
* Support for methods in options.
* 2 new decorators
* New special decorator, a multi select element on grid search.
* Support for advanced search

And many more…
You can locate the code at my GitHub:

If you dont use jQGrid it is an Ajax-enabled JavaScript control that provides solutions for representing and manipulating tabular data on the web.

Written by Alex (Shurf) Frenkel

August 22, 2011 at 7:19 pm

How to hide a Table Column with jQuery

leave a comment »

One of the things I mostly need is a way to hide a table column fron view.

Lastly I have found how to do it with one line on jQuery code and the usage is simple.

$(document).ready(function() {
$('#btnHide').click(function() {
$('td:nth-child(2)').hide();
// if your table has header(th), use this
//$('td:nth-child(2),th:nth-child(2)').hide();
});
});

Thanks for that code to Suprotim Agarwal at DevCurry.com

Written by Alex (Shurf) Frenkel

May 18, 2010 at 3:55 pm

Posted in JavaScript, jQuery

Tagged with , ,