Hello,
We are using Infragistics4
Version=11.1.20111.2064
The below controls
UltraWebGrid WebCombo WebDateChooser UltraWebListbar WebCalendar UltraWebTab WebTextEdit WebNumericEdit WebDateTimeEdit UltraWebTree WebPanel WebNavBar UltraWebGridExcelExporter
We need to migrate them to Infragistics latest version of controls as the previous version is not support in new browsers. We are in need of equivalent events(Server Side and Client Side Events, Properties and the changes to be done) so that we will be able to migrate to latest version of Controls.
We are using the below mentioned features in the existing controls.
Kindly let us know the equivalent when converting the below webdatechooser to webdatepicker control
<igsch:WebDateChooser ID="Txt_doj" runat="server" CssClass="cal_txton" Width="96px"
Height=" " Text="18/06/2004" NullDateLabel=" " BorderStyle="Solid" Style="position: static"
meta:resourcekey="Txt_dojResource1">
<EditStyle CssClass="cal_lblon">
<Padding Bottom="2px"></Padding>
</EditStyle>
<CalendarLayout FooterFormat="Today: {0:d}" CellPadding="0">
<DayStyle CssClass="cal_altcell"></DayStyle>
<FooterStyle CssClass="cal_gdhder"></FooterStyle>
<SelectedDayStyle CssClass="cal_selcell"></SelectedDayStyle>
<OtherMonthDayStyle CssClass="cal_defcell"></OtherMonthDayStyle>
<NextPrevStyle CssClass="cal_next"></NextPrevStyle>
<CalendarStyle CssClass="cal_defcell">
</CalendarStyle>
<DropDownStyle CssClass="cal_txton">
</DropDownStyle>
<DayHeaderStyle CssClass="cal_gdhder"></DayHeaderStyle>
</CalendarLayout>
<DropDownStyle CssClass="cal_defcell">
<DropButton ImageUrl2="../images/calendar/dropbtn.gif" ImageUrl1="../images/calendar/dropbtn.gif">
</DropButton>
<ExpandEffects ShadowColor=""></ExpandEffects>
</igsch:WebDateChooser>
Kindly let us know how to implement the above using 13.2 version
Hello sphinx,
In your particular scenario I would suggest using a separate WebMonthCalendar, set as the calendar to be used by the WebDatePicker:
<ig:WebDatePicker ID="WebDatePicker1" NullText=" " runat="server" DropDownCalendarID="WebMonthCalendar1" Fields="2013-1-1-0-0-0-0"> </ig:WebDatePicker>
<ig:WebMonthCalendar ID="WebMonthCalendar1" FooterContent="Today: {0:d}" runat="server"> </ig:WebMonthCalendar>
This will allow using the calendar's CSS class properties in order to style it. The calendar's footer value may be set through theFooterContentproperty.
The date picker's DropDown button image css may be set through the Buttons-ButtonImgCss property. You may also be interested in setting a custom button for the date picker in this scenario:
http://help.infragistics.com/doc/ASPNET/2013.2/CLR4.0/?page=WebDatePicker_Using_Custom_Button_in_WebDatePicker.html
Hope this helps.
Please feel free to contact me if you have any additional questions regarding this matter.