ASP.net
Awesome
Learn
Forum
Buy
Demos
Sign In
☾
☀
Switch to
Dark
Light
Mode
this site works best with javascript enabled
Ask Question
How to use aweinlineedit get grid row key value, and other row item values
Title:
B
I
{code}
?
$('#ZOB_TargetGrid').on('aweinlineedit', function (event, data, requestData) { var row = event.target.length; var hid_ID = "#" + "@GridID" + "????"; var hid_???? = "#" + "@GridID" + "????"; }); data is null requestData is null
Save Changes
Cancel
RayBen
asked at 20 Aug 2024
Answers
B
I
{code}
?
To get the grid row key and the grid row model from an `aweinlineedit` event handler you could do this: $('#DinnersInlineCrudGrid').on('aweinlineedit', function(e) { var elm = $(e.target); var k = elm.data('k'); var item = aweUtils.model(elm); console.log(k, item); });
Save Changes
Cancel
Omu
answered at 20 Aug 2024
Thanks!! It is work vary good!!
at 20 Aug 2024
RayBen
please
Sign In
to leave an answer
By accessing this site, you agree to store cookies on your device and disclose information in accordance with our
cookie policy
and
privacy policy
.
OK