Hello,
I would like to create a rather complex editable grid. I am working on an expense from where a user can submit bi-weekly expenses. Each row has the following columns
- id, a running number, which should increase or decrease as I add or remove a row. This column is read-only.
- expense type, this is a dropdown box, where I can select from a list of predefined expense types.
- receipt drop down, where I can indicate whether I have a the original receipt.
- the amount claimed, which cannot be higher than the receipt total. This is a required field.
- the receipt total. This is a required field.
- the claimable VAT which is calculated based on the receipt total, the expense type and whether the original receipt exists. This column is read-only.
Fields that are currency fields should show the USD sign followed by the amount: e.g. $ 1,000.00.
For each column I would like to provide help text which should show when I click in the field.
The user should be able to save the expenses until he wants to submit the expenses. Only one active open expense sheet should be allowed per user.
I have created an editable grid to capture the expenses and know how to store the information in a database but how would I create the above functionality like drop downs, currency format, read-only field, calculated field, etc.
Thanks