Expand my Community achievements bar.

Srini_Dhulipall
Srini_Dhulipall
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • Did you make the field as ReadOnly or Protected? Also make sure where did you place your code? If it is in the Calculate event, the default is "Calculated - ReadOnly".Placing the code in Initialize event might help.ThanksSrini

    Type

    Questions

    Views

    501

    Likes

    0

    Replies

    0
  • Unlike Microsoft Word, when you place the Table in designer it will be a non-editable cell. You need to place the TextField object from the Object Library palette to actually enter text in a cell.You can just drag and drop it in the cell to activate it.ThanksSrini

    Type

    Discussions

    Views

    522

    Likes

    2

    Replies

    0
  • Write the code in the Calculate event of the Summary field in the row 4.Use FormCalc as the language.$.rawValue = Sum(Amount1.rawValue, Amount2.rawValue, Amount3.rawValue, Amount4.rawValue);Change the field names to actual names in your form.ThanksSrini

    Type

    Questions

    Views

    298

    Likes

    0

    Replies

    0
  • Try changing the binding to Global for the field.ThanksSrini

    Type

    Questions

    Views

    373

    Likes

    0

    Replies

    0
  • Try the following in the initialize event of the text field.Change the script language to FormCalc.TextField1.rawValue = Concat("UNIS",Num2Date(Date(),"MMDDYY"),Num2Time(Time(),"HHMM"));ThanksSrini

    Type

    Questions

    Views

    443

    Likes

    0

    Replies

    0
  • If you have 7 pages with different footers, wouldn't it be easier to have the footer also part of the body page instead of Master page.Unless you are adding dynamic content at runtime, you can keep the footer in the body page itself. That way you can avoid multiple master pages.If you still have iss...

    Type

    Questions

    Views

    321

    Likes

    0

    Replies

    0
  • In my case, I use the server components to render PDF files, so I can pass the environment value as part of the XML at the time of rendering.. I can read the value and change the webservice address at runtime (probably in the initialize event).ThanksSrini

    Type

    Questions

    Views

    440

    Likes

    0

    Replies

    0
  • Place the following code in the click event of the "DeleteActionRow" button.var nResponse = xfa.host.messageBox("You are about to delete this Action Item row. \n\nDo you want to continue?", "Deleting a row", 1, 2);if (nResponse == 4) { var oActionSubform = MeetingMinutes.LogoControls.resolveNode("Ac...

    Type

    Questions

    Views

    628

    Likes

    0

    Replies

    0
  • Here are the answers for your issues..1) in the click event of the DeleteActionItem button place the following code.    var nResponse = xfa.host.messageBox("You are about to delete this Action Item row. \n\nDo you want to continue?", "Deleting a row", 1, 2);if (nResponse == 4) { var oActionSubform =...

    Type

    Questions

    Views

    630

    Likes

    0

    Replies

    0
  • Few things to do to achieve what you wanted to do.1) For "ActionSubform", in the binding tab, uncheck the "Repeating subform for each data item"2) For "Table1", in the binding tab, uncheck the "Repeating subform for each data item"3) For "Row2", in the binding tab, check the "Repeating subform for e...

    Type

    Questions

    Views

    630

    Likes

    0

    Replies

    0
Top badges earned by Srini_Dhulipall
Customize the badges you want to showcase on your profile