How to add unbound quantity textbox in grid?

I have to add one quantity textbox column in the grid. I don’t need to save this quantity value in the database. So, i thought unbound textbox will help me.

I also have to access this value from button click.

Please guide me.

Yes that can be possible. Go to your Form>design and add the required control type and make it AutoDeclaration property to YES. Now you can call this control value in the button click using - FieldControl.ValueStr()

Hi Vishal Tiwari,

Thanks for your reply. I have to add that control on the grid control. I am not sure that how to get the quantity values for each grid lines.

I have added one real edit control on the grid, but i can’t give individual value per line.

For ex:

If i give 5 value to the first line quantity control, remaining lines quantity values are also changed to 5. So, i can’t give individual values to each line.

Thanks,

Hari

Hi All,

Is there anybody have an idea?

Thanks,

Hari

Hi All,

I found one solution.

I used an edit method and store the values in map class. So, it is working fine.

Thanks,

Hari