-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added parameters - this, value and options in editoptions.value objec…
…t when it is a function. See: #1049
- Loading branch information
Showing
6 changed files
with
100 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/** | ||
* | ||
* @license Guriddo jqGrid JS - v5.8.5 - 2023-10-23 | ||
* @license Guriddo jqGrid JS - v5.8.5 - 2023-10-30 | ||
* Copyright(c) 2008, Tony Tomov, [email protected] | ||
* | ||
* License: http://guriddo.net/?page_id=103334 | ||
|
@@ -9409,7 +9409,9 @@ $.extend($.jgrid,{ | |
ovm = vl.split(","); | ||
ovm = $.map(ovm,function(n){return $.jgrid.trim(n);}); | ||
} | ||
if(typeof options.value === 'function') { options.value = options.value(); } | ||
if(typeof options.value === 'function') { | ||
options.value = options.value.call($t, vl, options); | ||
} | ||
var so,sv, ov, oSv, key, value, | ||
sep = options.separator === undefined ? ":" : options.separator, | ||
delim = options.delimiter === undefined ? ";" : options.delimiter; | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.