Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
In my form I used Ribbon control in that RadioGroup and barCheckEdit item are used for calculations. Now I need to store content of form and want to retrieve it back if I click in Gridview. I can able to store and retrieve textedit, lookup edit and checkedit outside Ribbon Control. How to store and retrieve the Items from Ribbon Control ??
Posted

Since you paid a lot for a premium Control Suite from DevX, why not ask on their support forums. Also, many full-featured suites offer their own custom serialization and de-serialization facilities: those should be described in the DevX documentation.

A quick Google search on devx+serialize+ribbon+control suggests that information is available on the DevX site: [^].
 
Share this answer
 
Comments
srihari1904 16-Dec-13 1:25am    
I didn't get exact answer from them so I asked here.
I just store barEditItem.EditValue which is the selected item in the RadioButton.

I have int as EditValue. So this should be enough.

C#
int selectedItem = (int)barEditItem.EditValue;//To Store


C#
barEditItem.EditValue = reader.GetInt32(index);//To retrieve back 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900