BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<ej:Grid ID="Grid1" runat="server" AllowPaging="True" Locale="en-US" AllowGrouping="true" > <EditSettings AllowAdding="true" AllowEditing="true" EditMode="InlineFormTemplate" InlineFormTemplateID="#template"/> . . . . . . . . </ej:Grid> <script type="text/javascript"> EditFormTitle: "Details ",
AddFormTitle: "Add ", }; |
We have considered this requirement “EditFormTitle: Need to provide support for changing the title with non primarykey field value in Locale” as a usability issue and a support incident has been created under your account to track the status of this issue. Please log on to our support website to check for further updates.
https://www.syncfusion.com/account/login?ReturnUrl=/support/directtrac/incidents
We can customize the field name of the title externally using below code example,
<ej:Grid ID="Grid1" runat="server" AllowPaging="True" AllowGrouping="true" > <ClientSideEvents ActionComplete="complete"></ClientSideEvents> <script type="text/javascript"> function complete(args) { if (args.requestType == "beginedit") //Setting title for the inline form $('#<%= Grid1.ClientID %>_inlineFormTitle').text("Showing details of " + this.getCurrentViewData()[args.rowIndex].str_company_name); |