This topic is locked

print with jquery

3/19/2019 10:51:20 AM
PHPRunner General questions
A
ayctech author

hi, in my grid of articles (id_articulo) with the option "List of pages with search", when wanting to print with jquery, this is not printing but if it works with JavaScript, I need to print it with jquery because I do other calculations in the header and the id_article is in the detail
var id_articulo = Runner.getControl(pageid, 'id_articulo');
id_articulo.on('change', function(e){

alert ( $('input[id^=display_value_id_articulo]').text());

alert (id_articulo.getValue());
});


Adding the _8 does not work either.
alert ( $('input[id^=display_value_id_articulo_8]').text());