Hi,

I am working on QTable and QTableItem. I have a table containing three columns(Name, Extension, Size) . I am inserting checkable item in col first and Extension is readonly and Size col is editable. I am using QT 3.3.5. I am using the following code for the table item insertion:-

int j=0;
int k=0;
table1->setItem( j, 0, new QCheckTableItem( table1, Name ) );
table1->setItem( k, 1, new QTableItem( table1, QTableItem::Never,ExtensionName ) );
j++;
k++;

Now My problem is that
1) I want to iterate through the each columns items.
2) I want to get no. of Checked items in first col and item also.
3) Third column is editable but when i double click on this column then only the cursor for editing appears, how i can do this on single click and give focus to edit.
4) When i inserting using the above code then last row is inserted which only have checkbox.

Best Regards