Saturday, January 17, 2015
Sunday, March 24, 2013
WebTemplate’s in SharePoint 2010
It is a New Feature Introduce in SharePoint 2010 can use as a Sandbox solution architecture
* Its allows deployment at site collection level
* Most of "Site Definitions" features are in the web template
* Web templates were based on existing site definition
* It Does not support Document Templates
* Only one Configuration
* It is best approach to control environment
WebTemplate Element
It specifies the default behavior the template
There are 3 required attributes
- BaseTemplateID
- BaseTemplateName
- BaseConfigurationID
- Name
Optional Attribute
- Titke
- AlternateCssUrl
- CustOmJS
Onet.xml
It contain NavBars and Configuration Elements but not ListTemplate, DocumentTemplate, Modules, ServerEmailFooter
like Site Definition
One Configuration
Some attributes of project are superseded by WebTemplate attribute
It use features instead of Module
Sunday, September 9, 2012
Sunday, October 9, 2011
Retrieving the SharePoint List
Saturday, October 8, 2011
How to add item to Sharepoint List
Friday, October 7, 2011
Wednesday, October 5, 2011
CRM2011 Data Filtering and retrieve
PaidAmount should not null, Bookingstatus should be 2, StatusCode should be 1 and event id must have to equal to provide one of the top
Tuesday, October 4, 2011
Monday, October 3, 2011
Wednesday, September 21, 2011
Resolve problem in Master Pages Image Path
Tuesday, September 6, 2011
Friday, August 26, 2011
Sunday, August 21, 2011
Retrieve data form SharePoint list and populate in asp.net DropdownList
private ListLoadDropDownList(SPList spList) { SPQuery quary = new SPQuery(); SPListItemCollection titleItems = spList.GetItems(quary); List howList = new List (); if (titleItems.Count>0) { foreach (SPListItem titleitem in titleItems) { howList.Add(titleitem["Title"].ToString()); } } else { howList.Add("No records to load"); } return howList; }
Then you can easyly assign that string type list to Dropdown “Data Source” as follows
howDropDownList.DataSource = LoadDropDownList(findOutlist); howDropDownList.DataBind();
Friday, August 19, 2011
Set and Get value from the CRM2011 optionset
Get Values from the CRM2011 Optionset
Xrm.Page.getAttribute().getValue();
OptionField will be your attribute name
Set values to the CRM2011 Optionset
Xrm.Page.getAttribute().setValue('1');
OptionField will be your attribute name