Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
i'm trying to create a document Extension, that appends a click a Event to a column of a straigth table.
How can I select a straight table with jquery, object ID ?
example to select a TextBox with 'table.TextObject'
Thanks
Qva.AddDocumentExtension('Click', function () {
var oldcss = "";
this.Document.SetOnUpdateComplete(function () {
$('table.TextObject').click(
function (){
oncvlrowclick();
});
window.oncvlrowclick = function(rowIx) {
$.ajax({
alert('Click');
};
//