Tutorial by Topics: n

var options = SP.UI.$create_DialogOptions(); var modalDialog = SP.UI.ModalDialog.showModalDialog(options); options PropertyDescriptiontitleA string that contains the title of the dialogurlA string that contains the URL of the page that appears in the dialog. Either url or html must ...
You can refer to the official Xamarin Forms documentation to explore more: https://www.xamarin.com/forms
This section provides an overview of what scenekit is, and why a developer might want to use it. It should also mention any large subjects within scenekit, and link out to the related topics. Since the Documentation for scenekit is new, you may need to create initial versions of those related to...
Row Offset and Paging in Various Versions of SQL Server SELECT * FROM TableName ORDER BY id OFFSET 10 ROWS FETCH NEXT 10 ROWS ONLY;
This section provides an overview of what slim is, and why a developer might want to use it. It should also mention any large subjects within slim, and link out to the related topics. Since the Documentation for slim is new, you may need to create initial versions of those related topics. Ve...
Sitecore automation gives marketer a possobility to create marketing workflows which will put user through different states on the website. The example of automation usage could be registration workflow (registered, confirmed, logged in) or purchase workflow (new order, added products, payment de...
@Override public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args)
This section provides an overview of what bigdata is, and why a developer might want to use it. Big data is the data characterized by the 4 V's. These are Volume, Velocity, Variety and Veracity. Volume - When the amount of data is in huge volume like Terabytes or Petabytes. As a report says, w...
pass Why would you ever want to tell the interpreter to explicitly do nothing? Python has the syntactical requirement that code blocks (after if, except, def, class etc.) cannot be empty. But sometimes an empty code block is useful in itself. An empty class block can definine a new, diffe...
control.FindControl("Id Of The Control To Be Found") FindControl is not recursive, it only searches through immediate children of the control There is an overload FindControl(String, int) which is not indented for public usage If nothing is found, FindControl returns null, so ...
When Rust programs reach a state where a critical error has occurred, the panic! macro can be called to exit quickly (often compared, but subtly different, to an exception in other languages). Proper error handling should involve Result types, though this section will only discuss panic! and its con...
ArrayNew(dimension, isSynchronized) NameDescriptionDimensionNumber of dimensions in new array: 1, 2, or 3isSynchronizedWhen false, creates an unsynchronized array, When true, the function returns a synchronized array. In a synchronized array, more than two threads cannot access the array ...
SQL provides several built-in scalar functions. Each scalar function takes one value as input and returns one value as output for each row in a result set. You use scalar functions wherever an expression is allowed within a T-SQL statement. CAST ( expression AS data_type [ ( length ) ] ) CON...

Page 209 of 329