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

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({...

Related

Warp framework automatically converts theme for RTL. How disable it?

I use warp framework 7. After developing theme for persian (rtl language), I had to install joomla language pack for persian. When i activate it for frontend, warp framework converts every 'left' to 'right' and every 'ltr' to 'rtl' automatically in less files while compiling to css. But i don't need this feature now!
Can i disable it? How?
I have found the solution. just should edit this file:
TEMPLATE_FOLDER\warp\systems\joomla\src\Warp\Joomla\Helper\SystemHelper.php
I changed $this['config']['direction'] = $this['config']['direction']; to $this['config']['direction'] = 'ltr';.
This will disable auto converting everything in RTL activated sites.

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

Ck editor displaying tags on content load in phone browsers

I am using ck-editor 3.6.6.1 on a MVC project and I noticed when testing on Phone(android,windows) that editor does not loading text properly. Editor is Displaying Tags as well.
But when I tested in system it is working very much fine with all the browsers.Just wondering why it is not working in phone browsers. Please help me in this issue.
Thanks in Advance!
CKEditor can be Enabled in Unsupported Environments
It will work on ckeditor version 4.X (it gives option to enable compatibility)
So download latest version of ckeditor and add this script
<script>
CKEDITOR.env.isCompatible = true;
</script>
Source Website
If you use razor page use this code to solve it:
#Html.Raw(your text)

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

how do i know what version of jqgrid i am using

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

Resources