Skip to content

Replies

0
Nadia Robakova
Nadia Robakova answered on Jul 22, 2019 10:56 AM

Hi Amit,

If you want to set selected tan on ngOnInit you can use the selectedIndex input of the tab component.

Here is a sample with this.

0
Nadia Robakova
Nadia Robakova answered on Jun 18, 2019 9:37 AM

Hi,

The igniteui-angular has many changes as we supports the latest angular.

If this issue is not reproducible in the latest igniteui-angular version it is recommended to use it.

Here is the link for the latest release:

https://www.npmjs.com/package/igniteui-angular

0
Nadia Robakova
Nadia Robakova answered on Jun 17, 2019 8:11 AM

Hi,

I am not able to reproduce the issue.

I am sending you a small sample with date picker. Can you please modify it to your scenario?

0
Nadia Robakova
Nadia Robakova answered on Jun 12, 2019 1:26 PM

Hi,

ig-date-picker does not have option maxDate. You can set disabled dates instead.

You can look for this calendar sample about the disabled dates:

https://www.infragistics.com//angularsite/components/calendar.html#disabled-dates

Here are more samples for the ig-date-picker:

https://www.infragistics.com//angularsite/components/date_picker.html

Here is the documentation for the ig-date-picker:

https://www.infragistics.com/products/ignite-ui-angular/docs/typescript/latest/classes/igxdatepickercomponent.html

0
Nadia Robakova
Nadia Robakova answered on Jun 3, 2019 6:43 AM

Hi,

Can you send us a small sample whit the behavior that you want?

When you want to change the cell value? When you open a cell in edit mode or when the grid is loaded?

There should not be difference when using UnboundField or BoundField.

0
Nadia Robakova
Nadia Robakova answered on May 31, 2019 6:59 AM

Hi,

Thank you for contacting Infragistics!

You can change the cell value in the InitializeRow event. For example:

protected void WebDataGrid1_InitializeRow(object sender, Infragistics.Web.UI.GridControls.RowEventArgs e)
    {
        e.Row.Items[1].Text = "Updated Text " + e.Row.Index;
    }

You can look at this forum post:

https://www.infragistics.com/community/forums/f/ultimate-ui-for-asp-net/42999/how-to-change-the-value-of-a-column-in-the-initializerow-event-of-the-webdatagrid

0
Nadia Robakova
Nadia Robakova answered on Apr 3, 2019 6:25 AM

Hi,

The difference between Infragistics45 and Infragistics4 is that the Infragistics45 is built with .Net Framework 4.5 and the Infragistics4 is built with the .Net framework 4.0

They have same functionality, just use different .Net framework.

If you project uses .Net framework4.5 or higher it is better to use Infragistics45.