Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How to set read-only textbox and add folder browser button at the CMS Login dialog.

New Here ,
Jan 03, 2021 Jan 03, 2021

Hello.

I used below codes to set CMS login dialog and this codes are refered from 'fdkreference.pdf'. but the 'Local Folder' text box was not read-only and the folder browser button did not show up.

Is there anyone who knows how to set read-only textbox and add button?

Thanks.

 

VoidT F_ApiInitialize(IntT initialization)
{
F_StringsT *userFields = (F_StringsT*)F_Alloc(sizeof(F_StringsT), NO_DSE);
userFields->len = 2;
userFields->val = (StringT *)F_Alloc(sizeof(StringT) *userFields->len, NO_DSE);
userFields->val[0] =F_ApiCopyString((ConStringT)"WorkSpace:");

userFields->val[1] =F_ApiCopyString((ConStringT)"Local Folder:");
F_ObjHandleT cmsId = F_ApiCMSRegister((ConStringT)"Custom CMS");
F_ApiCMSConfigLoginUI(cmsId,userFields, False);
F_Free(userFields);
}

Jinho5DC5_0-1609665386227.pngexpand image

 

TOPICS
CMS
205
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Jan 21, 2021 Jan 21, 2021
LATEST

Hi Jinho5DC5,

You can use 'F_ApiCMSConfigLoginUIEx' fdk api for your requirements.

Regards,

Ujjwal

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines