
Search In
In SharePoint, each project has its own tasks, assignments, team members etc. While creating projects in SharePoint we have to also create tasks, assignments, team members and custom fields.
Here below is the sample code for creating assignments in
JavaScript Assignment Operators
The Assignment Operator is used to assign the value of the right operand to the left operand. The key rule for this operator is that it always assign value from right to left.
The Assignment operator (=) works as (x=
Hello guys
Here, I assign custom created roles to user from custom portlet in liferay 6.2.
I create three regular roles i.e vendor, client and standard user from liferay portal.
Now, I assign the role to particular user from liferay portlet using
Below are the state of any bug by which bug goes through during test life cycle.
1.NEW : Tester Found new bug in the application.
2.Assigned : Tester assign Bug to the developer.
3.Open : Developer is fixing the bug .
4.Fixed : Developer has fixed t
I want to assign image to a sprite renderer
but its not single image , its one from the cut images using sprite editor
Joomla assign positions to module i.e., position tells where you want to place th module in the page. You can assign the position by following steps:
Login to backend of your website(Joomla administrator).
Go to Extensions --> Module Manager (Yo
To assign a article to a menu you need to follow the following steps:
Login to back-end of Joomla site.
Click Menus->[name of your menu] -> Add new menu item. For ex: Menus -> Main Menu -> Add new menu item.
You will see a form to add n
Python program to swap two variables in single line in python
Python program to swap two variables in single line
a = 5
b = 10
a, b = a, b
print "Swapped values of a and b are", a, b
Output
Swapped values of a and b are 10 5
Explanation:
Py