Время создания
Filters

Hi, is this possible to have scroll bar appear for a Multi-Line Notes field where the multiple lines of content do not fit into the available display window.

Like 0

Like

0 comments
Show all comments

Hi ,

I have created new fields in section wizard,however when I tried to change the field code from Usr to my initials.It wouldn't allow me to do it .As,I  don't have system designer section or prefix for schema section where I can change it.I was wondering if there is any workaround to do it.Also,this is studio enterprise demo account.I would appreciate if some one can help me out on this asap.

Like 0

Like

1 comments

The prefix is stored in a system setting. Search in system settings for prefix. 

Show all comments

How to automatically create an OAuth 2 integrated application record during the installation process of the marketplace app which we are developing. 

After creating this entry, how do we read the generated client id and secret from this record in a business process? Help with code is appreciated. Thanks.

Like 0

Like

0 comments
Show all comments

Hi Support,

 

In Freedom UI

 

The lead process has changed. When you are adding new lead. The initial stage is already marketing qualified and you need to link the new lead to the existing Account and Contact record. Unlike before there is a qualify button and once qualified then only Account and Contact record will be created.

How can we revert to the old process but still using freedom UI?

 

Like 0

Like

0 comments
Show all comments

Hello Community,

 

I would like to switch tabs based on a user action using code in a handler. Is it possible to write code that opens a custom tab on the same page, as shown in the figure below?

 

On button click, I have implemented below code in the handler, but it is not working.

{
        request: "crt.OpenTab",
        handler: async (request) => {
            request.$context.set("SelectedTab", "CustomTab");
            request.$context.set("ActiveTab", "CustomTab");
            request.$context.profile.set("Tabs_SelectedTabIndex_Profile", 2);
        return true;
     }

}

 

Best regards,

Ajay Kuthe

 

 

Like 2

Like

3 comments
Best reply

The attribute you need to set is the [TabControlName]_SelectrdTabIndex_Profile. If you tab control is named "TabPanel_fb0xrup", then the attribute you would set would be:

// select first tab
request.$context.TabPanel_fb0xrup_SelectedTabIndex_Profile = 0;

Note, the indexes are zero based.

Ryan

The attribute you need to set is the [TabControlName]_SelectrdTabIndex_Profile. If you tab control is named "TabPanel_fb0xrup", then the attribute you would set would be:

// select first tab
request.$context.TabPanel_fb0xrup_SelectedTabIndex_Profile = 0;

Note, the indexes are zero based.

Ryan

Also, to clarify, there is no "set" method in Freedom UI pages like there was in classic pages. You will just set and read values from the attributes directly as normal variables.

Ryan Farley,

Yes, it works fine.

 

However, how can I get the index of a particular tab using the Element code in the context? #FreedomUI

 

Show all comments