Forum

November 2nd, 2014
A A A
Avatar

Lost password?
Advanced Search

— Forum Scope —




— Match —





— Forum Options —





Minimum search word length is 3 characters - maximum search word length is 84 characters

The forums are currently locked and only available for read only access
sp_Feed Topic RSS sp_TopicIcon
getRowData stupid question
28/11/2010
18:09
Avatar
justmara
New Member
Members
Forum Posts: 1
Member Since:
28/11/2010
sp_UserOfflineSmall Offline

why this method (getRowData) has such confusing name?

it doesnt returns the DATA you've provided for this row (using setRowData for example), bu instead ti returns only formatted values of visible columns.

and as I see in code - the original data itself doesn't even stored, so there isn't any way to retrieve original data you've added to grid? this is stupid.

29/11/2010
11:56
Avatar
waiting
Member
Members
Forum Posts: 40
Member Since:
22/12/2008
sp_UserOfflineSmall Offline

If you use Predefined Formatter to format date , then getRowData() will return ori value.

If you use Custom Formatter    then you get formatted value. You need Unformatting to retrive value

Unformatting

As mentioned in Predefined Formatter chapter all predefined types are compatible with the editing modules. This means that the numbers, links, e-mails, etc., are converted so that they can be edited correctly. Also the methods (like getRowData and getCell) that get data, used this unformat in order to get the original value. The question is: What to do if we use a custom formatter function and want to to have the original value back if we use editing or methods getRowData and getCell?

The answer is: You can use your own custom unformatter function to do that. This function can be used in colModel

<script>
jQuery("#grid_id").jqGrid({
...
colModel: [
...
{name:'price', index:'price', width:60, align:"center", editable: true, unformat:myunformatfunc},
...
]
...
});
function myunformatfunc ( cellvalue, options, cellobject)
{
// do something here
return unformated_value;
}
</script>

http://www.trirand.com/jqgridwiki/doku.php?id=wiki:custom_formatter

Forum Timezone: Europe/Sofia

Most Users Ever Online: 715

Currently Online:
67 Guest(s)

Currently Browsing this Page:
1 Guest(s)

Top Posters:

OlegK: 1255

markw65: 179

kobruleht: 144

phicarre: 132

YamilBracho: 124

Renso: 118

Member Stats:

Guest Posters: 447

Members: 11373

Moderators: 2

Admins: 1

Forum Stats:

Groups: 1

Forums: 8

Topics: 10592

Posts: 31289

Newest Members:

, razia, Prankie, psky, praveen neelam, greg.valainis@pa-tech.com

Moderators: tony: 7721, Rumen[Trirand]: 81

Administrators: admin: 66

Comments are closed.
Privacy Policy   Terms and Conditions   Contact Information