Dear Sir,
Thank you for your quick response.
After a little bit of researching,i finally figure it out.
Records was the key.
So with your help I was able to get what i was looking for.
Wish you all the best.
Best regards
Goran
————–
Proposed solution to my own question
To get property ‘columns’ of jqxDataTable we need this:
var col = $(‘#table’).jqxDataTable(‘columns’);
//get records
var records=col.records;
//in the example above we have two columns
//alert(records[0].text) –this prints ‘Ime’
////alert(records[0].width) –this prints 100
With records we can easily see all the properties of ‘column’s (text,dataField,width etc) //we need to have some intelligent code completion