I am wondering if it is possible in ExtJS to have multiple data source values โโavailable for a column renderer. For example, in the "Actions" column, the identifier is passed to the visualizer. However, I need both user_id and id to be passed to the renderer. How can i do this?
table_cols = [{ header: "User ID", width: 30, sortable: true, dataIndex: 'user_id' }, { header: "Actions", width: 60, sortable: false, dataIndex: 'id', renderer: function(val) {
Thanks.
javascript extjs
Podlsk
source share