Sharepoint 2010 : Nintex 2010 custom Inline function
Nintex - as new technology to me - is a nice, easy, and simple workflow engine, that is very useful and fast to learn. and as any other technology there is always a room for expandability. For me the case was I needed a piece of code to be run often and not only in custom forms, the best approach I have found is to use a custom inline function. Nintex has several built-in inline functions, and to add extra custom one , lets follow these steps: Develop a static class with static function to use as inline function, usually it will be a class in the Sharepoint project which after deploying it will be registered in the GAC, otherwise you will have to register it in the GAC ( it has been discussed in previous post ) . The resulted code will be something like this: namespace Project.TestNameSpace { public static class TestInlineF...