how do i know what version of jqgrid i am using - jqgrid

i have a asp.net project and its using jqgrid as the javascript grid. How can i find out what version of jqgrid is being used?

If you need to query the version programmatically you can use:
$.jgrid.version
Example:
alert($.jgrid.**version**);

have you tried opening up the file jquery.jqGrid.min.js and looking at the first line of comments?
Mine says;
/*
* jqGrid 3.5.1 - jQuery Grid

Related

Guriddo jqGrid v5.3.0 on Bootstrap 4 and Font Awesome Icons

Checking if the latest version of Guriddo jqGrid v5.3.0 is the right fit for me. Due to the fact that Bootstrap 4 doesn't have glyphicons anymore, is it possible to use Font Awesome Icons with the jqGrid v5.3.0? If yes, can someone provide a sample code?
Thank you.
The current release of Guriddo jqGrid 5.3 support Octicons and Iconic icon sets, which are officially recommended from Bootstrap . We plan to support Font Awesome in the next bug fix release
Just add:
$.jgrid.defaults.styleUI = 'Bootstrap4';
$.jgrid.defaults.iconSet = "Iconic";
$.jgrid.defaults.iconSet = "fontAwesome";
Before:
$("#jqGrid").jqGrid({...

Joomla TinyMCE deletes empty span

I want to use following tag
<h4><span class="icon-phone"></span></h4>
but TinyMCE from Joomla always deletes it, when i save it.
I find the solution that i have to add span[*] to "Extended Valid Elements" in Options from TinyMCE in PluginManager. but it doesn't work. It always delete it again and again. I searched here for a while and found some articles which was similar to my problem but doesn't solve it.
I use Joomla Version 3.3.6 and the plugin is 4.1.2.
Hope somebody can help.
Best Regards,
Dennis
Welcome to TinyMCE, my most hated editor ever.
I've had the same problem multiple times and I believe it's because the editor expects content within the element. So try the following:
<h4><span class="icon-phone"> </span></h4>
is simply a non breaking space
go to: Joomla! administration - Extensions - Plugins - edit Editor - TinyMCE
Set the following parameter:
Extended Valid Elements: span[class|style]
This works for me in Joomla! 3.5 (plugin version 4.3.3)

Where to get older version od kendo ui open source?

Im interested in getting an older version of Kendo UI open source, specifically the Kendo.Web - 2012.3.1114 release. I need it beacause im using jquery 1.8.3 in my project and i cant change that. So the question is: Where can i get these specific realese?
Thanks in advance
They are all available on kendo's cdn.
http://cdn.kendostatic.com/2012.3.1114/js/kendo.web.min.js
http://cdn.kendostatic.com/2013.3.1119/styles/kendo.default.min.css
http://cdn.kendostatic.com/2013.3.1119/styles/kendo.common.min.css

jQuery TinyMCE advimage Missing

advimage is missing from the jQuery package for TinyMCE 4. I tried to use the one from an older version but that didn't work. Where can I get the plugin that will work with TinyMCE 4?
You cannot. These plugins were for 3.x series of TinyMCE, in 4x series the below mentioned plugins have been removed.
advhr, advimage, advlink, iespell, inlinepopups, style, emotions and xhtmlxtras
See this for complete details: http://www.tinymce.com/wiki.php/Tutorial:Migration_guide_from_3.x

help fix iCheckbox to work with jQuery 1.6 (works with 1.4.4)

I need help getting a jQuery plugin (iCheckbox) to work with jQuery 1.6
I set up an example here:
http://jsfiddle.net/mikkelbreum/HAGMp/
If you load jQuery 1.5.2 instead of 1.4.4 the sliding animation stops working. But the change event still fires and changes the output txt.
If you load jQuery 1.6 The animation is still broken, and the change event also stops firing (or the output txt is not changed at least.
got it.
There were two problems with the code one making it incompatible with jQuery 1.5 and 1.6 and one making it incompatible with jQuery 1.6.
The first problem was the use of the
backgroundPosition property
in the animate calls, they needed to be changed into the
backgroundPositionX property
for jQuery 1.5 and 1.6
The second problem was the check for whether the checkbox is checked or not.
In jQuery 1.4 and 1.5 this could be done with
if ( $(this).attr('checked') == true )
but in jQuery 1.6 this does not work, it need to be changed into
if ( $(this).is(':checked') )
The code found here works for jQuery 1.6: http://jsfiddle.net/mikkelbreum/HAGMp/

Resources