7.9
service_enterprise



How is autocomplete implemented.  I am looking to have one field populated based on values in other fields.  Specifically:

If Field1 is populated and Field 2 is not, then check a Boolean checkbox.

Thanks in advance.

 

Like 0

Like

1 comments

Hello,

You can set up the field validation using development tools. Its purpose and procedure is described on our academy. Please check the article in our development guide following this link: https://academy.bpmonline.com/documents/technic-sdk/7-11/how-add-field-validation

Best regards,

Lily

Show all comments
lookup
update grid
7.11
service_enterprise

Hello!! I have a detail in contact with lookup insert but with single select not mutiselect.

In the addCallBack (after insert the data) how can make the reload of the grid to show the new insert?

addCallBack: function(args) {
                    var ContactId = this.get("MasterRecordId");
					var MyId;
                    // Collection passed to query.
                    this.selectedItems = [];
                    // Copying necessary data.
                    var lookupSelectedRows = args.selectedRows.getItems();
                    if (lookupSelectedRows && lookupSelectedRows.length > 0) {
                        // Receiving the Id of the record selected in the lookup.
                        Id = lookupSelectedRows[0].Id;
                        
                    }

                    var insert = Ext.create("Terrasoft.InsertQuery", {
                        rootSchemaName: this.entitySchemaName
                    });
                    insert.setParameterValue("MyRelationId", Id, this.Terrasoft.DataValueType.GUID);
                    insert.setParameterValue("Contact", ContactId, this.Terrasoft.DataValueType.GUID);
                    insert.execute();
                    ///Neeed update the grid to show the new value
                },

Regards,

 

Like 0

Like

1 comments

Hi,

 

The similar functionality was discussed in this post - https://community.bpmonline.com/questions/reloading-detail. Feel free to check it. 

Lisa

Show all comments