Use our Google Custom Search for best site search results.
Search
-
I have a form with 2 sections, containing hidden signatures of approvers. When manager1 approves, it should show signature1 - same for manager2 respectively.
Of course either signature should only be visible when the whole form has been approved.
How can I achieve this with formatting rules?
-
quick addition:
I had to put:
[my:Duty != 1 or my:Duty =null]
to cover cases where this strange xsi:nil="true" exists (so node is not empty or 0 but non existent)
-
thanks Hilary, you are a star!
it works, just had to change 'true' to '1'. so simple!
-
Sure. I'm lucky to found an old Win7 machine with IP2010 (VSTA integrated) installed... it is such a hassle with new 2013 and VisualStudio...
currently I have this code, which deletes everything on button click:
[quote]
XPathNavigator domNav = MainDataSource.CreateNavigator();
XPathNodeIterator tableRows = ...
-
I have a simple requirement, but cannot figure out the code:
having a repeating table with several columns and a 'verified' checkbox.
on button click, delete all rows of a repeating table where the checkbox is not checked, so leaving only the rows with checked boxes.
-
I think I found a solution now:
this.Template.Uri;
this.Uri;
but to assign a string you need to use Path.GetFolderName() function.
-
I tried something new, so the user can set a field with desired location.
folderNode = MainDataSource.CreateNavigator().SelectSingleNode("/my:myFields/my:FolderLocation", NamespaceManager);
But is there a way to populate it automatically? Based on which drive/folder the form was launched from.
-
Hi,
I want to export a current view to PDF, and save it to the location where the user currently opens the form from:
this.CurrentView.Export(@"\" + fileName, ExportFormat.Pdf);
unfortunately it does not work, any ideas?
-
I have created a form where users should print all available views except one, which should only be printed individually on a button click (this.print())
unfortunately, having enabled the print multiple-views by default function, it always prints all views upon button click (except the view I wanted)
how to achieve this?
-
Hilary, you're a genius!!
Amazingly simple how you used the .=current()/ function
Thanks a lot