You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can change the default static string of AddNewRow in datagrid by using the [SfDataGrid.AddNewRowText]() property. The `AddNewRowText` property has higher priority than the text that is localized in resx file.
59
96
@@ -75,8 +112,11 @@ public partial class MainPage : ContentPage
dataGrid.AddNewRowText = "Click here to add new row in datagrid";
80
120
}
81
121
}
82
122
{% endhighlight %}
@@ -86,7 +126,7 @@ public partial class MainPage : ContentPage
86
126
87
127
## Initializing default values for AddNewRow
88
128
89
-
SfDataGrid allows you to set the default values for AddNewRow while initiating, through [AddNewRowInitiatingEventArgs.NewObject]() property in [SfDataGrid.AddNewRowInitiating]() event.
129
+
SfDataGrid allows you to set the default values for AddNewRow while initiating, through [AddNewRowInitiatingEventArgs.Object]() property in [SfDataGrid.AddNewRowInitiating]() event.
90
130
91
131
{% tabs %}
92
132
{% highlight xaml %}
@@ -220,7 +260,7 @@ To customize the AddNewRowText, add the default Syncfusion.SfDataGrid.WPF.resx f
220
260
221
261
## Customizing AddNewRow
222
262
223
-
### Implicit Styling of AddNewRow
263
+
### Apply implicit style
224
264
225
265
DataGridAddNewRow can be customized by writing style for [DataGridAddNewRowView]() TargetType.
226
266
@@ -243,7 +283,7 @@ DataGridAddNewRow can be customized by writing style for [DataGridAddNewRowView]
243
283
{% endhighlight %}
244
284
{% endtabs %}
245
285
246
-
### Default Styling of AddNewRow
286
+
### Apply default style
247
287
248
288
You can customize the AddNewRow's Background, TextColor, FontAttribute, FontFamily by using [SfDataGrid.DefaultStyle]().
0 commit comments