• nobody
  • NEWBIE
  • 0 Points
  • Member since 2008

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 1
    Replies
Hi,
 
I am trying to get dabatable with a column with checkboxes which should decide which row to pick from the data table; but I am always running in problems, because the checkboxes are created for each row, so i couldnt manage to get the value of  the checkbox which is selected:
 

<apex:dataTable value="{!ent}" var="contact" cellPadding="4" border="1" align="center">

<apex:column>

<apex:selectRadio value="{!which}">

<apex:facet name="header">Ent_ID</apex:facet>

<apex:selectOption itemValue="{!contact.name}">{!contact.name}</apex:selectOption>

</apex:selectRadio>

</apex:column>

 

Is there a way to create one checkbox in a column. If I put the the selectRadio tags out of the column tags nothing is displayed in the column.

 

Thanks in advance.

  • January 07, 2008
  • Like
  • 0
Hi,

I wanted to know if it is possible to recieve files from a web service and store them as attachments using apex. And if it is possible are there some tutorials about this stuff?

Thanks in advance??

  • January 05, 2008
  • Like
  • 0
Hi,
 
I am trying to insert a new entry in my database with the insert call. but I always get the 

DML currently not allowed

message.

I just fill the customer object fields and call insert like following:

Custom__c custom=new Custom__c();

custom.name='blabla';

custom.value='blabla';

insert custom;

Does anyone knows how to solve this problem. Thanks in advance.

 

bye

 

 

  • January 03, 2008
  • Like
  • 0
Hi,
 
I am trying to insert a new entry in my database with the insert call. but I always get the 

DML currently not allowed

message.

I just fill the customer object fields and call insert like following:

Custom__c custom=new Custom__c();

custom.name='blabla';

custom.value='blabla';

insert custom;

Does anyone knows how to solve this problem. Thanks in advance.

 

bye

 

 

  • January 03, 2008
  • Like
  • 0