-
ChatterFeed
-
0Best Answers
-
0Likes Received
-
0Likes Given
-
15Questions
-
11Replies
apex:dynamicComponent - Setting value to selectRadio
When i debug the sltRadio.value, it shows up correctly, however the value is not selected on page. Appreciate any help in this regard.
public String selectedValue {get;set;} Component.Apex.selectRadio sltRadio = new Component.Apex.selectRadio(); for(String option : lstString){ Component.Apex.selectOption so = new Component.Apex.selectOption(); so.itemValue = option; so.itemLabel = option; sltRadio.childComponents.add(so); } sltRadio.value = selectedValue; myTab.childComponents.add(sltRadio);
-
- Vivek Kidambi
- April 23, 2016
- Like
- 0
- Continue reading or reply
Bower Package Manager
-
- Vivek Kidambi
- April 07, 2016
- Like
- 0
- Continue reading or reply
Lazyload embedded pages
eg
<div class="u-container u-container--stretch" id="tabs">
<ul class="test-class" id="mainTab" >
<li><a class="test-class" style="font-family: Arial;" href="#tab1" data-tabs-id="tab1" >tab1</a></li>
<li><a class="test-class="font-family: Arial;" href="#tab2" data-tabs-id="tab2" >tab2</a></li>
</ul>
</div>
<div id="tab1" class="test-class">
<apex:include pageName="tab1page"/>
</div>
<div id="tab2" class="test-class>
<apex:include pageName="tab2page"/>
</div>
-
- Vivek Kidambi
- January 11, 2016
- Like
- 0
- Continue reading or reply
Lazy load embedded page on visualforce
eg
<div class="u-container u-container--stretch" id="tabs">
<ul class="test-class" id="mainTab" >
<li><a class="test-class" style="font-family: Arial;" href="#tab1" data-tabs-id="tab1" >tab1</a></li>
<li><a class="test-class="font-family: Arial;" href="#tab2" data-tabs-id="tab2" >tab2</a></li>
</ul>
</div>
<div id="tab1" class="test-class">
<apex:include pageName="tab1page"/>
</div>
<div id="tab2" class="test-class>
<apex:include pageName="tab2page"/>
</div>
-
- Vivek Kidambi
- January 11, 2016
- Like
- 0
- Continue reading or reply
custom app development
-
- Vivek Kidambi
- November 18, 2015
- Like
- 0
- Continue reading or reply
Visualforce display issue
Here is the code
<apex:column headerValue="Sample"> <apex:panelGrid columns="2"> <apex:inputSecret styleClass="pwd" style="width:90px; height:25px;" rendered="{!testcondition}"/> <apex:image url="{!URLFOR($Resource.Images, 'sample.png')}" title="Click here.." rendered="{testcondition1}"/> </apex:panelGrid> <apex:image url="{!URLFOR($Resource.Images, 'sample1.png')}" title="#2.." rendered="{testcondition2}"/> <apex:image url="{!URLFOR($Resource.Images, 'sample2.png')}" title="#3.." rendered="{testcondition3}"/> </apex:column>
-
- Vivek Kidambi
- July 18, 2015
- Like
- 0
- Continue reading or reply
Portal user creation using apex
-
- Vivek Kidambi
- April 14, 2015
- Like
- 0
- Continue reading or reply
Inputfield onchange not rendering component
<apex:outputPanel> <apex:inputField value="{!myvalue}" id="val1" > <apex:actionSupport event="onblur" action="{!validate}" reRender="test1"/> </apex:inputField> </apex:outputPanel> <apex:outputPanel id="test1" rendered="{!sample}"> <apex:outputText value="Please select a value"/> </apex:outputPanel> controller - if (myvalue == null){ sample = true; } else{ sample = false; }
-
- Vivek Kidambi
- April 04, 2015
- Like
- 0
- Continue reading or reply
bypass trigger
-
- Vivek Kidambi
- April 02, 2015
- Like
- 0
- Continue reading or reply
Chatter - New Contact is created on Account
-
- Vivek Kidambi
- March 26, 2015
- Like
- 0
- Continue reading or reply
covert Map<String,Object> to Map<String,String>
Appreciate any insights on this issue
List<SObject> listObjectRecords = database.query('select ' + cusFields + ' from '+ objName + ' WHERE ID = \'' + objId + '\'');
for(SObject sObj : listForMap) {
Map<String,Object> mapObj = (Map<String,Object>)Json.deserializeUntyped(Json.serialize(sObj));
}
-
- Vivek Kidambi
- February 24, 2015
- Like
- 0
- Continue reading or reply
How do i get record type of a record using the ID?
String objName = objId.getSObjectType().getDescribe().getName(); // Objid is the id of the record
-
- Vivek Kidambi
- February 13, 2015
- Like
- 0
- Continue reading or reply
CreatedBy.Name not returning the name but returns ID
select Customer_Number__c,Name,Quality_Rating__c,Primary_Institution_Type__c,CreatedBy.Name,CreatedDate,LastModifiedBy.Name,LastModifiedDate from Account WHERE ID =: myID
-
- Vivek Kidambi
- February 13, 2015
- Like
- 0
- Continue reading or reply
Master Details relationship
Class is in a Master Detail relation with student
Which is master object and which one is detail here?
-
- Vivek Kidambi
- October 23, 2013
- Like
- 0
- Continue reading or reply
Bower Package Manager
- Vivek Kidambi
- April 07, 2016
- Like
- 0
- Continue reading or reply
custom app development
- Vivek Kidambi
- November 18, 2015
- Like
- 0
- Continue reading or reply
Visualforce display issue
Here is the code
<apex:column headerValue="Sample"> <apex:panelGrid columns="2"> <apex:inputSecret styleClass="pwd" style="width:90px; height:25px;" rendered="{!testcondition}"/> <apex:image url="{!URLFOR($Resource.Images, 'sample.png')}" title="Click here.." rendered="{testcondition1}"/> </apex:panelGrid> <apex:image url="{!URLFOR($Resource.Images, 'sample1.png')}" title="#2.." rendered="{testcondition2}"/> <apex:image url="{!URLFOR($Resource.Images, 'sample2.png')}" title="#3.." rendered="{testcondition3}"/> </apex:column>
- Vivek Kidambi
- July 18, 2015
- Like
- 0
- Continue reading or reply
bypass trigger
- Vivek Kidambi
- April 02, 2015
- Like
- 0
- Continue reading or reply
covert Map<String,Object> to Map<String,String>
Appreciate any insights on this issue
List<SObject> listObjectRecords = database.query('select ' + cusFields + ' from '+ objName + ' WHERE ID = \'' + objId + '\'');
for(SObject sObj : listForMap) {
Map<String,Object> mapObj = (Map<String,Object>)Json.deserializeUntyped(Json.serialize(sObj));
}
- Vivek Kidambi
- February 24, 2015
- Like
- 0
- Continue reading or reply
How do i get record type of a record using the ID?
String objName = objId.getSObjectType().getDescribe().getName(); // Objid is the id of the record
- Vivek Kidambi
- February 13, 2015
- Like
- 0
- Continue reading or reply
Master Details relationship
Class is in a Master Detail relation with student
Which is master object and which one is detail here?
- Vivek Kidambi
- October 23, 2013
- Like
- 0
- Continue reading or reply
Trouble with Force.com IDE installation in Eclipse 4.2
Hi All,
I did start with this thread: http://boards.developerforce.com/t5/General-Development/Install-Eclipse-Juno-4-2-with-Force-com-IDE/m-p/462323/highlight/true#M72103
But I am still running into the same problem. Here's my setup:
Here's my setup
- Running Eclipse 4.2 as Admin (downloaded from here: http://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/junor) and installed to desktop.
- JAVA_HOME set to C:\Program Files\Java\jdk1.7.0_05 (upgraded from jdk1.6.0_23) downloaded from http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1637583.html
- Tried installing the Force.com IDE from the Eclipse Marketplace and got this error:
Cannot complete the install because one or more required items could not be found. Software being installed: Force.com IDE 25.0.0.201206181021 (com.salesforce.ide.feature.feature.group 25.0.0.201206181021) Missing requirement: Force.com IDE 25.0.0.201206181021 (com.salesforce.ide.feature.feature.group 25.0.0.201206181021) requires 'org.eclipse.update.ui 0.0.0' but it could not be found
Have I installed something incorrectly or overlooked something?
- Kelly K
- August 02, 2012
- Like
- 0
- Continue reading or reply