I have a situation where I need to create both dynamic layout and dynamic positioning with RadDockZones.
All the example I have seen are using RadDockZones created in design-time. I have managed to create RadDockZones in run-time but have problem to positioning them correctly. I want to be able to arrange them like the cells in the below example. But how can I do that with dynamically created RadDockZones which are handled the same as normally divs I guess.
I can manage it if I create the layout in design-time if I put a RadDockZone in each cell.
Hope anyone can help.
All the example I have seen are using RadDockZones created in design-time. I have managed to create RadDockZones in run-time but have problem to positioning them correctly. I want to be able to arrange them like the cells in the below example. But how can I do that with dynamically created RadDockZones which are handled the same as normally divs I guess.
| <table border='1' width='100%'> |
| <tr> |
| <td width='50%'> |
| left |
| </td> |
| <td width='50%'> |
| <table border='1' width='100%'> |
| <tr> |
| <td width='100%'> |
| right top |
| </td> |
| </tr> |
| <tr> |
| <td width='100%'> |
| right bottom |
| </td> |
| </tr> |
| </table> |
| </td> |
| </tr> |
| </table> |
I can manage it if I create the layout in design-time if I put a RadDockZone in each cell.
Hope anyone can help.