Tony,
Just to have this as a seperate topic. The value from the custom input field is not sent to the server. The fix is very easy and might apply also for inline editing.
In file grid.formedit.js around line 543. you will find the following:
if($(this).hasClass(”customelement”))
In that situation, $(this) is in fact the container of the input element =>
Therefore it will never have the class customElement.
Solution:
Change
$(this)
to
$(this).children(”input”)[0]
PS: There might be a better way to get the child control. Would like to learn it!
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top