Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
340
UltraWebGrid with WebDateChooser
posted

I have a grid with multiple webdatechooser columns like this in a grid

igtbl:UltraGridColumn HeaderText="CRelDateDcc" EditorControlID="WebDateChooser1" Type="Custom" Format="yyyy-MM-dd" DataType="System.DateTime" BaseColumnName="CRelDateDcc" AllowUpdate="Yes" Width="100px"> <CellStyle HorizontalAlign="Center"></CellStyle

I need to find a way to be able to stack or group these by three into the same cell.

Any ideas out there on how I might go about accomplishing this?

Parents
No Data
Reply
  • 28464
    posted

    Hello,

    The only way to stack the controls into a group of three is to use Templated Columns and customize the CellTemplate, e.g.

    <CellTemplate>

       <igsch:WebDateChoose ID="Chooser1" ... />

       <igsch:WebDateChoose ID="Chooser2" ... />

       <igsch:WebDateChoose ID="Chooser3" ... />

    </CellTemplate>

Children
No Data