Alex (SirShurf) Frenkel's Blog

A web log of a PHP professional

Posts Tagged ‘JQuery

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

JQuery & CSS Dropw down menu

leave a comment »

I have been looking for a long time for a JQuery/CSS drop down menu that would not clash with Zend Framework, and especially with Zend Navigation.

This is the one that comes closest:
http://www.noupe.com/tutorial/drop-down-menu-jquery-css.html

Written by Alex (Shurf) Frenkel

August 23, 2011 at 10:17 am

Posted in Uncategorized

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 , ,